diff --git a/.gitignore b/.gitignore index 27a1834..5269d6a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ tmp imap-sync LOG_imapsync +db.db diff --git a/go.mod b/go.mod index 3b95dc3..fa97a1c 100644 --- a/go.mod +++ b/go.mod @@ -3,12 +3,17 @@ module imap-sync go 1.21.0 require ( + github.com/appleboy/gin-jwt/v2 v2.9.1 github.com/emersion/go-imap v1.2.1 github.com/gin-gonic/gin v1.9.1 github.com/lithammer/fuzzysearch v1.1.8 + github.com/mattn/go-sqlite3 v1.14.17 github.com/sirupsen/logrus v1.9.3 + golang.org/x/crypto v0.13.0 ) +require github.com/go-session/session v3.1.2+incompatible // indirect + require ( github.com/bytedance/sonic v1.10.1 // indirect github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect @@ -19,7 +24,9 @@ require ( github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/go-playground/validator/v10 v10.15.4 // indirect + github.com/go-session/gin-session v3.1.0+incompatible github.com/goccy/go-json v0.10.2 // indirect + github.com/golang-jwt/jwt/v4 v4.4.3 // indirect github.com/google/go-cmp v0.5.9 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/klauspost/cpuid/v2 v2.2.5 // indirect @@ -33,11 +40,9 @@ require ( github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/ugorji/go/codec v1.2.11 // indirect golang.org/x/arch v0.5.0 // indirect - golang.org/x/crypto v0.13.0 // indirect golang.org/x/net v0.15.0 // indirect golang.org/x/sys v0.12.0 // indirect golang.org/x/text v0.13.0 // indirect google.golang.org/protobuf v1.31.0 // indirect - gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index ef96be6..86045da 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,7 @@ +github.com/appleboy/gin-jwt/v2 v2.9.1 h1:l29et8iLW6omcHltsOP6LLk4s3v4g2FbFs0koxGWVZs= +github.com/appleboy/gin-jwt/v2 v2.9.1/go.mod h1:jwcPZJ92uoC9nOUTOKWoN/f6JZOgMSKlFSHw5/FrRUk= +github.com/appleboy/gofight/v2 v2.1.2 h1:VOy3jow4vIK8BRQJoC/I9muxyYlJ2yb9ht2hZoS3rf4= +github.com/appleboy/gofight/v2 v2.1.2/go.mod h1:frW+U1QZEdDgixycTj4CygQ48yLTUhplt43+Wczp3rw= github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM= github.com/bytedance/sonic v1.10.0-rc/go.mod h1:ElCzW+ufi8qKqNW0FY314xriJhyJhuoJ3gFZdAHF7NM= github.com/bytedance/sonic v1.10.1 h1:7a1wuFXL1cMy7a3f7/VFcEtriuXQnUBhtoVfOZiaysc= @@ -22,18 +26,32 @@ github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk= github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg= github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU= +github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs= github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA= github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.10.0/go.mod h1:74x4gJWsvQexRdW8Pn3dXSGrTK4nAUsbPlLADvpJkos= +github.com/go-playground/validator/v10 v10.11.1/go.mod h1:i+3WkQ1FvaUjjxh1kSvIA4dMGDBiPU55YFDl0WbKdWU= github.com/go-playground/validator/v10 v10.15.4 h1:zMXza4EpOdooxPel5xDqXEdXG5r+WggpvnAKMsalBjs= github.com/go-playground/validator/v10 v10.15.4/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU= +github.com/go-session/gin-session v3.1.0+incompatible h1:br60vVJFG1egLkX+BJ8f/xKRVi/TVexS2CldgdGI3iY= +github.com/go-session/gin-session v3.1.0+incompatible/go.mod h1:NoNTh6/n3uOT4xtIOQJzzj2PiOaP7VHZF4mITDNhwwg= +github.com/go-session/session v3.1.2+incompatible h1:yStchEObKg4nk2F7JGE7KoFIrA/1Y078peagMWcrncg= +github.com/go-session/session v3.1.2+incompatible/go.mod h1:8B3iivBQjrz/JtC68Np2T1yBBLxTan3mn/3OM0CyRt0= +github.com/goccy/go-json v0.9.7/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/goccy/go-json v0.10.0/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/golang-jwt/jwt/v4 v4.4.3 h1:Hxl6lhQFj4AnOX6MLrsCb/+7tCj7DxP7VA+2rDIq5AU= +github.com/golang-jwt/jwt/v4 v4.4.3/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= @@ -45,29 +63,40 @@ github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa02 github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY= github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4= github.com/lithammer/fuzzysearch v1.1.8 h1:/HIuJnjHuXS8bKaiTMeeDlW2/AyIWk2brx1V8LFgLN4= github.com/lithammer/fuzzysearch v1.1.8/go.mod h1:IdqeyBClc3FFqSzYq/MXESsS4S0FsZ5ajtkr5xPLts4= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-sqlite3 v1.14.17 h1:mCRHCLDUBXgpKAqIKsaAaAsrAlbkeomtRFKXh2L6YIM= +github.com/mattn/go-sqlite3 v1.14.17/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo= +github.com/pelletier/go-toml/v2 v2.0.6/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= @@ -77,6 +106,7 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= @@ -84,8 +114,16 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/tidwall/gjson v1.14.3 h1:9jvXn7olKEHU1S9vwoMGliaT8jq1vJ7IH/n9zD9Dnlw= +github.com/tidwall/gjson v1.14.3/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= +github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= +github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= +github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs= +github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= +github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M= +github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= github.com/ugorji/go/codec v1.2.11/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= @@ -93,14 +131,20 @@ golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUu golang.org/x/arch v0.5.0 h1:jpGode6huXQxcskEIpOCvrU+tzo81b6+oFLUYXWtH/Y= golang.org/x/arch v0.5.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.3.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= @@ -109,20 +153,28 @@ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= @@ -134,12 +186,18 @@ golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50= diff --git a/internal/admin.go b/internal/admin.go index ee88fab..9081f34 100644 --- a/internal/admin.go +++ b/internal/admin.go @@ -1,7 +1,20 @@ package internal -import "github.com/gin-gonic/gin" +import ( + "net/http" + + "github.com/gin-gonic/gin" + ginsession "github.com/go-session/gin-session" +) func handleAdmin(ctx *gin.Context) { + store := ginsession.FromContext(ctx) + _, ok := store.Get("user") + if !ok { + // User is not logged in, redirect them to the login page + ctx.Redirect(http.StatusTemporaryRedirect, "/login") + return + } + ctx.HTML(200, "admin.html", nil) } diff --git a/internal/auth.go b/internal/auth.go new file mode 100644 index 0000000..57b5b3a --- /dev/null +++ b/internal/auth.go @@ -0,0 +1,52 @@ +package internal + +import ( + "net/http" + + "github.com/gin-gonic/gin" + ginsession "github.com/go-session/gin-session" + "golang.org/x/crypto/bcrypt" +) + +type user struct { + Name string `json:"username"` + Password string `json:"password"` +} + +func handleLogin(ctx *gin.Context) { + store := ginsession.FromContext(ctx) + _, ok := store.Get("user") + if ok { + // User is not logged in, redirect them to the login page + ctx.Redirect(http.StatusTemporaryRedirect, "/") + return + } + ctx.HTML(200, "login.html", nil) +} + +func login(ctx *gin.Context) { + var data user + data.Name = ctx.PostForm("username") + data.Password = ctx.PostForm("password") + + pass, err := getPassword(data.Name) + if err != nil { + ctx.IndentedJSON(http.StatusUnauthorized, gin.H{"message": "user not found"}) + return + } + + err = bcrypt.CompareHashAndPassword([]byte(pass), []byte(data.Password)) + if err != nil { + ctx.IndentedJSON(http.StatusUnauthorized, gin.H{"message": "wrong password"}) + return + } + store := ginsession.FromContext(ctx) + + store.Set("user", data.Name) + if err := store.Save(); err != nil { + ctx.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to save session"}) + return + } + ctx.Redirect(http.StatusMovedPermanently, "/admin") + +} diff --git a/internal/db.go b/internal/db.go new file mode 100644 index 0000000..3573ede --- /dev/null +++ b/internal/db.go @@ -0,0 +1,102 @@ +package internal + +import ( + "database/sql" + "errors" + "fmt" + "reflect" + + _ "github.com/mattn/go-sqlite3" + "golang.org/x/crypto/bcrypt" +) + +var db *sql.DB + +func InitDb() error { + var err error + db, err = sql.Open("sqlite3", "./db.db") + if err != nil { + return err + } + defer db.Close() + + initStmt := ` + CREATE TABLE IF NOT EXISTS Users ( + id INTEGER PRIMARY KEY, + username VARCHAR(64) NULL, + password VARCHAR(64) NULL + ); + ` + _, err = db.Exec(initStmt) + if err != nil { + return err + } + + var exists bool + err = db.QueryRow("SELECT exists (SELECT 1 FROM users WHERE username = ?)", admin_name).Scan(&exists) + if err != nil { + return err + } + + password, err := bcrypt.GenerateFromPassword([]byte(*admin_pass), 14) + if err != nil { + return err + } + + if !exists { + _, err = db.Exec("INSERT INTO users(username, password) VALUES(?, ?)", admin_name, password) + if err != nil { + return err + } + } else { + dbPass, err := getPassword(*admin_name) + if err != nil { + return err + } + if !reflect.DeepEqual(password, []byte(dbPass)) { + changePassword(*admin_name, string(password)) + } + } + + return nil +} + +func changePassword(username string, newPassword string) error { + var err error + db, err = sql.Open("sqlite3", "./db.db") + if err != nil { + return err + } + defer db.Close() + + stmt, err := db.Prepare("UPDATE users SET password = ? WHERE username = ?") + if err != nil { + return err + } + defer stmt.Close() + + _, err = stmt.Exec(newPassword, username) + if err != nil { + return err + } + + return nil +} + +func getPassword(username string) (string, error) { + var err error + db, err = sql.Open("sqlite3", "./db.db") + if err != nil { + return "", err + } + defer db.Close() + var password string + err = db.QueryRow("SELECT password FROM users WHERE username = ?", username).Scan(&password) + if err != nil { + if errors.Is(err, sql.ErrNoRows) { + return "", fmt.Errorf("no user found with username %s", username) + } + return "", err + } + return password, nil +} diff --git a/internal/flags.go b/internal/flags.go index fc79c1e..97951b5 100644 --- a/internal/flags.go +++ b/internal/flags.go @@ -4,6 +4,8 @@ import "flag" var ( port = flag.String("port", "8080", "Port to listen on") + admin_name = flag.String("admin_name", "admin", "Admin username") + admin_pass = flag.String("admin_pass", "admin", "Admin password") source_server = flag.String("source_server", "", "Source server") source_account = flag.String("source_account", "", "Source account") source_password = flag.String("source_password", "", "Source password") diff --git a/internal/router.go b/internal/router.go index 34e8e77..1aee7f2 100644 --- a/internal/router.go +++ b/internal/router.go @@ -2,21 +2,32 @@ package internal import ( "github.com/gin-gonic/gin" + ginsession "github.com/go-session/gin-session" ) func InitServer() { SetupLogger(log) + err := InitDb() + if err != nil { + log.Error(err) + } + gin.SetMode(gin.ReleaseMode) router := gin.Default() + router.Use(ginsession.New()) + router.LoadHTMLGlob("templates/*") + router.Static("/static", "./static/") + router.GET("/", handleRoot) router.GET("/admin", handleAdmin) router.GET("/favicon.ico", func(ctx *gin.Context) { ctx.File("favicon.ico") }) + router.GET("/login", handleLogin) go initQueue() // API endpoints @@ -25,6 +36,7 @@ func InitServer() { router.GET("/api/pagination", handlePagination) router.POST("/api/validate", handleValidate) router.POST("/api/search", handleSearch) + router.POST("/auth/login", login) log.Info("Server starting on http://localhost:" + *port) diff --git a/static/css/styles.css b/static/css/styles.css new file mode 100644 index 0000000..4c6a89f --- /dev/null +++ b/static/css/styles.css @@ -0,0 +1 @@ +/*! tailwindcss v3.3.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;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;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}:root,[data-theme]{background-color:rgb(var(--backgroundPrimary)/var(--tw-bg-opacity,1));color:rgb(var(--content1)/var(--tw-text-opacity,1))}:root{--backgroundPrimary:252 252 252;--backgroundSecondary:248 248 248;--border:226 226 226;--content1:28 28 28;--content2:88 87 87;--content3:150 150 150;--whiteInverted:0 0 0;--blackInverted:255 255 255;--neutral:105 113 119;--primary:0 114 245;--secondary:151 80 221;--success:23 201 100;--error:243 18 96;--warning:255 184 0;--blue-1:251 253 255;--blue-2:245 250 255;--blue-3:237 246 255;--blue-4:225 240 255;--blue-5:206 231 254;--blue-6:183 217 248;--blue-7:150 199 242;--blue-8:94 176 239;--blue-9:0 145 255;--blue-10:0 129 241;--blue-11:0 106 220;--blue-12:0 37 77;--purple-1:254 252 254;--purple-2:253 250 255;--purple-3:249 241 254;--purple-4:243 231 252;--purple-5:237 219 249;--purple-6:227 204 244;--purple-7:211 180 237;--purple-8:190 147 228;--purple-9:142 78 198;--purple-10:132 69 188;--purple-11:121 58 175;--purple-12:43 14 68;--green-1:251 254 252;--green-2:242 252 245;--green-3:233 249 238;--green-4:221 243 228;--green-5:204 235 215;--green-6:180 223 196;--green-7:146 206 172;--green-8:91 185 140;--green-9:48 164 108;--green-10:41 151 100;--green-11:24 121 78;--green-12:21 50 38;--yellow-1:253 253 249;--yellow-2:255 252 232;--yellow-3:255 251 209;--yellow-4:255 248 187;--yellow-5:254 242 164;--yellow-6:249 230 140;--yellow-7:239 211 108;--yellow-8:235 188 0;--yellow-9:245 217 10;--yellow-10:247 206 0;--yellow-11:148 104 0;--yellow-12:53 41 15;--red-1:255 252 252;--red-2:255 248 248;--red-3:255 239 239;--red-4:255 229 229;--red-5:253 216 216;--red-6:249 198 198;--red-7:243 174 175;--red-8:235 144 145;--red-9:229 72 77;--red-10:220 61 67;--red-11:205 43 49;--red-12:56 19 22;--cyan-1:250 253 254;--cyan-2:242 252 253;--cyan-3:231 249 251;--cyan-4:216 243 246;--cyan-5:196 234 239;--cyan-6:170 222 230;--cyan-7:132 205 218;--cyan-8:61 185 207;--cyan-9:5 162 194;--cyan-10:8 148 179;--cyan-11:12 119 146;--cyan-12:4 49 60;--pink-1:255 252 254;--pink-2:255 247 252;--pink-3:254 238 248;--pink-4:252 229 243;--pink-5:249 216 236;--pink-6:243 198 226;--pink-7:236 173 212;--pink-8:227 142 195;--pink-9:214 64 159;--pink-10:210 49 151;--pink-11:205 29 141;--pink-12:59 10 42;--gray-1:252 252 252;--gray-2:248 248 248;--gray-3:243 243 243;--gray-4:237 237 237;--gray-5:232 232 232;--gray-6:226 226 226;--gray-7:219 219 219;--gray-8:199 199 199;--gray-9:143 143 143;--gray-10:133 133 133;--gray-11:111 111 111;--gray-12:23 23 23;--slate-1:251 252 253;--slate-2:248 249 250;--slate-3:241 243 245;--slate-4:236 238 240;--slate-5:230 232 235;--slate-6:223 227 230;--slate-7:215 219 223;--slate-8:193 200 205;--slate-9:136 144 150;--slate-10:126 134 140;--slate-11:104 112 118;--slate-12:17 24 28;color-scheme:light}@media (prefers-color-scheme:dark){:root,[data-theme=dark]{--backgroundPrimary:22 22 22;--backgroundSecondary:28 28 28;--border:52 52 52;--content1:232 232 232;--content2:186 186 186;--content3:118 118 118;--whiteInverted:255 255 255;--blackInverted:0 0 0;--neutral:105 113 119;--primary:0 114 245;--secondary:151 80 221;--success:23 201 100;--error:243 18 96;--warning:255 184 0;--blue-1:15 23 32;--blue-2:15 27 45;--blue-3:16 36 62;--blue-4:16 42 76;--blue-5:15 48 88;--blue-6:13 56 104;--blue-7:10 68 129;--blue-8:9 84 165;--blue-9:0 145 255;--blue-10:54 158 255;--blue-11:82 169 255;--blue-12:234 246 255;--green-1:13 25 18;--green-2:12 31 23;--green-3:15 41 30;--green-4:17 49 35;--green-5:19 57 41;--green-6:22 68 48;--green-7:27 84 58;--green-8:35 110 74;--green-9:48 164 108;--green-10:60 177 121;--green-11:76 195 138;--green-12:229 251 235;--purple-1:27 20 29;--purple-2:34 21 39;--purple-3:48 26 58;--purple-4:58 30 72;--purple-5:67 33 85;--purple-6:78 38 103;--purple-7:95 45 132;--purple-8:121 56 178;--purple-9:142 78 198;--purple-10:157 91 210;--purple-11:191 122 240;--purple-12:247 236 252;--yellow-1:28 21 0;--yellow-2:34 26 0;--yellow-3:44 33 0;--yellow-4:53 40 0;--yellow-5:62 48 0;--yellow-6:73 60 0;--yellow-7:89 74 5;--yellow-8:112 94 0;--yellow-9:245 217 10;--yellow-10:255 239 92;--yellow-11:240 192 0;--yellow-12:255 250 209;--red-1:31 19 21;--red-2:41 20 21;--red-3:60 24 26;--red-4:72 26 29;--red-5:84 27 31;--red-6:103 30 34;--red-7:130 32 37;--red-8:170 36 41;--red-9:229 72 77;--red-10:242 85 90;--red-11:255 99 105;--red-12:254 236 238;--cyan-1:7 25 29;--cyan-2:6 30 36;--cyan-3:7 40 48;--cyan-4:7 48 59;--cyan-5:7 56 68;--cyan-6:6 65 80;--cyan-7:4 80 99;--cyan-8:0 100 125;--cyan-9:5 162 194;--cyan-10:0 177 204;--cyan-11:0 194 215;--cyan-12:225 248 250;--pink-1:31 18 27;--pink-2:39 20 33;--pink-3:58 24 47;--pink-4:69 26 55;--pink-5:80 27 63;--pink-6:96 29 72;--pink-7:122 29 90;--pink-8:167 24 115;--pink-9:214 64 159;--pink-10:227 75 169;--pink-11:246 92 182;--pink-12:254 235 247;--gray-1:22 22 22;--gray-2:28 28 28;--gray-3:35 35 35;--gray-4:40 40 40;--gray-5:46 46 46;--gray-6:52 52 52;--gray-7:62 62 62;--gray-8:80 80 80;--gray-9:112 112 112;--gray-10:126 126 126;--gray-11:160 160 160;--gray-12:237 237 237;--slate-1:21 23 24;--slate-2:26 29 30;--slate-3:32 36 37;--slate-4:38 41 43;--slate-5:43 47 49;--slate-6:49 53 56;--slate-7:58 63 66;--slate-8:76 81 85;--slate-9:105 113 119;--slate-10:120 127 133;--slate-11:155 161 166;--slate-12:236 237 238;color-scheme:dark}}[data-theme=light]{--backgroundPrimary:252 252 252;--backgroundSecondary:248 248 248;--border:226 226 226;--content1:28 28 28;--content2:88 87 87;--content3:150 150 150;--whiteInverted:0 0 0;--blackInverted:255 255 255;--neutral:105 113 119;--primary:0 114 245;--secondary:151 80 221;--success:23 201 100;--error:243 18 96;--warning:255 184 0;--blue-1:251 253 255;--blue-2:245 250 255;--blue-3:237 246 255;--blue-4:225 240 255;--blue-5:206 231 254;--blue-6:183 217 248;--blue-7:150 199 242;--blue-8:94 176 239;--blue-9:0 145 255;--blue-10:0 129 241;--blue-11:0 106 220;--blue-12:0 37 77;--purple-1:254 252 254;--purple-2:253 250 255;--purple-3:249 241 254;--purple-4:243 231 252;--purple-5:237 219 249;--purple-6:227 204 244;--purple-7:211 180 237;--purple-8:190 147 228;--purple-9:142 78 198;--purple-10:132 69 188;--purple-11:121 58 175;--purple-12:43 14 68;--green-1:251 254 252;--green-2:242 252 245;--green-3:233 249 238;--green-4:221 243 228;--green-5:204 235 215;--green-6:180 223 196;--green-7:146 206 172;--green-8:91 185 140;--green-9:48 164 108;--green-10:41 151 100;--green-11:24 121 78;--green-12:21 50 38;--yellow-1:253 253 249;--yellow-2:255 252 232;--yellow-3:255 251 209;--yellow-4:255 248 187;--yellow-5:254 242 164;--yellow-6:249 230 140;--yellow-7:239 211 108;--yellow-8:235 188 0;--yellow-9:245 217 10;--yellow-10:247 206 0;--yellow-11:148 104 0;--yellow-12:53 41 15;--red-1:255 252 252;--red-2:255 248 248;--red-3:255 239 239;--red-4:255 229 229;--red-5:253 216 216;--red-6:249 198 198;--red-7:243 174 175;--red-8:235 144 145;--red-9:229 72 77;--red-10:220 61 67;--red-11:205 43 49;--red-12:56 19 22;--cyan-1:250 253 254;--cyan-2:242 252 253;--cyan-3:231 249 251;--cyan-4:216 243 246;--cyan-5:196 234 239;--cyan-6:170 222 230;--cyan-7:132 205 218;--cyan-8:61 185 207;--cyan-9:5 162 194;--cyan-10:8 148 179;--cyan-11:12 119 146;--cyan-12:4 49 60;--pink-1:255 252 254;--pink-2:255 247 252;--pink-3:254 238 248;--pink-4:252 229 243;--pink-5:249 216 236;--pink-6:243 198 226;--pink-7:236 173 212;--pink-8:227 142 195;--pink-9:214 64 159;--pink-10:210 49 151;--pink-11:205 29 141;--pink-12:59 10 42;--gray-1:252 252 252;--gray-2:248 248 248;--gray-3:243 243 243;--gray-4:237 237 237;--gray-5:232 232 232;--gray-6:226 226 226;--gray-7:219 219 219;--gray-8:199 199 199;--gray-9:143 143 143;--gray-10:133 133 133;--gray-11:111 111 111;--gray-12:23 23 23;--slate-1:251 252 253;--slate-2:248 249 250;--slate-3:241 243 245;--slate-4:236 238 240;--slate-5:230 232 235;--slate-6:223 227 230;--slate-7:215 219 223;--slate-8:193 200 205;--slate-9:136 144 150;--slate-10:126 134 140;--slate-11:104 112 118;--slate-12:17 24 28;color-scheme:light}[data-theme=dark]{--backgroundPrimary:22 22 22;--backgroundSecondary:28 28 28;--border:52 52 52;--content1:232 232 232;--content2:186 186 186;--content3:118 118 118;--whiteInverted:255 255 255;--blackInverted:0 0 0;--neutral:105 113 119;--primary:0 114 245;--secondary:151 80 221;--success:23 201 100;--error:243 18 96;--warning:255 184 0;--blue-1:15 23 32;--blue-2:15 27 45;--blue-3:16 36 62;--blue-4:16 42 76;--blue-5:15 48 88;--blue-6:13 56 104;--blue-7:10 68 129;--blue-8:9 84 165;--blue-9:0 145 255;--blue-10:54 158 255;--blue-11:82 169 255;--blue-12:234 246 255;--green-1:13 25 18;--green-2:12 31 23;--green-3:15 41 30;--green-4:17 49 35;--green-5:19 57 41;--green-6:22 68 48;--green-7:27 84 58;--green-8:35 110 74;--green-9:48 164 108;--green-10:60 177 121;--green-11:76 195 138;--green-12:229 251 235;--purple-1:27 20 29;--purple-2:34 21 39;--purple-3:48 26 58;--purple-4:58 30 72;--purple-5:67 33 85;--purple-6:78 38 103;--purple-7:95 45 132;--purple-8:121 56 178;--purple-9:142 78 198;--purple-10:157 91 210;--purple-11:191 122 240;--purple-12:247 236 252;--yellow-1:28 21 0;--yellow-2:34 26 0;--yellow-3:44 33 0;--yellow-4:53 40 0;--yellow-5:62 48 0;--yellow-6:73 60 0;--yellow-7:89 74 5;--yellow-8:112 94 0;--yellow-9:245 217 10;--yellow-10:255 239 92;--yellow-11:240 192 0;--yellow-12:255 250 209;--red-1:31 19 21;--red-2:41 20 21;--red-3:60 24 26;--red-4:72 26 29;--red-5:84 27 31;--red-6:103 30 34;--red-7:130 32 37;--red-8:170 36 41;--red-9:229 72 77;--red-10:242 85 90;--red-11:255 99 105;--red-12:254 236 238;--cyan-1:7 25 29;--cyan-2:6 30 36;--cyan-3:7 40 48;--cyan-4:7 48 59;--cyan-5:7 56 68;--cyan-6:6 65 80;--cyan-7:4 80 99;--cyan-8:0 100 125;--cyan-9:5 162 194;--cyan-10:0 177 204;--cyan-11:0 194 215;--cyan-12:225 248 250;--pink-1:31 18 27;--pink-2:39 20 33;--pink-3:58 24 47;--pink-4:69 26 55;--pink-5:80 27 63;--pink-6:96 29 72;--pink-7:122 29 90;--pink-8:167 24 115;--pink-9:214 64 159;--pink-10:227 75 169;--pink-11:246 92 182;--pink-12:254 235 247;--gray-1:22 22 22;--gray-2:28 28 28;--gray-3:35 35 35;--gray-4:40 40 40;--gray-5:46 46 46;--gray-6:52 52 52;--gray-7:62 62 62;--gray-8:80 80 80;--gray-9:112 112 112;--gray-10:126 126 126;--gray-11:160 160 160;--gray-12:237 237 237;--slate-1:21 23 24;--slate-2:26 29 30;--slate-3:32 36 37;--slate-4:38 41 43;--slate-5:43 47 49;--slate-6:49 53 56;--slate-7:58 63 66;--slate-8:76 81 85;--slate-9:105 113 119;--slate-10:120 127 133;--slate-11:155 161 166;--slate-12:236 237 238;color-scheme:dark}html{-webkit-tap-highlight-color:transparent}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.btn{--tw-bg-opacity:1;--tw-text-opacity:1;align-items:center;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-radius:.75rem;color:rgb(var(--content1)/var(--tw-text-opacity));cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:500;height:2.5rem;justify-content:center;line-height:1.25rem;padding-left:1.25rem;padding-right:1.25rem;text-align:center;transition-duration:.15s;transition-property:color,transform,background-color,border-color;transition-timing-function:ease-in;-webkit-user-select:none;-moz-user-select:none;user-select:none;will-change:transform}.btn:focus{outline-width:2px}.btn:focus-visible{outline-color:rgb(var(--gray-6));outline-offset:2px;outline-style:solid}.btn:active{--tw-scale-x:0.97;--tw-scale-y:0.97;transform:translate(var(--tw-translate-x),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))}.btn:where(.btn-primary,.btn-secondary,.btn-success,.btn-error,.btn-warning){--tw-text-opacity:1;border-style:none;color:rgb(255 255 255/var(--tw-text-opacity))}.btn-primary{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.btn-primary:focus-visible{outline-color:rgb(var(--primary))}.btn-secondary{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.btn-secondary:focus-visible{outline-color:rgb(var(--secondary))}.btn-success{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.btn-success:focus-visible{outline-color:rgb(var(--success))}.btn-error{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.btn-error:focus-visible{outline-color:rgb(var(--error))}.btn-warning{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.btn-warning:focus-visible{outline-color:rgb(var(--warning))}.btn-outline{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-width:2px;color:rgb(var(--whiteInverted)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-outline:hover{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:rgb(var(--gray-4)/var(--tw-border-opacity))}.btn-outline:focus-visible{outline-color:rgb(var(--gray-7))}.btn-outline-primary{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent;border-color:rgb(var(--primary)/var(--tw-border-opacity));border-width:2px;color:rgb(var(--primary)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-outline-primary:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.btn-outline-primary:focus-visible{outline-color:rgb(var(--primary))}.btn-outline-secondary{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent;border-color:rgb(var(--secondary)/var(--tw-border-opacity));border-width:2px;color:rgb(var(--secondary)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-outline-secondary:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.btn-outline-secondary:focus-visible{outline-color:rgb(var(--secondary))}.btn-outline-success{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent;border-color:rgb(var(--success)/var(--tw-border-opacity));border-width:2px;color:rgb(var(--success)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-outline-success:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.btn-outline-success:focus-visible{outline-color:rgb(var(--success))}.btn-outline-error{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent;border-color:rgb(var(--error)/var(--tw-border-opacity));border-width:2px;color:rgb(var(--error)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-outline-error:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.btn-outline-error:focus-visible{outline-color:rgb(var(--error))}.btn-outline-warning{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent;border-color:rgb(var(--warning)/var(--tw-border-opacity));border-width:2px;color:rgb(var(--warning)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-outline-warning:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.btn-outline-warning:focus-visible{outline-color:rgb(var(--warning))}.btn-xs{border-radius:7px;font-size:.75rem;height:1.5rem;line-height:1rem;min-height:1.5rem;padding-left:.5rem;padding-right:.5rem}.btn-sm{border-radius:.5rem;height:2rem;min-height:2rem;padding-left:.75rem;padding-right:.75rem}.btn-md,.btn-sm{font-size:.875rem;line-height:1.25rem}.btn-md{height:2.5rem;min-height:2.5rem;padding-left:1.25rem;padding-right:1.25rem}.btn-lg{font-size:1.125rem;height:3rem;line-height:1.75rem;min-height:3rem;padding-left:1.5rem;padding-right:1.5rem}.btn-xl{border-radius:1rem;font-size:1.25rem;height:4rem;line-height:1.75rem;min-height:4rem;padding-left:2rem;padding-right:2rem}.btn:disabled{opacity:.5;pointer-events:none}.btn-block{width:100%}.btn-circle{height:2.5rem;padding:0;width:2.5rem}.btn-circle,.btn-rounded{border-radius:9999px}.btn-loading{cursor:not-allowed;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.btn-loading:before{box-sizing:border-box;height:1rem;margin-right:.5rem;width:1rem}@keyframes spin{to{content:var(--tw-content);transform:rotate(1turn)}}.btn-loading:before{--tw-border-opacity:1;--tw-content:"";animation:spin 1s linear infinite;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:50%;border-top-color:rgb(var(--gray-9)/var(--tw-border-opacity));border-width:2px;content:var(--tw-content)}.btn-no-animation:active{transform:none}.btn-ghost{--tw-text-opacity:1;background-color:transparent;border-style:none;color:rgb(var(--whiteInverted)/var(--tw-text-opacity));transition-duration:.15s;transition-property:transform,color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn-ghost:hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity))}.btn-active{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.btn-solid-primary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--blue-4)/var(--tw-bg-opacity));color:rgb(var(--blue-11)/var(--tw-text-opacity))}.btn-solid-primary:hover{--tw-bg-opacity:1;background-color:rgb(var(--blue-5)/var(--tw-bg-opacity))}.btn-solid-primary:focus-visible{outline-color:rgb(var(--blue-6))}.btn-solid-primary:active{--tw-bg-opacity:1;background-color:rgb(var(--blue-6)/var(--tw-bg-opacity))}.btn-solid-secondary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--purple-4)/var(--tw-bg-opacity));color:rgb(var(--purple-11)/var(--tw-text-opacity))}.btn-solid-secondary:hover{--tw-bg-opacity:1;background-color:rgb(var(--purple-5)/var(--tw-bg-opacity))}.btn-solid-secondary:focus-visible{outline-color:rgb(var(--purple-6))}.btn-solid-secondary:active{--tw-bg-opacity:1;background-color:rgb(var(--purple-6)/var(--tw-bg-opacity))}.btn-solid-success{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--green-4)/var(--tw-bg-opacity));color:rgb(var(--green-11)/var(--tw-text-opacity))}.btn-solid-success:hover{--tw-bg-opacity:1;background-color:rgb(var(--green-5)/var(--tw-bg-opacity))}.btn-solid-success:focus-visible{outline-color:rgb(var(--green-6))}.btn-solid-success:active{--tw-bg-opacity:1;background-color:rgb(var(--green-6)/var(--tw-bg-opacity))}.btn-solid-error{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--red-4)/var(--tw-bg-opacity));color:rgb(var(--red-11)/var(--tw-text-opacity))}.btn-solid-error:hover{--tw-bg-opacity:1;background-color:rgb(var(--red-5)/var(--tw-bg-opacity))}.btn-solid-error:focus-visible{outline-color:rgb(var(--red-6))}.btn-solid-error:active{--tw-bg-opacity:1;background-color:rgb(var(--red-6)/var(--tw-bg-opacity))}.btn-solid-warning{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity));color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.btn-solid-warning:hover{--tw-bg-opacity:1;background-color:rgb(var(--yellow-5)/var(--tw-bg-opacity))}.btn-solid-warning:focus-visible{outline-color:rgb(var(--yellow-6))}.btn-solid-warning:active{--tw-bg-opacity:1;background-color:rgb(var(--yellow-6)/var(--tw-bg-opacity))}.input{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:.75rem;border-width:2px;color:rgb(var(--content1)/var(--tw-text-opacity));font-size:1rem;height:2.5rem;line-height:1.5rem;max-width:20rem;outline:2px solid transparent;outline-offset:2px;padding-left:.75rem;padding-right:.75rem;width:100%}.input-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.input-secondary{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.input-success{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.input-warning{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.input-error{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.input-ghost-primary{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.input-ghost-primary:focus,.input-ghost-primary:hover{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.input-ghost-secondary{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.input-ghost-secondary:focus,.input-ghost-secondary:hover{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.input-ghost-success{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.input-ghost-success:focus,.input-ghost-success:hover{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.input-ghost-warning{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.input-ghost-warning:focus,.input-ghost-warning:hover{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.input-ghost-error{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.input-ghost-error:focus,.input-ghost-error:hover{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.input-xs{border-radius:.5rem;font-size:.75rem;height:1.5rem;line-height:1rem}.input-sm{font-size:.875rem;height:2rem;line-height:1.25rem}.input-md{height:2.5rem}.input-lg,.input-md{font-size:1rem;line-height:1.5rem}.input-lg{height:2.75rem}.input-xl{font-size:1.125rem;height:3rem;line-height:1.75rem}.input::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.input::placeholder{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.input-rounded{border-radius:9999px;padding-left:1rem;padding-right:1rem}.input:disabled{opacity:.5;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.input-block{max-width:100%}.input-solid{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--gray-12)/var(--tw-text-opacity))}.input-solid::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--gray-10)/var(--tw-text-opacity))}.input-solid::placeholder{--tw-text-opacity:1;color:rgb(var(--gray-10)/var(--tw-text-opacity))}.input-solid-primary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--blue-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--blue-11)/var(--tw-text-opacity))}.input-solid-primary::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--blue-9)/var(--tw-text-opacity))}.input-solid-primary::placeholder{--tw-text-opacity:1;color:rgb(var(--blue-9)/var(--tw-text-opacity))}.input-solid-secondary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--purple-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--purple-11)/var(--tw-text-opacity))}.input-solid-secondary::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--purple-9)/var(--tw-text-opacity))}.input-solid-secondary::placeholder{--tw-text-opacity:1;color:rgb(var(--purple-9)/var(--tw-text-opacity))}.input-solid-success{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--green-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--green-11)/var(--tw-text-opacity))}.input-solid-success::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--green-9)/var(--tw-text-opacity))}.input-solid-success::placeholder{--tw-text-opacity:1;color:rgb(var(--green-9)/var(--tw-text-opacity))}.input-solid-warning{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.input-solid-warning::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.input-solid-warning::placeholder{--tw-text-opacity:1;color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.input-solid-error{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--red-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--red-11)/var(--tw-text-opacity))}.input-solid-error::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--red-9)/var(--tw-text-opacity))}.input-solid-error::placeholder{--tw-text-opacity:1;color:rgb(var(--red-9)/var(--tw-text-opacity))}.textarea{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:.75rem;border-width:2px;color:rgb(var(--content1)/var(--tw-text-opacity));font-size:1rem;height:-moz-fit-content;height:fit-content;line-height:1.5rem;max-width:20rem;outline:2px solid transparent;outline-offset:2px;padding:.625rem .75rem;width:100%}.textarea-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.textarea-secondary{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.textarea-success{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.textarea-warning{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.textarea-error{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.textarea-ghost-primary{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.textarea-ghost-primary:focus,.textarea-ghost-primary:hover{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.textarea-ghost-secondary{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.textarea-ghost-secondary:focus,.textarea-ghost-secondary:hover{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.textarea-ghost-success{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.textarea-ghost-success:focus,.textarea-ghost-success:hover{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.textarea-ghost-warning{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.textarea-ghost-warning:focus,.textarea-ghost-warning:hover{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.textarea-ghost-error{background-color:transparent;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.textarea-ghost-error:focus,.textarea-ghost-error:hover{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.textarea::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.textarea::placeholder{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.textarea:disabled{opacity:.5;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.textarea-block{max-width:100%}.textarea-solid{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--gray-12)/var(--tw-text-opacity))}.textarea-solid::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--gray-10)/var(--tw-text-opacity))}.textarea-solid::placeholder{--tw-text-opacity:1;color:rgb(var(--gray-10)/var(--tw-text-opacity))}.textarea-solid-primary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--blue-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--blue-11)/var(--tw-text-opacity))}.textarea-solid-primary::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--blue-9)/var(--tw-text-opacity))}.textarea-solid-primary::placeholder{--tw-text-opacity:1;color:rgb(var(--blue-9)/var(--tw-text-opacity))}.textarea-solid-secondary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--purple-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--purple-11)/var(--tw-text-opacity))}.textarea-solid-secondary::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--purple-9)/var(--tw-text-opacity))}.textarea-solid-secondary::placeholder{--tw-text-opacity:1;color:rgb(var(--purple-9)/var(--tw-text-opacity))}.textarea-solid-success{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--green-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--green-11)/var(--tw-text-opacity))}.textarea-solid-success::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--green-9)/var(--tw-text-opacity))}.textarea-solid-success::placeholder{--tw-text-opacity:1;color:rgb(var(--green-9)/var(--tw-text-opacity))}.textarea-solid-warning{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.textarea-solid-warning::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.textarea-solid-warning::placeholder{--tw-text-opacity:1;color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.textarea-solid-error{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--red-4)/var(--tw-bg-opacity));border-color:transparent;color:rgb(var(--red-11)/var(--tw-text-opacity))}.textarea-solid-error::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--red-9)/var(--tw-text-opacity))}.textarea-solid-error::placeholder{--tw-text-opacity:1;color:rgb(var(--red-9)/var(--tw-text-opacity))}.select{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;-webkit-appearance:none;-moz-appearance:none;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg class='select-icon' xmlns='http://www.w3.org/2000/svg' width='24' height='24' style='fill:%237e868c'%3E%3Cpath d='M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:.75rem;border-width:2px;color:rgb(var(--content1)/var(--tw-text-opacity));font-size:1rem;height:2.5rem;line-height:1.5rem;max-width:20rem;outline:2px solid transparent;outline-offset:2px;padding-left:.75rem;padding-right:.75rem;width:100%}.select-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.select-secondary{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.select-success{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.select-error{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.select-warning{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.select-ghost-primary{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.select-ghost-primary:focus,.select-ghost-primary:hover{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.select-ghost-secondary{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.select-ghost-secondary:focus,.select-ghost-secondary:hover{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.select-ghost-success{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.select-ghost-success:focus,.select-ghost-success:hover{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.select-ghost-warning{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.select-ghost-warning:focus,.select-ghost-warning:hover{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.select-ghost-error{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.select-ghost-error:focus,.select-ghost-error:hover{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.select-xs{border-radius:.5rem;font-size:.75rem;height:1.5rem;line-height:1rem}.select-sm{font-size:.875rem;height:2rem;line-height:1.25rem}.select-md{height:2.5rem}.select-lg,.select-md{font-size:1rem;line-height:1.5rem}.select-lg{height:2.75rem}.select-xl{font-size:1.125rem;height:3rem;line-height:1.75rem}.select::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.select::placeholder{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.select-rounded{border-radius:9999px;padding-left:1rem;padding-right:1rem}.select:disabled{opacity:.5;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.select-block{max-width:100%}.select-solid{background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));color:rgb(var(--gray-12)/var(--tw-text-opacity))}.select-solid,.select-solid-primary{--tw-bg-opacity:1;--tw-text-opacity:1;border-color:transparent}.select-solid-primary{background-color:rgb(var(--blue-4)/var(--tw-bg-opacity));color:rgb(var(--blue-11)/var(--tw-text-opacity))}.select-solid-secondary{background-color:rgb(var(--purple-4)/var(--tw-bg-opacity));color:rgb(var(--purple-11)/var(--tw-text-opacity))}.select-solid-secondary,.select-solid-success{--tw-bg-opacity:1;--tw-text-opacity:1;border-color:transparent}.select-solid-success{background-color:rgb(var(--green-4)/var(--tw-bg-opacity));color:rgb(var(--green-11)/var(--tw-text-opacity))}.select-solid-warning{background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity));color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.select-solid-error,.select-solid-warning{--tw-bg-opacity:1;--tw-text-opacity:1;border-color:transparent}.select-solid-error{background-color:rgb(var(--red-4)/var(--tw-bg-opacity));color:rgb(var(--red-11)/var(--tw-text-opacity))}.checkbox{--checkbox-bg:rgb(var(--gray-1));--checkbox-border:rgb(var(--gray-6));--checkbox-bg-checked:rgb(var(--primary));--checkbox-border-checked:rgb(var(--primary));--checkbox-border-hover:rgb(var(--gray-7));--checkbox-bg-hover:rgb(var(--gray-3));--checkline-color:#fff;accent-color:rgb(var(--backgroundPrimary));-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--checkbox-bg);border-color:var(--checkbox-border);border-radius:.375rem;border-width:1px;cursor:pointer;display:inline-block;height:1.25rem;margin:0;outline:2px solid transparent;outline-offset:2px;position:relative;transition:background .3s,border-color .3s,box-shadow .2s;vertical-align:top;width:1.25rem}.checkbox:focus{outline-width:2px}.checkbox:focus-visible{outline-color:rgb(var(--primary));outline-offset:2px;outline-style:solid}.checkbox:after{--tw-content:"";content:var(--tw-content);display:block;left:0;position:absolute;top:0;transition:transform var(--d-t,.3s) var(--d-t-e,ease),opacity var(--d-o,.2s)}.checkbox:checked{--d-o:0.3s;--d-t:0.6s;--d-t-e:cubic-bezier(0.2,0.85,0.32,1.2);--o:1;--r:43deg;background-color:var(--checkbox-bg-checked);border-color:var(--checkbox-border-checked)}.checkbox:disabled{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(var(--gray-7)/var(--tw-bg-opacity));border-color:rgb(var(--gray-7)/var(--tw-border-opacity));cursor:not-allowed;opacity:.5}.checkbox:disabled+label{cursor:not-allowed}.checkbox:hover:not(:checked):not(:disabled){background-color:var(--checkbox-bg-hover);border-color:var(--checkbox-border-hover)}.checkbox:after{border-color:var(--checkline-color);border-width:0 2px 2px 0;height:9px;left:7px;opacity:var(--o,0);top:4px;transform:rotate(var(--r,20deg));width:5px}.checkbox-primary{--checkbox-bg-checked:rgb(var(--primary));--checkbox-border-checked:rgb(var(--primary))}.checkbox-primary:focus-visible{outline-color:rgb(var(--primary))}.checkbox-secondary{--checkbox-bg-checked:rgb(var(--secondary));--checkbox-border-checked:rgb(var(--secondary))}.checkbox-secondary:focus-visible{outline-color:rgb(var(--secondary))}.checkbox-success{--checkbox-bg-checked:rgb(var(--success));--checkbox-border-checked:rgb(var(--success))}.checkbox-success:focus-visible{outline-color:rgb(var(--success))}.checkbox-error{--checkbox-bg-checked:rgb(var(--error));--checkbox-border-checked:rgb(var(--error))}.checkbox-error:focus-visible{outline-color:rgb(var(--error))}.checkbox-warning{--checkbox-bg-checked:rgb(var(--warning));--checkbox-border-checked:rgb(var(--warning))}.checkbox-warning:focus-visible{outline-color:rgb(var(--warning))}.checkbox-bordered-primary{--checkbox-bg-checked:rgb(var(--primary));--checkbox-border-checked:rgb(var(--primary));--checkbox-border:rgb(var(--primary));--checkbox-border-hover:rgb(var(--primary))}.checkbox-bordered-primary:focus-visible{outline-color:rgb(var(--primary))}.checkbox-bordered-secondary{--checkbox-bg-checked:rgb(var(--secondary));--checkbox-border-checked:rgb(var(--secondary));--checkbox-border:rgb(var(--secondary));--checkbox-border-hover:rgb(var(--secondary))}.checkbox-bordered-secondary:focus-visible{outline-color:rgb(var(--secondary))}.checkbox-bordered-success{--checkbox-bg-checked:rgb(var(--success));--checkbox-border-checked:rgb(var(--success));--checkbox-border:rgb(var(--success));--checkbox-border-hover:rgb(var(--success))}.checkbox-bordered-success:focus-visible{outline-color:rgb(var(--success))}.checkbox-bordered-error{--checkbox-bg-checked:rgb(var(--error));--checkbox-border-checked:rgb(var(--error));--checkbox-border:rgb(var(--error));--checkbox-border-hover:rgb(var(--error))}.checkbox-bordered-error:focus-visible{outline-color:rgb(var(--error))}.checkbox-bordered-warning{--checkbox-bg-checked:rgb(var(--warning));--checkbox-border-checked:rgb(var(--warning));--checkbox-border:rgb(var(--warning));--checkbox-border-hover:rgb(var(--warning))}.checkbox-bordered-warning:focus-visible{outline-color:rgb(var(--warning))}.checkbox-ghost-primary{--checkbox-bg-checked:rgb(var(--primary));--checkbox-border-checked:rgb(var(--primary));--checkbox-border-hover:rgb(var(--primary))}.checkbox-ghost-primary:focus-visible{outline-color:rgb(var(--primary))}.checkbox-ghost-secondary{--checkbox-bg-checked:rgb(var(--secondary));--checkbox-border-checked:rgb(var(--secondary));--checkbox-border-hover:rgb(var(--secondary))}.checkbox-ghost-secondary:focus-visible{outline-color:rgb(var(--secondary))}.checkbox-ghost-success{--checkbox-bg-checked:rgb(var(--success));--checkbox-border-checked:rgb(var(--success));--checkbox-border-hover:rgb(var(--success))}.checkbox-ghost-success:focus-visible{outline-color:rgb(var(--success))}.checkbox-ghost-error{--checkbox-bg-checked:rgb(var(--error));--checkbox-border-checked:rgb(var(--error));--checkbox-border-hover:rgb(var(--error))}.checkbox-ghost-error:focus-visible{outline-color:rgb(var(--error))}.checkbox-ghost-warning{--checkbox-bg-checked:rgb(var(--warning));--checkbox-border-checked:rgb(var(--warning));--checkbox-border-hover:rgb(var(--warning))}.checkbox-ghost-warning:focus-visible{outline-color:rgb(var(--warning))}.checkbox-xs{height:.75rem;width:.75rem}.checkbox.checkbox-xs:after{height:8px;left:2.5px;top:.5px;width:5px}.checkbox-sm{height:1rem;width:1rem}.checkbox.checkbox-sm:after{height:8px;left:5px;top:2px;width:5px}.checkbox-md{height:1.25rem;width:1.25rem}.checkbox.checkbox-md:after{height:9px;left:7px;top:4px;width:5px}.checkbox-lg{height:1.5rem;width:1.5rem}.checkbox.checkbox-lg:after{height:12px;left:9px;top:4px;width:6px}.checkbox-xl{height:1.75rem;width:1.75rem}.checkbox.checkbox-xl:after{height:14px;left:10px;top:5px;width:6px}.checkbox-solid{--tw-bg-opacity:1}.checkbox-solid,.checkbox-solid-primary{--checkbox-border-hover:transparent;--checkbox-bg-hover:rgb(var(--gray-5));background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent}.checkbox-solid-primary{--checkbox-bg-checked:rgb(var(--primary));--checkbox-border-checked:rgb(var(--primary));--tw-bg-opacity:1}.checkbox-solid-secondary{--checkbox-border-hover:transparent;--checkbox-bg-hover:rgb(var(--gray-5));--checkbox-bg-checked:rgb(var(--secondary));--checkbox-border-checked:rgb(var(--secondary));--tw-bg-opacity:1}.checkbox-solid-secondary,.checkbox-solid-success{background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent}.checkbox-solid-success{--checkbox-border-hover:transparent;--checkbox-bg-hover:rgb(var(--gray-5));--checkbox-bg-checked:rgb(var(--success));--checkbox-border-checked:rgb(var(--success));--tw-bg-opacity:1}.checkbox-solid-warning{--checkbox-border-hover:transparent;--checkbox-bg-hover:rgb(var(--gray-5));--checkbox-bg-checked:rgb(var(--warning));--checkbox-border-checked:rgb(var(--warning));--tw-bg-opacity:1}.checkbox-solid-error,.checkbox-solid-warning{background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent}.checkbox-solid-error{--checkbox-border-hover:transparent;--checkbox-bg-hover:rgb(var(--gray-5));--checkbox-bg-checked:rgb(var(--error));--checkbox-border-checked:rgb(var(--error));--tw-bg-opacity:1}.radio{--radio-bg:rgb(var(--gray-1));--radio-border:rgb(var(--gray-6));--radio-bg-checked:rgb(var(--primary));--radio-border-checked:rgb(var(--primary));--radio-border-hover:rgb(var(--gray-7));--radio-bg-hover:rgb(var(--gray-3));--checkline-color:#fff;accent-color:rgb(var(--backgroundPrimary));align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--radio-bg);border-color:var(--radio-border);border-radius:9999px;border-width:1px;cursor:pointer;display:flex;height:1.25rem;justify-content:center;margin:0;position:relative;transition:background .3s,border-color .3s,box-shadow .2s;vertical-align:top;width:1.25rem}.radio:focus{outline-width:2px}.radio:focus-visible{outline-color:rgb(var(--primary));outline-offset:2px;outline-style:solid}.radio:checked{--d-o:0.3s;--d-t:0.6s;--d-t-e:cubic-bezier(0.2,0.85,0.32,1.2);--r:43deg;background-color:var(--radio-bg-checked);border-color:var(--radio-border-checked)}.radio:disabled{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(var(--gray-7)/var(--tw-bg-opacity));border-color:rgb(var(--gray-7)/var(--tw-border-opacity));cursor:not-allowed;opacity:.5}.radio:disabled+label{cursor:not-allowed}.radio:hover:not(:checked):not(:disabled){background-color:var(--radio-bg-hover);border-color:var(--radio-border-hover)}.radio:not(.switch):after{opacity:var(--o,0)}.radio:checked{--o:1;--s:0.5}.radio:after{--tw-content:"";background-color:var(--checkline-color);border-radius:9999px;content:var(--tw-content);display:flex;height:100%;opacity:0;position:relative;transform:scale(var(--s,.7));transition-duration:.15s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);width:1.25rem}.radio-primary{--radio-bg-checked:rgb(var(--primary));--radio-border-checked:rgb(var(--primary))}.radio-primary:focus-visible{outline-color:rgb(var(--primary))}.radio-secondary{--radio-bg-checked:rgb(var(--secondary));--radio-border-checked:rgb(var(--secondary))}.radio-secondary:focus-visible{outline-color:rgb(var(--secondary))}.radio-success{--radio-bg-checked:rgb(var(--success));--radio-border-checked:rgb(var(--success))}.radio-success:focus-visible{outline-color:rgb(var(--success))}.radio-error{--radio-bg-checked:rgb(var(--error));--radio-border-checked:rgb(var(--error))}.radio-error:focus-visible{outline-color:rgb(var(--error))}.radio-warning{--radio-bg-checked:rgb(var(--warning));--radio-border-checked:rgb(var(--warning))}.radio-warning:focus-visible{outline-color:rgb(var(--warning))}.radio-bordered-primary{--radio-border:rgb(var(--primary));--radio-bg-checked:rgb(var(--primary));--radio-border-checked:rgb(var(--primary));--radio-border-hover:rgb(var(--primary))}.radio-bordered-primary:focus-visible{outline-color:rgb(var(--primary))}.radio-bordered-secondary{--radio-border:rgb(var(--secondary));--radio-bg-checked:rgb(var(--secondary));--radio-border-checked:rgb(var(--secondary));--radio-border-hover:rgb(var(--secondary))}.radio-bordered-secondary:focus-visible{outline-color:rgb(var(--secondary))}.radio-bordered-success{--radio-border:rgb(var(--success));--radio-bg-checked:rgb(var(--success));--radio-border-checked:rgb(var(--success));--radio-border-hover:rgb(var(--success))}.radio-bordered-success:focus-visible{outline-color:rgb(var(--success))}.radio-bordered-error{--radio-border:rgb(var(--error));--radio-bg-checked:rgb(var(--error));--radio-border-checked:rgb(var(--error));--radio-border-hover:rgb(var(--error))}.radio-bordered-error:focus-visible{outline-color:rgb(var(--error))}.radio-bordered-warning{--radio-border:rgb(var(--warning));--radio-bg-checked:rgb(var(--warning));--radio-border-checked:rgb(var(--warning));--radio-border-hover:rgb(var(--warning))}.radio-bordered-warning:focus-visible{outline-color:rgb(var(--warning))}.radio-ghost-primary{--radio-bg-checked:rgb(var(--primary));--radio-border-checked:rgb(var(--primary));--radio-border-hover:rgb(var(--primary))}.radio-ghost-primary:focus-visible{outline-color:rgb(var(--primary))}.radio-ghost-secondary{--radio-bg-checked:rgb(var(--secondary));--radio-border-checked:rgb(var(--secondary));--radio-border-hover:rgb(var(--secondary))}.radio-ghost-secondary:focus-visible{outline-color:rgb(var(--secondary))}.radio-ghost-success{--radio-bg-checked:rgb(var(--success));--radio-border-checked:rgb(var(--success));--radio-border-hover:rgb(var(--success))}.radio-ghost-success:focus-visible{outline-color:rgb(var(--success))}.radio-ghost-error{--radio-bg-checked:rgb(var(--error));--radio-border-checked:rgb(var(--error));--radio-border-hover:rgb(var(--error))}.radio-ghost-error:focus-visible{outline-color:rgb(var(--error))}.radio-ghost-warning{--radio-bg-checked:rgb(var(--warning));--radio-border-checked:rgb(var(--warning));--radio-border-hover:rgb(var(--warning))}.radio-ghost-warning:focus-visible{outline-color:rgb(var(--warning))}.radio-xs{height:.75rem;width:.75rem}.radio.radio-xs:after{height:10px;width:10px}.radio-sm{height:1rem;width:1rem}.radio.radio-sm:after{height:14px;width:14px}.radio-md{height:1.25rem}.radio-md,.radio.radio-md:after{width:1.25rem}.radio-lg{height:1.5rem;width:1.5rem}.radio.radio-lg:after{height:22px;width:22px}.radio-xl{height:1.75rem;width:1.75rem}.radio.radio-xl:after{height:26px;width:26px}.radio-solid{--tw-bg-opacity:1}.radio-solid,.radio-solid-primary{--radio-border-hover:transparent;--radio-bg-hover:rgb(var(--gray-5));background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent}.radio-solid-primary{--radio-bg-checked:rgb(var(--primary));--radio-border-checked:rgb(var(--primary));--tw-bg-opacity:1}.radio-solid-secondary{--radio-border-hover:transparent;--radio-bg-hover:rgb(var(--gray-5));--radio-bg-checked:rgb(var(--secondary));--radio-border-checked:rgb(var(--secondary));--tw-bg-opacity:1}.radio-solid-secondary,.radio-solid-success{background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent}.radio-solid-success{--radio-border-hover:transparent;--radio-bg-hover:rgb(var(--gray-5));--radio-bg-checked:rgb(var(--success));--radio-border-checked:rgb(var(--success));--tw-bg-opacity:1}.radio-solid-warning{--radio-border-hover:transparent;--radio-bg-hover:rgb(var(--gray-5));--radio-bg-checked:rgb(var(--warning));--radio-border-checked:rgb(var(--warning));--tw-bg-opacity:1}.radio-solid-error,.radio-solid-warning{background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-color:transparent}.radio-solid-error{--radio-border-hover:transparent;--radio-bg-hover:rgb(var(--gray-5));--radio-bg-checked:rgb(var(--error));--radio-border-checked:rgb(var(--error));--tw-bg-opacity:1}.switch{--switch-bg:rgb(var(--gray-6));--switch-border:rgb(var(--gray-6));--switch-bg-checked:rgb(var(--primary));--switch-border-checked:rgb(var(--primary));--switch-border-hover:rgb(var(--gray-6));--switch-bg-hover:rgb(var(--gray-6));--checkline-color:#fff;--circle-color:rgb(var(--gray-1));-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--switch-bg);border-color:var(--switch-border);border-radius:.75rem;border-width:1px;cursor:pointer;display:inline-block;height:21px;margin:0;outline:2px solid transparent;outline-offset:2px;position:relative;transition:background .15s,border-color .15s,box-shadow .15s;vertical-align:top;width:38px}.switch:focus{outline-width:2px}.switch:focus-visible{outline-color:rgb(var(--primary));outline-offset:2px;outline-style:solid}.switch:after{--tw-content:"";content:var(--tw-content);display:block;left:0;position:absolute;top:0;transition:transform var(--d-t,.15s) var(--d-t-e,ease),opacity var(--d-o,.15s)}.switch:checked{--circle-color:#fff;--o:1;--r:43deg;background-color:var(--switch-bg-checked);border-color:var(--switch-border-checked)}.switch:disabled{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(var(--gray-7)/var(--tw-bg-opacity));border-color:rgb(var(--gray-7)/var(--tw-border-opacity));cursor:not-allowed;opacity:.5}.switch:disabled:checked{--circle-color:#fff}.switch:disabled+label{cursor:not-allowed}.switch:hover:not(:checked):not(:disabled){background-color:var(--switch-bg-hover);border-color:var(--switch-border-hover)}.switch:after{background-color:var(--circle-color);border-radius:9999px;height:15px;left:2px;top:2px;transform:translateX(var(--x,0));width:15px}.switch:checked{--x:17px}.switch:disabled:not(:checked):after{opacity:.6}.switch-primary{--switch-bg-checked:rgb(var(--primary));--switch-border-checked:rgb(var(--primary))}.switch-primary:focus-visible{outline-color:rgb(var(--primary))}.switch-secondary{--switch-bg-checked:rgb(var(--secondary));--switch-border-checked:rgb(var(--secondary))}.switch-secondary:focus-visible{outline-color:rgb(var(--secondary))}.switch-success{--switch-bg-checked:rgb(var(--success));--switch-border-checked:rgb(var(--success))}.switch-success:focus-visible{outline-color:rgb(var(--success))}.switch-error{--switch-bg-checked:rgb(var(--error));--switch-border-checked:rgb(var(--error))}.switch-error:focus-visible{outline-color:rgb(var(--error))}.switch-warning{--switch-bg-checked:rgb(var(--warning));--switch-border-checked:rgb(var(--warning))}.switch-warning:focus-visible{outline-color:rgb(var(--warning))}.switch-bordered-primary{--switch-bg-checked:rgb(var(--primary));--switch-border-checked:rgb(var(--primary));--switch-border:rgb(var(--primary));--switch-border-hover:rgb(var(--primary))}.switch-bordered-primary:focus-visible{outline-color:rgb(var(--primary))}.switch-bordered-secondary{--switch-bg-checked:rgb(var(--secondary));--switch-border-checked:rgb(var(--secondary));--switch-border:rgb(var(--secondary));--switch-border-hover:rgb(var(--secondary))}.switch-bordered-secondary:focus-visible{outline-color:rgb(var(--secondary))}.switch-bordered-success{--switch-bg-checked:rgb(var(--success));--switch-border-checked:rgb(var(--success));--switch-border:rgb(var(--success));--switch-border-hover:rgb(var(--success))}.switch-bordered-success:focus-visible{outline-color:rgb(var(--success))}.switch-bordered-error{--switch-bg-checked:rgb(var(--error));--switch-border-checked:rgb(var(--error));--switch-border:rgb(var(--error));--switch-border-hover:rgb(var(--error))}.switch-bordered-error:focus-visible{outline-color:rgb(var(--error))}.switch-bordered-warning{--switch-bg-checked:rgb(var(--warning));--switch-border-checked:rgb(var(--warning));--switch-border:rgb(var(--warning));--switch-border-hover:rgb(var(--warning))}.switch-bordered-warning:focus-visible{outline-color:rgb(var(--warning))}.switch-ghost-primary{--switch-bg:rgb(var(--gray-1));--circle-color:rgb(var(--gray-6));--switch-bg-hover:rgb(var(--gray-1));--switch-border-hover:rgb(var(--primary));--switch-bg-checked:rgb(var(--primary))}.switch-ghost-primary:focus-visible{outline-color:rgb(var(--primary))}.switch-ghost-secondary{--switch-bg:rgb(var(--gray-1));--circle-color:rgb(var(--gray-6));--switch-bg-hover:rgb(var(--gray-1));--switch-border-hover:rgb(var(--secondary));--switch-border-checked:rgb(var(--secondary));--switch-bg-checked:rgb(var(--secondary))}.switch-ghost-secondary:focus-visible{outline-color:rgb(var(--secondary))}.switch-ghost-success{--switch-bg:rgb(var(--gray-1));--circle-color:rgb(var(--gray-6));--switch-bg-hover:rgb(var(--gray-1));--switch-border-hover:rgb(var(--success));--switch-border-checked:rgb(var(--success));--switch-bg-checked:rgb(var(--success))}.switch-ghost-success:focus-visible{outline-color:rgb(var(--success))}.switch-ghost-error{--switch-bg:rgb(var(--gray-1));--circle-color:rgb(var(--gray-6));--switch-bg-hover:rgb(var(--gray-1));--switch-border-hover:rgb(var(--error));--switch-border-checked:rgb(var(--error));--switch-bg-checked:rgb(var(--error))}.switch-ghost-error:focus-visible{outline-color:rgb(var(--error))}.switch-ghost-warning{--switch-bg:rgb(var(--gray-1));--circle-color:rgb(var(--gray-6));--switch-bg-hover:rgb(var(--gray-1));--switch-border-hover:rgb(var(--warning));--switch-border-checked:rgb(var(--warning));--switch-bg-checked:rgb(var(--warning))}.switch-ghost-warning:focus-visible{outline-color:rgb(var(--warning))}.switch-xs{height:1rem;width:1.5rem}.switch.switch-xs:checked{--x:8px}.switch.switch-xs:after{height:12px;left:1.4px;top:1px;width:12px}.switch-sm{height:1.25rem;width:2rem}.switch.switch-sm:checked{--x:14px}.switch.switch-sm:after{height:13px;left:1.7px;top:2px;width:13px}.switch-md{height:21px;width:38px}.switch.switch-md:after{height:15px;left:2px;top:2px;width:15px}.switch-lg{border-radius:9999px;height:1.75rem;width:3rem}.switch.switch-lg:checked{--x:22px}.switch.switch-lg:after{height:20px;left:2.5px;top:2.5px;width:20px}.switch-xl{border-radius:9999px;height:2rem;width:3.5rem}.switch.switch-xl:checked{--x:26px}.switch.switch-xl:after{height:23px;left:2.5px;top:3px;width:23px}.btn-group{display:flex;flex-direction:row;flex-wrap:wrap;max-width:-moz-fit-content;max-width:fit-content;width:100%}.btn-group-scrollable{flex-wrap:nowrap;overflow:auto}.btn-group>:first-child{border-radius:0;border-bottom-left-radius:.75rem;border-top-left-radius:.75rem}.btn-group>.btn:not(.btn-active):hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity))}.btn-group>.btn:not(.btn-active):active{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.btn-group>:last-child{border-radius:0;border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.btn-group>:not(:first-child):not(:last-child){border-radius:0}.btn-group>:only-child{border-radius:.75rem}.btn-group-horizontal{flex-direction:row}.btn-group-horizontal>:first-child{border-radius:0;border-bottom-left-radius:.75rem;border-top-left-radius:.75rem}.btn-group-horizontal>:last-child{border-radius:0;border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.btn-group-horizontal>:not(:first-child):not(:last-child){border-radius:0}.btn-group-horizontal>:only-child{border-radius:.75rem}.btn-group-vertical{flex-direction:column}.btn-group-vertical>:first-child{border-radius:0;border-top-left-radius:.75rem;border-top-right-radius:.75rem}.btn-group-vertical>:last-child{border-radius:0;border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.btn-group-vertical>:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>:only-child{border-radius:.75rem}.btn-group>input[type=radio]{-webkit-appearance:none;-moz-appearance:none}.btn-group>input[type=radio]:after{--tw-content:attr(data-content);content:var(--tw-content)}.btn-group>.btn-active,.btn-group>input[type=radio]:checked.btn{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.btn-group-rounded>:first-child{border-radius:0;border-bottom-left-radius:9999px;border-top-left-radius:9999px}.btn-group-rounded>:last-child{border-radius:0;border-bottom-right-radius:9999px;border-top-right-radius:9999px}.btn-group-rounded.btn-group-vertical>:first-child{border-radius:0;border-top-left-radius:9999px;border-top-right-radius:9999px}.btn-group-rounded.btn-group-vertical>:last-child{border-radius:0;border-bottom-left-radius:9999px;border-bottom-right-radius:9999px}.dropdown-container{display:flex}.dropdown{display:inline-block;position:relative;text-align:left;width:-moz-max-content;width:max-content}.dropdown-menu{--tw-translate-y:-0.5rem;--tw-scale-x:.95;--tw-scale-y:.95;--tw-bg-opacity:1;--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-radius:.75rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);opacity:0;outline:2px solid transparent;outline-offset:2px;position:absolute;right:0;transform:translate(var(--tw-translate-x),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));transform-origin:top right;transition-duration:.15s;transition-property:transform,opacity,visibility;transition-timing-function:cubic-bezier(.4,0,.2,1);visibility:hidden;width:14rem;will-change:transform;z-index:49}.dropdown-item,.dropdown-menu{display:flex;flex-direction:column;padding:.5rem}.dropdown-item{border-radius:5px;cursor:pointer;transition:transform .12s ease;width:100%}.dropdown-item:hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity))}.dropdown-item:active{--tw-scale-x:0.97;--tw-scale-y:0.97;--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));transform:translate(var(--tw-translate-x),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))}.dropdown-item.dropdown-active{transition-property:none}.dropdown-item.dropdown-active:hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.dropdown-item.dropdown-active:active{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),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))}.dropdown-divider{margin-bottom:1px;margin-top:1px;position:relative}.dropdown-divider:before{--tw-bg-opacity:1;--tw-content:"";background-color:rgb(var(--gray-6)/var(--tw-bg-opacity));content:var(--tw-content);height:1px;left:-.5rem;position:absolute;right:0;top:0}.dropdown-active{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.dropdown-item-no-animation{transition-property:none}.dropdown-item-no-animation:active{--tw-scale-x:1;--tw-scale-y:1}.dropdown-item-no-animation:active,.dropdown-menu-bottom-center{transform:translate(var(--tw-translate-x),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))}.dropdown-menu-bottom-center{transform-origin:top}.dropdown-menu-bottom-center,.dropdown-menu-top-center{--tw-translate-x:-50%;left:50%;right:100%;visibility:hidden}.dropdown-menu-top-center{bottom:100%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom}.dropdown-menu-bottom-right{--tw-translate-y:-0.5rem;left:0;transform:translate(var(--tw-translate-x),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));transform-origin:top left;visibility:hidden}.dropdown-menu-bottom-left{--tw-translate-y:-0.5rem;right:0;transform:translate(var(--tw-translate-x),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));transform-origin:top right;visibility:hidden}.dropdown-menu-top-right{margin-left:-50%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom left}.dropdown-menu-top-left,.dropdown-menu-top-right{--tw-translate-y:-0.5rem;bottom:100%;left:50%;visibility:hidden}.dropdown-menu-top-left{margin-left:auto;right:0;transform:translate(var(--tw-translate-x),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));transform-origin:bottom right}.dropdown-menu-left{right:100%;transform:translate(var(--tw-translate-x),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));transform-origin:right}.dropdown-menu-left,.dropdown-menu-right{--tw-translate-y:-50%;bottom:auto;top:50%;visibility:hidden}.dropdown-menu-right{left:100%;transform:translate(var(--tw-translate-x),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));transform-origin:left}.dropdown-menu-left-bottom{--tw-translate-y:-2.5rem;right:100%;transform:translate(var(--tw-translate-x),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));transform-origin:top right;visibility:hidden}.dropdown-menu-right-bottom{--tw-translate-y:-2.5rem;left:100%;transform:translate(var(--tw-translate-x),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));transform-origin:top left;visibility:hidden}.dropdown-menu-left-top{bottom:0;right:100%;transform-origin:bottom right;visibility:hidden}.dropdown-menu-right-top{--tw-translate-y:-0.5rem;bottom:0;left:100%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom left;visibility:hidden}.dropdown-hover:hover .dropdown-menu,.dropdown-hover:hover .dropdown-menu-bottom-left,.dropdown-hover:hover .dropdown-menu-bottom-right,.dropdown.dropdown-open .dropdown-menu,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-bottom-left,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-bottom-right,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-bottom-left,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-bottom-right{--tw-translate-x:0px;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-top-left,.dropdown-hover:hover .dropdown-menu-top-right,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-top-left,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-top-right,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-top-left,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-top-right{--tw-translate-x:0px;--tw-translate-y:-0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-right,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-right,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-right{--tw-translate-x:0px;--tw-translate-y:-50%;--tw-scale-x:1;--tw-scale-y:1;bottom:auto;opacity:1;right:auto;top:50%;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-left,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-left,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-left{--tw-translate-x:0px;--tw-translate-y:-50%;--tw-scale-x:1;--tw-scale-y:1;bottom:auto;left:auto;opacity:1;top:50%;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-left-bottom,.dropdown-hover:hover .dropdown-menu-right-bottom,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-left-bottom,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-right-bottom,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-left-bottom,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-right-bottom{--tw-translate-x:0px;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-left-top,.dropdown-hover:hover .dropdown-menu-right-top,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-left-top,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-right-top,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-left-top,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-right-top{--tw-translate-x:0px;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-bottom-center,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-bottom-center,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-bottom-center{--tw-translate-x:-50%;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.dropdown-hover:hover .dropdown-menu-top-center,.dropdown.dropdown-open .dropdown-menu.dropdown-menu-top-center,.dropdown:not(.dropdown-hover):where(:focus,:focus-within) .dropdown-menu-top-center{--tw-translate-x:-50%;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.range{--circle-color:#fff;--left-track-color:rgb(var(--primary));--circle-border:rgb(var(--primary));--track-color:rgb(var(--gray-5));--brightness-hover:180%;--brightness-down:80%;--thumb-height:1.125em;--track-height:0.2em;--clip-edges:0.125em;--thumb-width:1.125em;--border-size:4.5px;background-color:transparent;color:rgb(var(--primary));overflow-x:hidden;position:relative}.range:active{cursor:grabbing}.range:disabled{cursor:not-allowed;opacity:.3}.range,.range::-webkit-slider-runnable-track,.range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;height:var(--thumb-height)}.range::-webkit-slider-runnable-track,.range::-webkit-slider-thumb{position:relative}.range::-webkit-slider-thumb{--thumb-radius:calc(var(--thumb-height)*0.5 - 1px);--clip-top:calc((var(--thumb-height) - var(--track-height))*0.5 - 0.5px);--clip-bottom:calc(var(--thumb-height) - var(--clip-top));--clip-further:calc(100% + 1px);--box-fill:calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax var(--left-track-color);--tw-translate-y:-50%;--tw-brightness:brightness(1);background:linear-gradient(currentColor 0 0) scroll no-repeat 0 /50% calc(var(--track-height) + 1px);background:var(--circle-color);border-color:var(--circle-border);border-radius:9999px;border-style:solid;border-width:var(--border-size);box-shadow:var(--box-fill);-webkit-clip-path:polygon(100% -1px,var(--clip-edges) -1px,0 var(--clip-top),-100vmax var(--clip-top),-100vmax var(--clip-bottom),0 var(--clip-bottom),var(--clip-edges) 100%,var(--clip-further) var(--clip-further));clip-path:polygon(100% -1px,var(--clip-edges) -1px,0 var(--clip-top),-100vmax var(--clip-top),-100vmax var(--clip-bottom),0 var(--clip-bottom),var(--clip-edges) 100%,var(--clip-further) var(--clip-further));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);position:relative;top:50%;transform:translate(var(--tw-translate-x),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));width:var(--thumb-width,var(--thumb-height))}.range:hover::-webkit-slider-thumb{cursor:grab}.range:active::-webkit-slider-thumb{--tw-brightness:brightness(var(--brightness-down));cursor:grabbing;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)}.range::-webkit-slider-runnable-track{align-items:center;background-color:var(--track-color);border-radius:9999px;height:var(--track-height)}.range:disabled::-webkit-slider-thumb{cursor:not-allowed}.range,.range::-moz-range-thumb,.range::-moz-range-track{-moz-appearance:none;appearance:none;height:var(--thumb-height)}.range::-moz-range-thumb{--thumb-height:0.625em;--thumb-width:0.625em;background-color:var(--circle-color);border-color:var(--circle-border);border-radius:9999px;border-style:solid;border-width:var(--border-size);cursor:grab;height:var(--thumb-height);width:var(--thumb-width)}.range:active::-moz-range-thumb{cursor:grabbing}.range::-moz-range-track{background-color:var(--track-color);width:100%}.range::-moz-range-progress{-moz-appearance:none;appearance:none;background-color:var(--left-track-color)}.range::-moz-range-progress,.range::-moz-range-track{--track-height:0.125em;border-radius:9999px;height:calc(var(--track-height) + 1px)}.range::-moz-range-progress,.range::-moz-range-thumb{--tw-brightness:brightness(1)}.range::-moz-range-progress,.range::-moz-range-thumb,.range:active::-moz-range-progress,.range:active::-moz-range-thumb{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)}.range:active::-moz-range-progress,.range:active::-moz-range-thumb{--tw-brightness:brightness(var(--brightness-down))}.range:disabled::-moz-range-thumb{cursor:not-allowed}.range-primary{--left-track-color:rgb(var(--primary));--circle-border:rgb(var(--primary));--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.range-secondary{--left-track-color:rgb(var(--secondary));--circle-border:rgb(var(--secondary));--tw-text-opacity:1;color:rgb(var(--secondary)/var(--tw-text-opacity))}.range-success{--left-track-color:rgb(var(--success));--circle-border:rgb(var(--success));--tw-text-opacity:1;color:rgb(var(--success)/var(--tw-text-opacity))}.range-error{--left-track-color:rgb(var(--error));--circle-border:rgb(var(--error));--tw-text-opacity:1;color:rgb(var(--error)/var(--tw-text-opacity))}.range-warning{--left-track-color:rgb(var(--warning));--circle-border:rgb(var(--warning));--tw-text-opacity:1;color:rgb(var(--warning)/var(--tw-text-opacity))}.range-flat-primary{--left-track-color:rgb(var(--primary));--circle-border:rgb(var(--primary));--track-color:rgb(var(--blue-5));--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.range-flat-secondary{--left-track-color:rgb(var(--secondary));--circle-border:rgb(var(--secondary));--track-color:rgb(var(--purple-5));--tw-text-opacity:1;color:rgb(var(--secondary)/var(--tw-text-opacity))}.range-flat-success{--left-track-color:rgb(var(--success));--circle-border:rgb(var(--success));--track-color:rgb(var(--green-5));--tw-text-opacity:1;color:rgb(var(--success)/var(--tw-text-opacity))}.range-flat-error{--left-track-color:rgb(var(--error));--circle-border:rgb(var(--error));--track-color:rgb(var(--red-5));--tw-text-opacity:1;color:rgb(var(--error)/var(--tw-text-opacity))}.range-flat-warning{--left-track-color:rgb(var(--warning));--circle-border:rgb(var(--warning));--track-color:rgb(var(--yellow-5));--tw-text-opacity:1;color:rgb(var(--warning)/var(--tw-text-opacity))}.range-vertical{transform:rotate(270deg)}.input-file{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:.75rem;border-width:2px;color:rgb(var(--content1)/var(--tw-text-opacity));font-size:1rem;height:2.5rem;line-height:1.5rem;max-width:20rem;overflow:hidden;padding-right:.75rem;width:100%}.input-file:focus{outline-width:2px}.input-file:focus-visible{outline-color:rgb(var(--gray-6));outline-offset:2px;outline-style:solid}.input-file::-webkit-file-upload-button,.input-file::file-selector-button{--tw-bg-opacity:1;--tw-text-opacity:1;align-items:center;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-style:none;color:rgb(var(--content1)/var(--tw-text-opacity));cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:500;height:100%;justify-content:center;line-height:1.25rem;margin-right:1rem;padding-left:1.25rem;padding-right:1.25rem;text-align:center;-webkit-user-select:none;user-select:none}.input-file-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.input-file-primary:focus-visible{outline-color:rgb(var(--primary))}.input-file-primary::-webkit-file-upload-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.input-file-primary:focus-visible::-webkit-file-upload-button{outline-color:rgb(var(--primary))}.input-file-secondary{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.input-file-secondary:focus-visible{outline-color:rgb(var(--secondary))}.input-file-secondary::-webkit-file-upload-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.input-file-secondary:focus-visible::-webkit-file-upload-button{outline-color:rgb(var(--secondary))}.input-file-success{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.input-file-success:focus-visible{outline-color:rgb(var(--success))}.input-file-success::-webkit-file-upload-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity));color:rgb(0 0 0/var(--tw-text-opacity))}.input-file-success:focus-visible::-webkit-file-upload-button{outline-color:rgb(var(--success))}.input-file-error{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.input-file-error:focus-visible{outline-color:rgb(var(--error))}.input-file-error::-webkit-file-upload-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.input-file-error:focus-visible::-webkit-file-upload-button{outline-color:rgb(var(--error))}.input-file-warning{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.input-file-warning:focus-visible{outline-color:rgb(var(--warning))}.input-file-warning::-webkit-file-upload-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity));color:rgb(0 0 0/var(--tw-text-opacity))}.input-file-warning:focus-visible::-webkit-file-upload-button{outline-color:rgb(var(--warning))}.input-file-xs{border-radius:.5rem;font-size:.75rem;height:1.5rem;line-height:1rem}.input-file-xs::-webkit-file-upload-button{font-size:.75rem;line-height:1rem;padding-left:.5rem;padding-right:.5rem}.input-file-sm{font-size:.875rem;height:2rem;line-height:1.25rem}.input-file-sm::-webkit-file-upload-button{font-size:.875rem;line-height:1.25rem;padding-left:.75rem;padding-right:.75rem}.input-file-md{font-size:1rem;height:2.5rem;line-height:1.5rem}.input-file-md::-webkit-file-upload-button{font-size:.875rem;line-height:1.25rem;padding-left:1.25rem;padding-right:1.25rem}.input-file-lg{font-size:1rem;height:2.75rem;line-height:1.5rem}.input-file-lg::-webkit-file-upload-button{font-size:1rem;line-height:1.5rem;padding-left:1.5rem;padding-right:1.5rem}.input-file-xl{font-size:1.125rem;height:3rem;line-height:1.75rem}.input-file-xl::-webkit-file-upload-button{font-size:1.25rem;line-height:1.75rem;padding-left:1.5rem;padding-right:1.5rem}.input-file:disabled{opacity:.5;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.input-file-primary::file-selector-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.input-file-primary::file-selector-button:focus-visible{outline-color:rgb(var(--primary))}.input-file-secondary::file-selector-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.input-file-secondary::file-selector-button:focus-visible{outline-color:rgb(var(--secondary))}.input-file-success::file-selector-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity));color:rgb(0 0 0/var(--tw-text-opacity))}.input-file-success::file-selector-button:focus-visible{outline-color:rgb(var(--success))}.input-file-error::file-selector-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.input-file-error::file-selector-button:focus-visible{outline-color:rgb(var(--error))}.input-file-warning::file-selector-button{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity));color:rgb(0 0 0/var(--tw-text-opacity))}.input-file-warning::file-selector-button:focus-visible{outline-color:rgb(var(--warning))}.modal{align-items:center;background-color:rgba(0,0,0,.6);display:flex;inset:0;justify-content:center;opacity:0;overscroll-behavior:none;padding-left:1rem;padding-right:1rem;position:fixed;text-align:left;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);visibility:hidden;z-index:60}.modal-overlay{inset:0;position:absolute}.modal-state{display:none}.modal-state:checked+.modal{--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}html:has(.modal-state:checked){overflow:hidden}.modal-state:checked+.modal .modal-content{--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1}.modal-content,.modal-state:checked+.modal .modal-content{transform:translate(var(--tw-translate-x),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))}.modal-content{--tw-scale-x:.9;--tw-scale-y:.9;--tw-bg-opacity:1;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));border-radius:.75rem;height:-moz-max-content;height:max-content;max-height:90%;max-width:32rem;overflow:auto;padding:1.5rem;position:relative;transition-duration:75ms;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.badge{align-items:center;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-color:rgb(var(--gray-3)/var(--tw-border-opacity));border-radius:9999px;border-width:1px;color:rgb(var(--content1)/var(--tw-text-opacity));display:inline-flex;font-size:.75rem;font-weight:700;line-height:1rem;line-height:1;padding:.3rem .5rem;text-align:center;vertical-align:middle;white-space:nowrap}.badge,.badge-primary{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1}.badge-primary{background-color:rgb(var(--primary)/var(--tw-bg-opacity));border-color:rgb(var(--primary)/var(--tw-border-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.badge-secondary{background-color:rgb(var(--secondary)/var(--tw-bg-opacity));border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.badge-secondary,.badge-success{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.badge-success{background-color:rgb(var(--success)/var(--tw-bg-opacity));border-color:rgb(var(--success)/var(--tw-border-opacity))}.badge-error{background-color:rgb(var(--error)/var(--tw-bg-opacity));border-color:rgb(var(--error)/var(--tw-border-opacity))}.badge-error,.badge-warning{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.badge-warning{background-color:rgb(var(--warning)/var(--tw-bg-opacity));border-color:rgb(var(--warning)/var(--tw-border-opacity))}.badge-outline{border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-width:1px;color:rgb(var(--content1)/var(--tw-text-opacity))}.badge-outline,.badge-outline-primary{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent}.badge-outline-primary{border-color:rgb(var(--primary)/var(--tw-border-opacity));color:rgb(var(--primary)/var(--tw-text-opacity))}.badge-outline-secondary{border-color:rgb(var(--secondary)/var(--tw-border-opacity));color:rgb(var(--secondary)/var(--tw-text-opacity))}.badge-outline-secondary,.badge-outline-success{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent}.badge-outline-success{border-color:rgb(var(--success)/var(--tw-border-opacity));color:rgb(var(--success)/var(--tw-text-opacity))}.badge-outline-error{border-color:rgb(var(--error)/var(--tw-border-opacity));color:rgb(var(--error)/var(--tw-text-opacity))}.badge-outline-error,.badge-outline-warning{--tw-border-opacity:1;--tw-text-opacity:1;background-color:transparent}.badge-outline-warning{border-color:rgb(var(--warning)/var(--tw-border-opacity));color:rgb(var(--warning)/var(--tw-text-opacity))}.badge-flat{background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));background-color:transparent;color:rgb(var(--gray-11)/var(--tw-text-opacity))}.badge-flat,.badge-flat-primary{--tw-bg-opacity:1;--tw-text-opacity:1;border-style:none}.badge-flat-primary{background-color:rgb(var(--blue-4)/var(--tw-bg-opacity));color:rgb(var(--blue-11)/var(--tw-text-opacity))}.badge-flat-secondary{background-color:rgb(var(--purple-4)/var(--tw-bg-opacity));color:rgb(var(--purple-11)/var(--tw-text-opacity))}.badge-flat-secondary,.badge-flat-success{--tw-bg-opacity:1;--tw-text-opacity:1;border-style:none}.badge-flat-success{background-color:rgb(var(--green-4)/var(--tw-bg-opacity));color:rgb(var(--green-11)/var(--tw-text-opacity))}.badge-flat-error{background-color:rgb(var(--red-4)/var(--tw-bg-opacity));color:rgb(var(--red-11)/var(--tw-text-opacity))}.badge-flat-error,.badge-flat-warning{--tw-bg-opacity:1;--tw-text-opacity:1;border-style:none}.badge-flat-warning{background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity));color:rgb(var(--yellow-11)/var(--tw-text-opacity))}.badge-xs{font-size:.65rem;padding:.25rem}.badge-sm{font-size:.73rem;padding:.25rem .375rem}.badge-md{font-size:.75rem;line-height:1rem;line-height:1;padding:.3rem .5rem}.badge-lg{font-size:1rem;line-height:1.5rem;line-height:1;padding:.5rem .625rem}.badge-xl{font-size:1.25rem;line-height:1.75rem;line-height:1;padding:.625rem .75rem}.badge-square{border-radius:0}.tooltip,.tooltip-click,.tooltip-hover{--tooltip-bg:#000;--tooltip-border:#000;position:relative}.tooltip-click:after,.tooltip-click:before,.tooltip-hover:after,.tooltip-hover:before,.tooltip:after,.tooltip:before{opacity:0;position:absolute;transition:opacity .3s ease-in-out;visibility:hidden}.tooltip-click:focus-within:after,.tooltip-click:focus-within:before,.tooltip-hover:hover:after,.tooltip-hover:hover:before,.tooltip:hover:after,.tooltip:hover:before{opacity:1;visibility:visible}.tooltip-click:before,.tooltip-hover:before,.tooltip:before{--tw-text-opacity:1;--tw-content:attr(data-tooltip);background-color:var(--tooltip-bg);border-radius:.375rem;color:rgb(255 255 255/var(--tw-text-opacity));content:var(--tw-content);font-size:.75rem;line-height:1rem;padding:.375rem 1rem;width:-moz-max-content;width:max-content;z-index:2}.tooltip-click:after,.tooltip-hover:after,.tooltip:after{--tw-content:"";content:var(--tw-content);height:0;width:0}.tooltip:after,.tooltip:before{bottom:85%;left:50%;margin:0 0 .75rem;right:auto;top:auto;transform:translate(-50%)}.tooltip:after{border-left-color:transparent;border-right-color:transparent;border-top-color:var(--tooltip-border);border-width:5px 4px 0;margin:0 0 .5rem}.tooltip-top:after,.tooltip-top:before{bottom:85%;left:50%;margin:0 0 .75rem;right:auto;top:auto;transform:translate(-50%)}.tooltip-top:after{border-left-color:transparent;border-right-color:transparent;border-top-color:var(--tooltip-border);border-width:5px 4px 0;margin:0 0 .5rem}.tooltip-bottom:after,.tooltip-bottom:before{bottom:auto;left:50%;margin:12px 0 0;right:auto;top:85%;transform:translate(-50%)}.tooltip-bottom:after{border-bottom-color:var(--tooltip-border);border-left-color:transparent;border-right-color:transparent;border-width:0 4px 5px;margin-top:.5rem}.tooltip-right:after,.tooltip-right:before{bottom:auto;left:95%;margin:0 0 0 12px;right:auto;top:50%;transform:translateY(-50%)}.tooltip-right:after{border-bottom-color:transparent;border-right-color:var(--tooltip-border);border-top-color:transparent;border-width:4px 5px 4px 0;margin-left:.5rem}.tooltip-left:after,.tooltip-left:before{bottom:auto;left:auto;margin:0 12px 0 0;right:95%;top:50%;transform:translateY(-50%)}.tooltip-left:after{border-bottom-color:transparent;border-left-color:var(--tooltip-border);border-top-color:transparent;border-width:4px 0 4px 5px;margin-right:.5rem}.tooltip-primary{--tooltip-bg:rgb(var(--primary));--tooltip-border:rgb(var(--primary))}.tooltip-secondary{--tooltip-bg:rgb(var(--secondary));--tooltip-border:rgb(var(--secondary))}.tooltip-success{--tooltip-bg:rgb(var(--success));--tooltip-border:rgb(var(--success))}.tooltip-warning{--tooltip-bg:rgb(var(--warning));--tooltip-border:rgb(var(--warning))}.tooltip-error{--tooltip-bg:rgb(var(--error));--tooltip-border:rgb(var(--error))}.tooltip-click.tooltip-open:after,.tooltip-click.tooltip-open:before,.tooltip-hover.tooltip-open:after,.tooltip-hover.tooltip-open:before,.tooltip.tooltip-open:after,.tooltip.tooltip-open:before{opacity:1;visibility:visible}.avatar{--tw-bg-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));display:inline-flex;font-size:.75rem;height:2.5rem;line-height:1rem;max-width:20rem;position:relative;vertical-align:top;width:2.5rem}.avatar>*{align-items:center;display:flex;justify-content:center;width:100%}.avatar:where(:not(.avatar-squared)) img{border-radius:9999px;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;overflow:hidden;width:100%}.avatar:where(.avatar-squared) img{border-radius:3px;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;overflow:hidden;width:100%}.avatar:where(:not(.avatar-square,.avatar-online)){border-radius:9999px}.avatar-squared{border-radius:.25rem}.avatar-ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--gray-6)/var(--tw-ring-opacity))}.avatar-ring,.avatar-ring-primary{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.avatar-ring-primary{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--primary)/var(--tw-ring-opacity))}.avatar-ring-secondary{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--secondary)/var(--tw-ring-opacity))}.avatar-ring-secondary,.avatar-ring-success{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.avatar-ring-success{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--success)/var(--tw-ring-opacity))}.avatar-ring-error{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--error)/var(--tw-ring-opacity))}.avatar-ring-error,.avatar-ring-warning{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.avatar-ring-warning{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--warning)/var(--tw-ring-opacity));border-radius:9999px}.avatar-online:not(.avatar-squared).avatar-ring,.avatar-online:not(.avatar-squared).avatar-ring-error,.avatar-online:not(.avatar-squared).avatar-ring-primary,.avatar-online:not(.avatar-squared).avatar-ring-secondary,.avatar-online:not(.avatar-squared).avatar-ring-success,.avatar-online:not(.avatar-squared).avatar-ring-warning{border-radius:9999px}.avatar-online.avatar-squared:before{align-items:center;display:flex;justify-content:center;top:0;transform:translate(50%,-50%)}.avatar-online.avatar-squared:before,.avatar-online:not(.avatar-squared):before{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-content:"";background-color:rgb(var(--green-6)/var(--tw-bg-opacity));border-color:rgb(var(--success)/var(--tw-border-opacity));border-radius:9999px;border-width:2px;content:var(--tw-content);height:.5rem;overflow:auto;position:absolute;right:0;width:.5rem}.avatar-online:not(.avatar-squared):before{display:block}.avatar-group{display:inline-flex;position:relative}.avatar-group :where(.avatar){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);margin-left:-.25rem}.avatar-group :where(:not(.avatar-ring-primary,.avatar-ring-secondary,.avatar-ring-success,.avatar-ring-error,.avatar-ring-warning)){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--gray-6)/var(--tw-ring-opacity))}.avatar-xs{height:1.25rem;width:1.25rem}.avatar-sm{height:1.75rem;width:1.75rem}.avatar-md{height:2.5rem;width:2.5rem}.avatar-lg{height:3rem;width:3rem}.avatar-xl{height:3.5rem;width:3.5rem}.alert{--tw-bg-opacity:1;align-items:center;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));border-radius:.75rem;display:flex;flex-direction:row;gap:.75rem;padding:1rem;position:relative;width:100%}.alert-info{--tw-bg-opacity:1;background-color:rgb(var(--blue-4)/var(--tw-bg-opacity))}.alert-success{--tw-bg-opacity:1;background-color:rgb(var(--green-4)/var(--tw-bg-opacity))}.alert-warning{--tw-bg-opacity:1;background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity))}.alert-error{--tw-bg-opacity:1;background-color:rgb(var(--red-4)/var(--tw-bg-opacity))}.table{--tw-border-spacing-x:0px;--tw-border-spacing-y:0px;border-collapse:initial;border-spacing:var(--tw-border-spacing-x) var(--tw-border-spacing-y);width:100%}.table>thead>tr th:first-child{--tw-border-opacity:1;border-bottom-left-radius:.375rem;border-bottom-width:1px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-left-width:1px;border-top-left-radius:.375rem;border-top-width:1px}.table>thead>tr th:last-child{border-bottom-right-radius:.375rem;border-right-width:1px;border-top-right-radius:.375rem}.table>thead>tr :not(.th:first-child,.th:last-child),.table>thead>tr th:last-child{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-top-width:1px}.table>thead>tr>th{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));color:rgb(var(--content1)/var(--tw-text-opacity));font-weight:400}.table>tbody>tr>td,.table>tbody>tr>th,.table>thead>tr>th{font-size:.875rem;line-height:1.25rem;padding:1rem .625rem;text-align:start;white-space:nowrap}.table>tbody>tr>td,.table>tbody>tr>th{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-width:1px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));color:rgb(var(--content2)/var(--tw-text-opacity))}.table.table-compact>tbody>tr>td,.table.table-compact>tbody>tr>th{padding-bottom:.625rem;padding-top:.625rem}.table.table-compact>tbody>tr>td:first-child,.table.table-compact>tbody>tr>td:last-child,.table.table-compact>tbody>tr>td:not(:first-child):not(:last-child),.table.table-compact>tbody>tr>th:first-child,.table.table-compact>tbody>tr>th:last-child,.table.table-compact>tbody>tr>th:not(:first-child):not(:last-child){padding-left:.625rem;padding-right:.625rem}.table.table-compact>thead>tr>th{padding-bottom:.625rem;padding-top:.625rem}.table.table-compact>thead>tr>th:first-child{padding-left:.625rem;padding-right:.625rem}.card,.table.table-hover>tbody>tr:hover>td,.table.table-hover>tbody>tr:hover>th,.table.table-zebra>tbody>tr:nth-child(2n)>td,.table.table-zebra>tbody>tr:nth-child(2n)>th{--tw-bg-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity))}.card{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-radius:.75rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:flex;flex-direction:column;gap:.5rem;max-width:24rem;width:100%}.card.card-image-cover img:first-child{border-top-left-radius:.75rem;border-top-right-radius:.75rem;height:auto;max-width:100%}.card.card-image-cover img:last-child{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem;height:auto;max-width:100%}.card-header{align-items:center;display:flex;flex-direction:row;font-size:1.25rem;font-weight:600;justify-content:space-between;line-height:1.75rem}.card-body{display:flex;flex-direction:column;gap:.75rem;padding:2rem}.card-footer{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.card.card-image-cover:not(:has(.card-header),:has(.card-body),:has(.card-footer)) img{border-radius:.5rem}.accordion-toggle{display:none;height:0;opacity:0;position:absolute;width:0;z-index:-1}.accordion{display:flex;flex-direction:column;position:relative}.accordion:focus{outline-width:2px}.accordion:focus-visible{outline-color:rgb(var(--gray-6));outline-offset:2px;outline-style:solid}.accordion-group-secondary .accordion-title{--tw-bg-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity))}.accordion-group-bordered{--tw-border-opacity:1;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:.75rem;border-width:1px;overflow:auto}.accordion-title{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));cursor:pointer;display:flex;flex-direction:column;font-size:1.25rem;font-weight:600;line-height:1.75rem;padding-bottom:1.25rem;padding-top:1.25rem;position:relative;text-align:left;transition-property:none;width:100%}.accordion-group.accordion-group-bordered .accordion:last-child .accordion-toggle:checked~.accordion-content,.accordion-group.accordion-group-bordered .accordion:last-child:not(.accordion-open) .accordion-toggle:not(:checked)~.accordion-title{border-style:none}.accordion-group.accordion-group-bordered .accordion:last-child:not(:focus):not(:has(.accordion-toggle)) .accordion-title,.accordion-group.accordion-group-bordered .accordion:last-child:not(:has(.accordion-toggle)) .accordion-content{border-style:none}.accordion-group{display:flex;flex-direction:column}.accordion-content{display:grid;grid-template-rows:0fr;overflow:hidden;transition:padding .2s,grid-template-rows .2s}.accordion-group.accordion-group-bordered .accordion:last-child.accordion-open .accordion-content{border-style:none;grid-template-rows:1fr;padding-bottom:1.25rem;padding-top:1.25rem}.accordion-group .accordion.accordion-open .accordion-content,.accordion-toggle:checked~.accordion-content,.accordion:focus .accordion-content{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));grid-template-rows:1fr;padding-bottom:1.25rem;padding-top:1.25rem}.accordion-group.accordion-group-bordered .accordion-content,.accordion-group.accordion-group-bordered .accordion-title,.accordion-group.accordion-group-hover .accordion-content,.accordion-group.accordion-group-hover .accordion-title{padding-left:1.25rem;padding-right:1.25rem}.accordion-group.accordion-group-hover .accordion:focus .accordion-title,.accordion-group.accordion-group-hover>.accordion .accordion-title:hover,.accordion-group.accordion-group-hover>.accordion .accordion-toggle:checked~.accordion-title,.accordion-group.accordion-group-hover>.accordion.accordion-open .accordion-title{--tw-bg-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity))}.accordion-icon{fill:rgb(var(--content3));height:1.25rem;position:absolute;right:1rem;top:1.5rem;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;-moz-user-select:none;user-select:none;width:1.25rem;z-index:10}.accordion.accordion-open .accordion-title .accordion-icon,.accordion.accordion-open~.accordion-icon,.accordion:focus .accordion-icon,.accordion:not(.accordion-open) .accordion-toggle:checked~.accordion-icon,.accordion:not(.accordion-open) .accordion-toggle:checked~.accordion-title .accordion-icon{--tw-rotate:-90deg;transform:translate(var(--tw-translate-x),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))}.tabs{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;white-space:nowrap;width:-moz-fit-content;width:fit-content}.tab{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity));font-size:.875rem;line-height:1.25rem;line-height:2;min-height:2rem;padding-left:.75rem;padding-right:.75rem}.tab-disabled{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity));cursor:not-allowed;pointer-events:none}.tab-bordered{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));padding-bottom:.5rem;padding-top:.5rem}.tab{cursor:pointer;display:flex}.tab:focus{outline:2px solid transparent;outline-offset:2px}.tab:not(.tab-active):hover{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity))}.tabs:has(.tab-underline) .tab{padding-bottom:.5rem}.tab-active{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-color:rgb(var(--primary)/var(--tw-border-opacity));color:rgb(var(--primary)/var(--tw-text-opacity))}.tab-underline{padding-bottom:.5rem;position:relative}.tab-underline:after{--tw-bg-opacity:1;--tw-content:"";background-color:rgb(var(--primary)/var(--tw-bg-opacity));bottom:0;content:var(--tw-content);height:.125rem;left:0;position:absolute;transition:transform .3s ease;width:100%;z-index:10}.tab-pill{border-color:transparent;border-radius:.75rem;line-height:1.25rem;padding-bottom:.5rem;padding-top:.5rem}.tab-pill:not(.tab-active):hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity))}.tab-pill:not(.tab-active):active{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.tab-pill.tab-active{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));border-color:rgb(var(--gray-6)/var(--tw-border-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.tabs-boxed{--tw-bg-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-radius:.75rem;padding:.25rem}.tabs-boxed .tab{border-radius:.75rem;line-height:1.25rem;padding-bottom:.5rem;padding-top:.5rem}.tabs-boxed .tab:not(.tab-active):hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.tabs-boxed .tab.tab-active,.tabs-boxed .tab:not(.tab-active):active{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity))}.tabs-boxed .tab.tab-active{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity))}.tab-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:0;opacity:0;position:absolute;width:0}.tab-toggle:checked+.tab{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-color:rgb(var(--primary)/var(--tw-border-opacity));color:rgb(var(--primary)/var(--tw-text-opacity))}.tabs-underline .tab-toggle+.tab{padding-bottom:.5rem;position:relative}.tabs-underline .tab-toggle:checked+.tab:before{--tw-bg-opacity:1;--tw-content:"";background-color:rgb(var(--primary)/var(--tw-bg-opacity));bottom:0;content:var(--tw-content);height:.125rem;left:0;position:absolute;transition:transform .3s ease;width:100%;z-index:10}.tab-toggle:checked+.tab.tab-pill,.tabs-boxed .tab-toggle:checked+.tab{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.divider:not(:empty){gap:1rem}.divider{align-items:center;display:flex;flex-direction:row;height:1rem;margin-bottom:1rem;margin-top:1rem;white-space:nowrap}.divider-horizontal:after,.divider-horizontal:before,.divider:after,.divider:before{--tw-bg-opacity:1;--tw-content:"";background-color:rgb(var(--gray-6)/var(--tw-bg-opacity));content:var(--tw-content);height:1px;width:100%}.divider-vertical{flex-direction:column;height:100%;margin:0 1rem;width:1rem}.divider-vertical:after,.divider-vertical:before{--tw-bg-opacity:1;--tw-content:"";background-color:rgb(var(--gray-6)/var(--tw-bg-opacity));content:var(--tw-content);height:100%;width:1px}.pagination{display:flex;gap:.5rem}.pagination .btn{border-color:transparent;border-width:1px;min-width:2.5rem;padding:.5rem 0}.pagination .btn:hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity))}.pagination .btn.btn-active,.pagination input:checked+.btn{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity));border-color:rgb(var(--primary)/var(--tw-border-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.pagination input:disabled+.btn{opacity:.5;pointer-events:none}.pagination input[type=radio]{opacity:0;position:absolute;visibility:hidden}.pagination.pagination-compact{gap:0}.pagination.pagination-compact .btn{border-color:transparent}.pagination.pagination-bordered .btn{--tw-border-opacity:1;border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-width:1px}.pagination.pagination-bordered .btn.btn-active{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.pagination.pagination-compact :where(.btn:first-of-type){border-bottom-right-radius:0;border-top-right-radius:0}.pagination.pagination-compact :where(.btn:last-of-type){border-bottom-left-radius:0;border-top-left-radius:0}.pagination.pagination-compact :where(.btn:not(:first-of-type):not(:last-of-type)){border-radius:0}.pagination.pagination-rounded .btn{border-radius:9999px}@keyframes skeletonWave{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes skeletonPulse{0%{opacity:1}50%{opacity:.4}to{opacity:1}}.skeleton{animation:skeletonWave 2.5s linear infinite;opacity:.5;transition:opacity .3s ease-out}.skeleton,.skeleton-static{background:linear-gradient(270deg,rgb(var(--gray-9)),rgb(var(--gray-7)),rgb(var(--gray-7)),rgb(var(--gray-9)));background-size:400% 100%;height:100%;width:100%}.skeleton-static{opacity:.4}.skeleton-pulse{--tw-bg-opacity:1;animation:skeletonPulse 2s linear infinite;animation-delay:.5s;background:no-repeat;background-color:rgb(var(--gray-7)/var(--tw-bg-opacity));height:100%;width:100%}.steps{display:flex;gap:1.5rem;width:100%}.steps-vertical{align-items:center;flex-direction:column;gap:.5rem;width:-moz-fit-content;width:fit-content}.steps-horizontal{gap:1.5rem}.step,.steps-horizontal{align-items:center;flex-direction:row;width:100%}.step{display:flex;gap:.5rem;white-space:nowrap}.steps-horizontal .step{flex-direction:row;white-space:nowrap;width:100%}.steps-vertical .step{align-items:center;display:flex;flex-direction:column;gap:.5rem;width:-moz-fit-content;width:fit-content}.step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;align-items:center;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:9999px;border-width:1px;color:rgb(var(--content1)/var(--tw-text-opacity));display:flex;justify-content:center;min-height:2rem;min-width:2rem}.step:not(:last-child):after{--tw-bg-opacity:1;background-color:rgb(var(--gray-6)/var(--tw-bg-opacity))}.step:not(:last-child):after,.steps-horizontal .step:not(:last-child):after{--tw-content:"";content:var(--tw-content);flex:1 1 0%;height:1px;min-height:0;min-width:2rem;position:relative;width:100%}.steps-vertical .step:not(:last-child):after{--tw-content:"";content:var(--tw-content);flex:1 1 0%;height:100%;min-height:2rem;min-width:0;position:relative;width:1px}.step-primary.step-active .step-circle{background-color:rgb(var(--primary)/var(--tw-bg-opacity));border-color:rgb(var(--primary)/var(--tw-border-opacity))}.step-primary.step-active .step-circle,.step-secondary.step-active .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.step-secondary.step-active .step-circle{background-color:rgb(var(--secondary)/var(--tw-bg-opacity));border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.step-success.step-active .step-circle{background-color:rgb(var(--success)/var(--tw-bg-opacity));border-color:rgb(var(--success)/var(--tw-border-opacity))}.step-error.step-active .step-circle,.step-success.step-active .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.step-error.step-active .step-circle{background-color:rgb(var(--error)/var(--tw-bg-opacity));border-color:rgb(var(--error)/var(--tw-border-opacity))}.step-warning.step-active .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity));border-color:rgb(var(--warning)/var(--tw-border-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.step-done .step-circle,.step-done.step-primary .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--blue-4)/var(--tw-bg-opacity));border-color:rgb(var(--blue-7)/var(--tw-border-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.step-done.step-primary:after{--tw-bg-opacity:1;background-color:rgb(var(--blue-7)/var(--tw-bg-opacity))}.step-done.step-secondary .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--purple-4)/var(--tw-bg-opacity));border-color:rgb(var(--purple-7)/var(--tw-border-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.step-done.step-secondary:after{--tw-bg-opacity:1;background-color:rgb(var(--purple-7)/var(--tw-bg-opacity))}.step-done.step-success .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--green-4)/var(--tw-bg-opacity));border-color:rgb(var(--green-7)/var(--tw-border-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.step-done.step-success:after{--tw-bg-opacity:1;background-color:rgb(var(--green-7)/var(--tw-bg-opacity))}.step-done.step-error .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--red-4)/var(--tw-bg-opacity));border-color:rgb(var(--red-7)/var(--tw-border-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.step-done.step-error:after{--tw-bg-opacity:1;background-color:rgb(var(--red-7)/var(--tw-bg-opacity))}.step-done.step-warning .step-circle{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--yellow-4)/var(--tw-bg-opacity));border-color:rgb(var(--yellow-7)/var(--tw-border-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.step-done.step-warning:after{--tw-bg-opacity:1;background-color:rgb(var(--yellow-7)/var(--tw-bg-opacity))}.kbd{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0px 1.5px 0px rgba(0,0,0,.1);--tw-shadow-colored:0px 1.5px 0px var(--tw-shadow-color);align-items:center;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-color:rgb(var(--gray-6)/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:inline-flex;font-size:.75rem;font-weight:600;height:-moz-fit-content;height:fit-content;justify-content:center;line-height:1rem;padding:.375rem .625rem;white-space:nowrap}.kbd-xs{padding:.125rem .375rem}.kbd-sm,.kbd-xs{font-size:.75rem;line-height:1rem}.kbd-sm{padding:.25rem .5rem}.kbd-md{font-size:.75rem;line-height:1rem;padding:.375rem .625rem}.kbd-lg{font-size:.875rem;line-height:1.25rem;padding:.5rem .75rem}.kbd-xl{font-size:1rem;line-height:1.5rem;padding:.5rem .875rem}@keyframes indeterminate-progress-bar{0%{left:-50%}to{left:100%}}.progress{--tw-bg-opacity:1;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));border-radius:9999px;height:1rem;overflow:hidden;position:relative;width:10rem}.progress::-webkit-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));border-radius:9999px}.progress::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity));border-radius:9999px}.progress::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity));border-radius:9999px}.progress-xs{height:.25rem}.progress-sm{height:.5rem}.progress-md{height:1rem}.progress-lg{height:1.25rem}.progress-xl{height:1.75rem}.progress-indeterminate:after,.progress:indeterminate:after{--tw-bg-opacity:1;--tw-content:"";animation:indeterminate-progress-bar .9s infinite;background-color:rgb(var(--primary)/var(--tw-bg-opacity));border-radius:9999px;bottom:0;content:var(--tw-content);position:absolute;top:0;width:33.333333%}.progress-flat-primary.progress-indeterminate:after,.progress-flat-primary.progress:indeterminate:after,.progress-flat-primary::-webkit-progress-value,.progress-primary.progress-indeterminate:after,.progress-primary.progress:indeterminate:after,.progress-primary::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.progress-flat-secondary.progress-indeterminate:after,.progress-flat-secondary.progress:indeterminate:after,.progress-flat-secondary::-webkit-progress-value,.progress-secondary.progress-indeterminate:after,.progress-secondary.progress:indeterminate:after,.progress-secondary::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.progress-flat-success.progress-indeterminate:after,.progress-flat-success.progress:indeterminate:after,.progress-flat-success::-webkit-progress-value,.progress-success.progress-indeterminate:after,.progress-success.progress:indeterminate:after,.progress-success::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.progress-error.progress-indeterminate:after,.progress-error.progress:indeterminate:after,.progress-error::-webkit-progress-value,.progress-flat-error.progress-indeterminate:after,.progress-flat-error.progress:indeterminate:after,.progress-flat-error::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.progress-flat-warning.progress-indeterminate:after,.progress-flat-warning.progress:indeterminate:after,.progress-flat-warning::-webkit-progress-value,.progress-warning.progress-indeterminate:after,.progress-warning.progress:indeterminate:after,.progress-warning::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.progress-flat-primary.progress-indeterminate,.progress-flat-primary::-webkit-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--blue-5)/var(--tw-bg-opacity))}.progress-flat-secondary.progress-indeterminate,.progress-flat-secondary::-webkit-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--purple-5)/var(--tw-bg-opacity))}.progress-flat-success.progress-indeterminate,.progress-flat-success::-webkit-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--green-5)/var(--tw-bg-opacity))}.progress-flat-error.progress-indeterminate,.progress-flat-error::-webkit-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--red-5)/var(--tw-bg-opacity))}.progress-flat-warning.progress-indeterminate,.progress-flat-warning::-webkit-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--yellow-5)/var(--tw-bg-opacity))}@supports (-moz-appearance:none){.progress-flat-primary{--tw-bg-opacity:1;background-color:rgb(var(--blue-5)/var(--tw-bg-opacity))}.progress-flat-secondary{--tw-bg-opacity:1;background-color:rgb(var(--purple-5)/var(--tw-bg-opacity))}.progress-flat-success{--tw-bg-opacity:1;background-color:rgb(var(--green-5)/var(--tw-bg-opacity))}.progress-flat-error{--tw-bg-opacity:1;background-color:rgb(var(--red-5)/var(--tw-bg-opacity))}.progress-flat-warning{--tw-bg-opacity:1;background-color:rgb(var(--yellow-5)/var(--tw-bg-opacity))}.progress-flat-primary::-moz-progress-bar,.progress-primary::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.progress-flat-secondary::-moz-progress-bar,.progress-secondary::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.progress-flat-success::-moz-progress-bar,.progress-success::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.progress-error::-moz-progress-bar,.progress-flat-error::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.progress-flat-warning::-moz-progress-bar,.progress-warning::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.progress:indeterminate::-moz-progress-bar{background-color:transparent}}.dot{background-color:rgb(var(--gray-8)/var(--tw-bg-opacity));border-radius:50%;display:inline-flex;height:.625rem;line-height:.75rem;min-height:10px;min-width:10px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:.625rem}.dot,.dot-primary{--tw-bg-opacity:1}.dot-primary{background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.dot-secondary{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.dot-success{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.dot-error{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.dot-warning{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.dot-xs{height:.375rem;line-height:8px;min-height:7px;min-width:7px;width:.375rem}.dot-sm{height:.5rem;line-height:9px;min-height:8px;min-width:8px;width:.5rem}.dot-md{height:.625rem;line-height:11px;min-height:10px;min-width:10px;width:.625rem}.dot-lg{height:.75rem;line-height:13px;min-height:12px;min-width:12px;width:.75rem}.dot-xl{height:.875rem;line-height:15px;min-height:14px;min-width:14px;width:.875rem}.form-group{gap:.75rem;width:100%}.form-field,.form-group{display:flex;flex-direction:column}.form-field{gap:.375rem}.form-label{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity));display:flex;flex-direction:row;font-size:.875rem;justify-content:space-between;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.form-label-alt{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity));font-size:.75rem;line-height:1rem}.form-control{display:flex;flex-direction:row;font-size:.875rem;gap:.375rem;line-height:1.25rem;position:relative}.menu{width:100%}.menu,.menu-section{display:flex;flex-direction:column;gap:.5rem}.menu-title{font-size:.75rem;font-weight:400;line-height:1rem}.menu-items{display:flex;flex-direction:column;gap:.375rem}.menu-item{--tw-text-opacity:1;align-items:center;border-radius:.5rem;color:rgb(var(--content1)/var(--tw-text-opacity));cursor:pointer;display:flex;flex-direction:row;font-size:.875rem;gap:.5rem;line-height:1.25rem;padding:.5rem 1rem;transition-duration:.15s;transition-property:transform,opacity,visibility;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;-moz-user-select:none;user-select:none;will-change:transform}.menu-item:hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity))}.menu-item:active{--tw-scale-x:0.97;--tw-scale-y:0.97;--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));transform:translate(var(--tw-translate-x),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))}.menu-item-disabled{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity));cursor:not-allowed;pointer-events:none}.menu-item-disabled:active{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),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))}.menu-item-no-animation{transition-property:none}.menu-item-no-animation:active{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),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))}.menu-item.menu-active{--tw-bg-opacity:1;background-color:rgb(var(--gray-5)/var(--tw-bg-opacity));transition-property:none}.menu-item.menu-active:active{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),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))}.menu-toggle{display:none}.menu-item-collapse{display:grid;grid-template-rows:0fr;overflow:hidden;transition:padding .15s,grid-template-rows .15s}.menu-toggle:checked~.menu-item-collapse{border-style:none;grid-template-rows:1fr}.menu-item:focus-within~.menu-item-collapse{border-style:none;grid-template-rows:1fr}.menu-icon{transition-duration:.3s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.menu-toggle:checked~.menu-item .menu-icon{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),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))}.popover{display:inline-block;position:relative;text-align:left;width:-moz-max-content;width:max-content}.popover-trigger{display:inline-flex}.popover-content{--tw-translate-y:-0.5rem;--tw-translate-x:-50%;--tw-scale-x:.95;--tw-scale-y:.95;--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-color:transparent;border-radius:.75rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:flex;flex-direction:column;opacity:0;outline:2px solid transparent;outline-offset:2px;padding:.5rem;position:absolute;transition-duration:.15s;transition-property:transform,opacity,visibility;transition-timing-function:cubic-bezier(.4,0,.2,1);width:14rem;will-change:transform;z-index:49}.popover-bottom-center,.popover-content{left:50%;right:100%;transform:translate(var(--tw-translate-x),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));transform-origin:top;visibility:hidden}.popover-bottom-center{--tw-translate-y:-0.5rem;--tw-translate-x:-50%;top:100%}.popover-bottom-right{left:0;transform:translate(var(--tw-translate-x),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));transform-origin:top left}.popover-bottom-left,.popover-bottom-right{--tw-translate-y:-0.5rem;--tw-translate-x:0px;visibility:hidden}.popover-bottom-left{left:auto;right:0;transform:translate(var(--tw-translate-x),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));transform-origin:top right}.popover-top-center{--tw-translate-y:0.5rem;--tw-translate-x:-50%;bottom:100%;left:50%;right:100%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom;visibility:hidden}.popover-top-right{margin-left:-50%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom left}.popover-top-left,.popover-top-right{--tw-translate-y:0.5rem;--tw-translate-x:0px;bottom:100%;left:50%;visibility:hidden}.popover-top-left{margin-left:auto;right:0;transform:translate(var(--tw-translate-x),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));transform-origin:bottom right}.popover-left{--tw-translate-y:-50%;--tw-translate-x:0.5rem;bottom:auto;left:auto;right:100%;top:50%;transform:translate(var(--tw-translate-x),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));transform-origin:right;visibility:hidden}.popover-right{--tw-translate-y:-50%;--tw-translate-x:-0.5rem;bottom:auto;left:100%;top:50%;transform:translate(var(--tw-translate-x),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));transform-origin:left;visibility:hidden}.popover-left-bottom{--tw-translate-y:-2.5rem;--tw-translate-x:0.5rem;left:auto;margin-top:0;right:100%;transform:translate(var(--tw-translate-x),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));transform-origin:top right;visibility:hidden}.popover-right-bottom{--tw-translate-y:-2.5rem;--tw-translate-x:-0.5rem;left:100%;transform:translate(var(--tw-translate-x),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));transform-origin:top left;visibility:hidden}.popover-left-top{--tw-translate-y:1.25rem;--tw-translate-x:0.5rem;bottom:0;left:auto;right:100%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom right;visibility:hidden}.popover-right-top{--tw-translate-y:1.25rem;--tw-translate-x:-0.5rem;bottom:0;left:100%;transform:translate(var(--tw-translate-x),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));transform-origin:bottom left;visibility:hidden}.popover .popover-trigger:focus~.popover-content,.popover-hover:hover .popover-trigger~.popover-content,.popover-hover:hover .popover-trigger~.popover-content.popover-bottom-center,.popover-open .popover-bottom-center,.popover-open .popover-content,.popover-trigger:focus~.popover-content.popover-bottom-center,.popover:not(.popover-hover) .popover-bottom-center:where(:focus,:focus-within,:focus-visible),.popover:not(.popover-hover) .popover-content:where(:focus,:focus-within,:focus-visible){--tw-translate-x:-50%;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-top-center,.popover-open .popover-top-center,.popover-trigger:focus~.popover-content.popover-top-center,.popover:not(.popover-hover) .popover-top-center:where(:focus,:focus-within,:focus-visible){--tw-translate-x:-50%;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-bottom-right,.popover-open .popover-bottom-right,.popover-trigger:focus~.popover-content.popover-bottom-right,.popover:not(.popover-hover) .popover-bottom-right:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-bottom-left,.popover-open .popover-bottom-left,.popover-trigger:focus~.popover-content.popover-bottom-left,.popover:not(.popover-hover) .popover-bottom-left:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-left,.popover-open .popover-left,.popover-trigger:focus~.popover-content.popover-left,.popover:not(.popover-hover) .popover-left:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:-50%;--tw-scale-x:1;--tw-scale-y:1;bottom:auto;left:auto;opacity:1;top:50%;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-right,.popover-open .popover-right,.popover-trigger:focus~.popover-content.popover-right,.popover:not(.popover-hover) .popover-right:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:-50%;--tw-scale-x:1;--tw-scale-y:1;bottom:auto;opacity:1;right:auto;top:50%;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-left-bottom,.popover-hover:hover .popover-trigger~.popover-content.popover-right-bottom,.popover-open .popover-left-bottom,.popover-open .popover-right-bottom,.popover-trigger:focus~.popover-content.popover-left-bottom,.popover-trigger:focus~.popover-content.popover-right-bottom,.popover:not(.popover-hover) .popover-left-bottom:where(:focus,:focus-within,:focus-visible),.popover:not(.popover-hover) .popover-right-bottom:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-left-top,.popover-hover:hover .popover-trigger~.popover-content.popover-right-top,.popover-open .popover-left-top,.popover-open .popover-right-top,.popover-trigger:focus~.popover-content.popover-left-top,.popover-trigger:focus~.popover-content.popover-right-top,.popover:not(.popover-hover) .popover-left-top:where(:focus,:focus-within,:focus-visible),.popover:not(.popover-hover) .popover-right-top:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:1.25rem;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-hover:hover .popover-trigger~.popover-content.popover-top-left,.popover-hover:hover .popover-trigger~.popover-content.popover-top-right,.popover-open .popover-top-left,.popover-open .popover-top-right,.popover-trigger:focus~.popover-content.popover-top-left,.popover-trigger:focus~.popover-content.popover-top-right,.popover:not(.popover-hover) .popover-top-left:where(:focus,:focus-within,:focus-visible),.popover:not(.popover-hover) .popover-top-right:where(:focus,:focus-within,:focus-visible){--tw-translate-x:0px;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),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));visibility:visible}.popover-arrow{--tw-bg-opacity:1;background-color:rgb(var(--gray-3)/var(--tw-bg-opacity));border-color:transparent;height:.7rem;position:absolute;width:.7rem}.popover-border .popover-content,.popover-border .popover-content .popover-arrow{--tw-border-opacity:1;border-color:rgb(var(--border)/var(--tw-border-opacity))}.popover-bottom-center .popover-arrow,.popover-content:not(.popover-bottom-center,.popover-top-center,.popover-bottom-right,.popover-bottom-left,.popover-left,.popover-right,.popover-left-bottom,.popover-right-bottom,.popover-left-top,.popover-right-top,.popover-top-right,.popover-top-left) .popover-arrow{border-left-width:1px;border-top-width:1px;left:50%;top:0;transform:translate(-50%,-50%) rotate(45deg)}.popover-top-center .popover-arrow{border-bottom-width:1px;border-right-width:1px;bottom:-.75rem;left:50%;transform:translate(-50%,-50%) rotate(45deg)}.popover-bottom-right .popover-arrow{border-left-width:1px;border-top-width:1px;left:1rem;top:0;transform:translate(50%,-50%) rotate(45deg)}.popover-bottom-left .popover-arrow{border-left-width:1px;border-top-width:1px;right:1rem;top:0;transform:translate(-50%,-50%) rotate(45deg)}.popover-left .popover-arrow{border-right-width:1px;border-top-width:1px;right:0;top:50%;transform:translate(50%,-50%) rotate(45deg)}.popover-right .popover-arrow{border-bottom-width:1px;border-left-width:1px;left:0;top:50%;transform:translate(-50%,-50%) rotate(45deg)}.popover-left-bottom .popover-arrow{border-right-width:1px;border-top-width:1px;right:0;top:1rem;transform:translate(50%,50%) rotate(45deg)}.popover-right-bottom .popover-arrow{border-bottom-width:1px;border-left-width:1px;left:0;top:1rem;transform:translate(-50%,50%) rotate(45deg)}.popover-left-top .popover-arrow{border-right-width:1px;border-top-width:1px;bottom:1rem;right:0;transform:translate(50%,-50%) rotate(45deg)}.popover-right-top .popover-arrow{border-bottom-width:1px;border-left-width:1px;bottom:1rem;left:0;transform:translate(-50%,-50%) rotate(45deg)}.popover-top-right .popover-arrow{border-bottom-width:1px;border-right-width:1px;bottom:-.75rem;left:1rem;transform:translate(50%,-50%) rotate(45deg)}.popover-top-left .popover-arrow{border-bottom-width:1px;border-right-width:1px;bottom:-.75rem;right:1rem;transform:translate(-50%,-50%) rotate(45deg)}.sidebar{--tw-translate-x:0px;--tw-bg-opacity:1;background-color:rgb(var(--gray-2)/var(--tw-bg-opacity));display:flex;flex-direction:column;height:100vh;justify-content:space-between;max-width:18rem;top:0;transform:translate(var(--tw-translate-x),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));width:100%;z-index:55}.sidebar-sticky{position:sticky}.sidebar-fixed-left{left:0;position:fixed}.sidebar-fixed-right{position:fixed;right:0}.sidebar-title{--tw-text-opacity:1;align-items:center;color:rgb(var(--content1)/var(--tw-text-opacity));display:flex;font-weight:600;width:100%}.sidebar-content{height:100%;overflow-y:auto;padding-bottom:1.5rem;padding-top:1.5rem}.sidebar-content,.sidebar-footer{display:flex;flex-direction:column;width:100%}.sidebar-footer{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity))}.sidebar-mobile{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.sidebar-state{display:none}.sidebar-state:checked~.sidebar{--tw-translate-x:0px;margin-left:0;transform:translate(var(--tw-translate-x),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))}html:has(.sidebar-state:checked){overflow:hidden}.sidebar-state:checked~.sidebar-overlay{background-color:rgba(0,0,0,.6);inset:0;opacity:.8;position:fixed;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:50}.spinner-ring{--spinner-color:var(--primary);--spinner-size:40px;--spinner-speed:2s;animation:rotate var(--spinner-speed) linear infinite;height:var(--spinner-size);transform-origin:center;vertical-align:middle;width:var(--spinner-size)}.spinner-ring circle{stroke-dasharray:1,200;stroke-dashoffset:0;stroke-linecap:round;fill:none;stroke:rgb(var(--spinner-color));animation:spinner-ring-stretch calc(var(--spinner-speed)*.75) ease-in-out infinite}@keyframes rotate{to{transform:rotate(1turn)}}@keyframes spinner-ring-stretch{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,200;stroke-dashoffset:-35px}to{stroke-dashoffset:-124px}}.spinner-dot-pulse{--spinner-size:40px;--spinner-speed:1.2s;--spinner-color:var(--primary);align-items:center;display:flex;height:calc(var(--spinner-size*0.27));justify-content:space-between;position:relative;width:var(--spinner-size)}.spinner-dot-pulse:after,.spinner-dot-pulse:before,.spinner-pulse-dot{--tw-scale-x:0;--tw-scale-y:0;--tw-content:"";background-color:rgb(var(--spinner-color));border-radius:50%;content:var(--tw-content);display:block;height:calc(var(--spinner-size)*.18);transform:translate(var(--tw-translate-x),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));width:calc(var(--spinner-size)*.18)}.spinner-dot-pulse:before{animation:spinner-pulse var(--spinner-speed) ease-in-out infinite}.spinner-pulse-dot{animation:spinner-pulse var(--spinner-speed) ease-in-out calc(var(--spinner-speed)*.125) infinite both}.spinner-dot-pulse:after{animation:spinner-pulse var(--spinner-speed) ease-in-out calc(var(--spinner-speed)*.25) infinite}@keyframes spinner-pulse{0%,to{transform:scale(0)}50%{transform:scale(1.5)}}.spinner-wave{--spinner-size:47px;--spinner-speed:1s;--spinner-color:var(--primary);align-items:center;display:flex;flex-flow:row nowrap;height:calc(var(--spinner-size)*.17);justify-content:space-between;padding-top:calc(var(--spinner-size)*.34);width:var(--spinner-size)}.spinner-wave-dot{background-color:rgb(var(--spinner-color));border-radius:50%;flex-shrink:0;height:calc(var(--spinner-size)*.17);width:calc(var(--spinner-size)*.17);will-change:transform}.spinner-wave-dot:first-child{animation:jump var(--spinner-speed) ease-in-out calc(var(--spinner-speed)*-.45) infinite}.spinner-wave-dot:nth-child(2){animation:jump var(--spinner-speed) ease-in-out calc(var(--spinner-speed)*-.3) infinite}.spinner-wave-dot:nth-child(3){animation:jump var(--spinner-speed) ease-in-out calc(var(--spinner-speed)*-.15) infinite}.spinner-wave-dot:nth-child(4){animation:jump var(--spinner-speed) ease-in-out infinite}@keyframes jump{0%,to{transform:translateY(0)}50%{transform:translateY(-200%)}}.spinner-dot-circle{--spinner-size:40px;--spinner-speed:0.9s;--spinner-color:var(--primary);height:var(--spinner-size);position:relative;width:var(--spinner-size)}.spinner-dot,.spinner-dot-circle{align-items:center;display:flex;justify-content:flex-start}.spinner-dot{height:100%;left:0;position:absolute;top:0;width:100%}.spinner-dot:before{--tw-scale-x:0;--tw-scale-y:0;--tw-content:"";animation:pulse calc(var(--spinner-speed)*1.111) ease-in-out infinite;background-color:rgb(var(--spinner-color));border-radius:50%;content:var(--tw-content);height:20%;opacity:.5;width:20%}.spinner-dot:before,.spinner-dot:nth-child(2){transform:translate(var(--tw-translate-x),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))}.spinner-dot:nth-child(2){--tw-rotate:45deg}.spinner-dot:nth-child(2):before{animation-delay:calc(var(--spinner-speed)*-.875)}.spinner-dot:nth-child(3){--tw-rotate:90deg;transform:translate(var(--tw-translate-x),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))}.spinner-dot:nth-child(3):before{animation-delay:calc(var(--spinner-speed)*-.75)}.spinner-dot:nth-child(4){transform:rotate(135deg)}.spinner-dot:nth-child(4):before{animation-delay:calc(var(--spinner-speed)*-.625)}.spinner-dot:nth-child(5){--tw-rotate:180deg;transform:translate(var(--tw-translate-x),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))}.spinner-dot:nth-child(5):before{animation-delay:calc(var(--spinner-speed)*-.5)}.spinner-dot:nth-child(6){transform:rotate(225deg)}.spinner-dot:nth-child(6):before{animation-delay:calc(var(--spinner-speed)*-.375)}.spinner-dot:nth-child(7){transform:rotate(270deg)}.spinner-dot:nth-child(7):before{animation-delay:calc(var(--spinner-speed)*-.25)}.spinner-dot:nth-child(8){transform:rotate(315deg)}.spinner-dot:nth-child(8):before{animation-delay:calc(var(--spinner-speed)*-.125)}@keyframes pulse{0%,to{opacity:.5;transform:scale(0)}50%{opacity:1;transform:scale(1)}}.spinner-circle{--spinner-size:40px;--stroke-width:calc(var(--spinner-size)/7);--accent-opacity:0.25;--spinner-color:var(--primary);--spinner-speed:1s;height:var(--spinner-size);position:relative;width:var(--spinner-size)}.spinner-circle:after,.spinner-circle:before{--tw-rotate:0deg;--tw-content:"";animation:linear var(--spinner-speed) infinite circle-spin;border-radius:50%;border-style:solid;border-width:var(--stroke-width);content:var(--tw-content);inset:0;position:absolute;transform:translate(var(--tw-translate-x),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))}.spinner-circle:before{border-color:rgb(var(--spinner-color)) rgb(var(--spinner-color)) rgb(var(--spinner-color)) transparent;opacity:var(--accent-opacity)}.spinner-circle:after{border-color:transparent transparent transparent rgb(var(--spinner-color))}.spinner-simple{--spinner-size:40px;--stroke-width:calc(var(--spinner-size)/7);--spinner-color:var(--primary);--spinner-speed:1s;--tw-rotate:0deg;animation:linear var(--spinner-speed) infinite circle-spin;border-color:rgb(var(--spinner-color)) rgb(var(--spinner-color)) rgb(var(--spinner-color)) transparent;border-radius:50%;border-style:solid;border-width:var(--stroke-width);height:var(--spinner-size);transform:translate(var(--tw-translate-x),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));width:var(--spinner-size)}@keyframes circle-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spinner-dot-intermittent{--spinner-size:40px;--spinner-color:var(--primary);--spinner-color-opacity:rgb(var(--spinner-color)/0.25);--spinner-speed:0.7s;--calculation-1:calc(var(--spinner-size)*2/3);--calculation-2:calc(var(--spinner-size)*-2/3);animation:flash var(--spinner-speed) ease-out infinite alternate;border-radius:50%;height:calc(var(--spinner-size)/4);margin-left:var(--calculation-1);margin-right:var(--calculation-1);position:relative;width:calc(var(--spinner-size)/4)}@keyframes flash{0%{background-color:var(--spinner-color-opacity);box-shadow:var(--calculation-1) 0 var(--spinner-color-opacity),var(--calculation-2) 0 rgb(var(--spinner-color))}50%{background-color:rgb(var(--spinner-color));box-shadow:var(--calculation-1) 0 var(--spinner-color-opacity),var(--calculation-2) 0 var(--spinner-color-opacity)}to{background-color:var(--spinner-color-opacity);box-shadow:var(--calculation-1) 0 rgb(var(--spinner-color)),var(--calculation-2) 0 var(--spinner-color-opacity)}}.spinner-primary{--spinner-color:var(--primary)}.spinner-secondary{--spinner-color:var(--secondary)}.spinner-success{--spinner-color:var(--success)}.spinner-error{--spinner-color:var(--error)}.spinner-warning{--spinner-color:var(--warning)}.spinner-xs{--spinner-size:20px}.spinner-sm{--spinner-size:30px}.spinner-md{--spinner-size:40px}.spinner-lg{--spinner-size:50px}.spinner-xl{--spinner-size:60px}.navbar{--tw-bg-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);align-items:center;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:flex;padding:.625rem .5rem;width:100%}@media (min-width:640px){.navbar{padding-left:1rem;padding-right:1rem}}.navbar-bordered{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(var(--gray-6)/var(--tw-border-opacity))}.navbar-floating,.navbar-sticky{left:0;position:fixed;right:0;top:0;z-index:50}.navbar-floating{border-radius:.75rem;margin-left:auto;margin-right:auto;margin-top:1.25rem;max-width:80rem}.navbar-floating.navbar-bordered{border-width:1px}.navbar-glass{--tw-backdrop-blur:blur(8px);--tw-backdrop-saturate:saturate(50%);-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);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);background-color:rgb(var(--gray-1)/.7)}.navbar-rounded{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.navbar-no-boxShadow{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.navbar-start{justify-content:flex-start}.navbar-center,.navbar-start{align-items:center;display:flex;gap:.25rem;width:100%}.navbar-center{justify-content:center}.navbar-end{justify-content:flex-end;width:100%}.navbar-brand,.navbar-end{align-items:center;display:flex;gap:.25rem}.navbar-brand{white-space:nowrap}.navbar-item{--tw-text-opacity:1;border-radius:.5rem;color:rgb(var(--content1)/var(--tw-text-opacity));cursor:pointer;padding:.5rem .75rem;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.navbar-item:not(.navbar-active):hover{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity))}.navbar-active{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.navbar:not(:has(.navbar-end)) .navbar-center{align-items:flex-start;justify-content:flex-start}.navbar:not(:has(.navbar-start)) .navbar-center{align-items:center;align-items:flex-end;justify-content:center;justify-content:flex-end}.navbar:not(:has(.navbar-start,.navbar-end)) .navbar-center{align-items:center;justify-content:center}.breadcrumbs{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity));display:flex;flex-direction:row;font-size:.875rem;gap:.5rem;line-height:1.25rem;overflow-x:auto;padding-left:.75rem;padding-right:.75rem}@media (min-width:640px){.breadcrumbs{padding-left:0;padding-right:0}}.breadcrumbs>ul,.breadcrumbs>ul>li>a{align-items:center;display:flex;flex-direction:row}.breadcrumbs>ul{white-space:nowrap}.breadcrumbs>ul>li{align-items:center;cursor:pointer;display:flex;flex-direction:row}.breadcrumbs>ul>:not(li:last-child)>a:hover{text-decoration-line:underline}.breadcrumbs>ul>li+:before{--tw-content:"/";content:var(--tw-content);display:block;margin-left:.5rem;margin-right:.75rem;opacity:.4}.breadcrumbs-active,.breadcrumbs>ul>li:last-child{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.breadcrumbs>ul>li:last-child{cursor:auto}.breadcrumbs>ul>li:first-child{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity));cursor:pointer}.breadcrumbs>ul>li:first-child:hover{text-decoration-line:underline}.drawer-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:0;opacity:0;position:absolute;width:0}html:has(.drawer-toggle:checked){overflow:hidden}.drawer{--tw-translate-x:-100%;--tw-bg-opacity:1;background-color:rgb(var(--gray-1)/var(--tw-bg-opacity));height:100vh;left:0;max-width:20rem;overflow:auto;position:fixed;top:0;transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);width:100%;z-index:9999}.drawer,.drawer-right{transform:translate(var(--tw-translate-x),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))}.drawer-right{--tw-translate-x:100%;left:auto;right:0}.drawer-top{top:0;transform:translateY(-100%)}.drawer-bottom,.drawer-top{bottom:0;height:-moz-fit-content;height:fit-content;max-height:100vh;max-width:100%;width:100%}.drawer-bottom{top:auto;transform:translateY(100%)}.drawer-content{padding:1rem}.drawer-toggle:checked~.drawer{transform:translateX(0)}.overlay{background-color:rgba(0,0,0,.6);height:100vh;left:0;opacity:0;position:fixed;top:0;transition:visibility .15s ease-out,opacity .15s ease-out;visibility:hidden;width:100%;z-index:9998}.drawer-toggle:checked~.overlay{opacity:1;visibility:visible}.link{align-items:center;color:rgb(var(--content1)/var(--tw-text-opacity));cursor:pointer;display:inline-flex;font-size:1rem;line-height:1.5rem;transition-duration:.15s;transition-property:color,background-color,transform,underline}.link,.link:hover{--tw-text-opacity:1}.link:hover{color:rgb(var(--content2)/var(--tw-text-opacity))}.link:focus-visible{outline-color:rgb(var(--gray-6));outline-offset:2px;outline-width:2px}.link-primary{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.link-primary:hover{color:rgb(var(--primary)/.75)}.link-primary:focus-visible{outline-color:rgb(var(--primary))}.link-secondary{--tw-text-opacity:1;color:rgb(var(--secondary)/var(--tw-text-opacity))}.link-secondary:hover{color:rgb(var(--secondary)/.75)}.link-secondary:focus-visible{outline-color:rgb(var(--secondary))}.link-success{--tw-text-opacity:1;color:rgb(var(--success)/var(--tw-text-opacity))}.link-success:hover{color:rgb(var(--success)/.75)}.link-success:focus-visible{outline-color:rgb(var(--success))}.link-error{--tw-text-opacity:1;color:rgb(var(--error)/var(--tw-text-opacity))}.link-error:hover{color:rgb(var(--error)/.75)}.link-error:focus-visible{outline-color:rgb(var(--error))}.link-warning{--tw-text-opacity:1;color:rgb(var(--warning)/var(--tw-text-opacity))}.link-warning:hover{color:rgb(var(--warning)/.75)}.link-warning:focus-visible{outline-color:rgb(var(--warning))}.link-underline,.link-underline-hover:hover{text-decoration-line:underline}.link-ghost{border-radius:1rem;padding:.25rem .5rem}.link-ghost:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--gray-4)/var(--tw-bg-opacity));color:rgb(var(--content1)/var(--tw-text-opacity))}.link-ghost-primary{border-radius:1rem;padding:.25rem .5rem}.link-ghost-primary:hover{--tw-text-opacity:1;background-color:rgb(var(--primary)/.1);color:rgb(var(--primary)/var(--tw-text-opacity))}.link-ghost-secondary{border-radius:1rem;padding:.25rem .5rem}.link-ghost-secondary:hover{--tw-text-opacity:1;background-color:rgb(var(--secondary)/.1);color:rgb(var(--secondary)/var(--tw-text-opacity))}.link-ghost-success{border-radius:1rem;padding:.25rem .5rem}.link-ghost-success:hover{--tw-text-opacity:1;background-color:rgb(var(--success)/.1);color:rgb(var(--success)/var(--tw-text-opacity))}.link-ghost-error{border-radius:1rem;padding:.25rem .5rem}.link-ghost-error:hover{--tw-text-opacity:1;background-color:rgb(var(--error)/.1);color:rgb(var(--error)/var(--tw-text-opacity))}.link-ghost-warning{border-radius:1rem;padding:.25rem .5rem}.link-ghost-warning:hover{--tw-text-opacity:1;background-color:rgb(var(--warning)/.1);color:rgb(var(--warning)/var(--tw-text-opacity))}.border-backgroundPrimary{--tw-border-opacity:1;border-color:rgb(var(--backgroundPrimary)/var(--tw-border-opacity))}.border-backgroundPrimary\/0{border-color:rgb(var(--backgroundPrimary)/0)}.border-backgroundPrimary\/10{border-color:rgb(var(--backgroundPrimary)/.1)}.border-backgroundPrimary\/100{border-color:rgb(var(--backgroundPrimary)/1)}.border-backgroundPrimary\/20{border-color:rgb(var(--backgroundPrimary)/.2)}.border-backgroundPrimary\/25{border-color:rgb(var(--backgroundPrimary)/.25)}.border-backgroundPrimary\/30{border-color:rgb(var(--backgroundPrimary)/.3)}.border-backgroundPrimary\/40{border-color:rgb(var(--backgroundPrimary)/.4)}.border-backgroundPrimary\/5{border-color:rgb(var(--backgroundPrimary)/.05)}.border-backgroundPrimary\/50{border-color:rgb(var(--backgroundPrimary)/.5)}.border-backgroundPrimary\/60{border-color:rgb(var(--backgroundPrimary)/.6)}.border-backgroundPrimary\/70{border-color:rgb(var(--backgroundPrimary)/.7)}.border-backgroundPrimary\/75{border-color:rgb(var(--backgroundPrimary)/.75)}.border-backgroundPrimary\/80{border-color:rgb(var(--backgroundPrimary)/.8)}.border-backgroundPrimary\/90{border-color:rgb(var(--backgroundPrimary)/.9)}.border-backgroundPrimary\/95{border-color:rgb(var(--backgroundPrimary)/.95)}.border-backgroundSecondary{--tw-border-opacity:1;border-color:rgb(var(--backgroundSecondary)/var(--tw-border-opacity))}.border-backgroundSecondary\/0{border-color:rgb(var(--backgroundSecondary)/0)}.border-backgroundSecondary\/10{border-color:rgb(var(--backgroundSecondary)/.1)}.border-backgroundSecondary\/100{border-color:rgb(var(--backgroundSecondary)/1)}.border-backgroundSecondary\/20{border-color:rgb(var(--backgroundSecondary)/.2)}.border-backgroundSecondary\/25{border-color:rgb(var(--backgroundSecondary)/.25)}.border-backgroundSecondary\/30{border-color:rgb(var(--backgroundSecondary)/.3)}.border-backgroundSecondary\/40{border-color:rgb(var(--backgroundSecondary)/.4)}.border-backgroundSecondary\/5{border-color:rgb(var(--backgroundSecondary)/.05)}.border-backgroundSecondary\/50{border-color:rgb(var(--backgroundSecondary)/.5)}.border-backgroundSecondary\/60{border-color:rgb(var(--backgroundSecondary)/.6)}.border-backgroundSecondary\/70{border-color:rgb(var(--backgroundSecondary)/.7)}.border-backgroundSecondary\/75{border-color:rgb(var(--backgroundSecondary)/.75)}.border-backgroundSecondary\/80{border-color:rgb(var(--backgroundSecondary)/.8)}.border-backgroundSecondary\/90{border-color:rgb(var(--backgroundSecondary)/.9)}.border-backgroundSecondary\/95{border-color:rgb(var(--backgroundSecondary)/.95)}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-black\/0{border-color:transparent}.border-black\/10{border-color:rgba(0,0,0,.1)}.border-black\/100{border-color:#000}.border-black\/20{border-color:rgba(0,0,0,.2)}.border-black\/25{border-color:rgba(0,0,0,.25)}.border-black\/30{border-color:rgba(0,0,0,.3)}.border-black\/40{border-color:rgba(0,0,0,.4)}.border-black\/5{border-color:rgba(0,0,0,.05)}.border-black\/50{border-color:rgba(0,0,0,.5)}.border-black\/60{border-color:rgba(0,0,0,.6)}.border-black\/70{border-color:rgba(0,0,0,.7)}.border-black\/75{border-color:rgba(0,0,0,.75)}.border-black\/80{border-color:rgba(0,0,0,.8)}.border-black\/90{border-color:rgba(0,0,0,.9)}.border-black\/95{border-color:rgba(0,0,0,.95)}.border-blackInverted{--tw-border-opacity:1;border-color:rgb(var(--blackInverted)/var(--tw-border-opacity))}.border-blackInverted\/0{border-color:rgb(var(--blackInverted)/0)}.border-blackInverted\/10{border-color:rgb(var(--blackInverted)/.1)}.border-blackInverted\/100{border-color:rgb(var(--blackInverted)/1)}.border-blackInverted\/20{border-color:rgb(var(--blackInverted)/.2)}.border-blackInverted\/25{border-color:rgb(var(--blackInverted)/.25)}.border-blackInverted\/30{border-color:rgb(var(--blackInverted)/.3)}.border-blackInverted\/40{border-color:rgb(var(--blackInverted)/.4)}.border-blackInverted\/5{border-color:rgb(var(--blackInverted)/.05)}.border-blackInverted\/50{border-color:rgb(var(--blackInverted)/.5)}.border-blackInverted\/60{border-color:rgb(var(--blackInverted)/.6)}.border-blackInverted\/70{border-color:rgb(var(--blackInverted)/.7)}.border-blackInverted\/75{border-color:rgb(var(--blackInverted)/.75)}.border-blackInverted\/80{border-color:rgb(var(--blackInverted)/.8)}.border-blackInverted\/90{border-color:rgb(var(--blackInverted)/.9)}.border-blackInverted\/95{border-color:rgb(var(--blackInverted)/.95)}.border-blue-1\/0{border-color:rgb(var(--blue-1)/0)}.border-blue-1\/10{border-color:rgb(var(--blue-1)/.1)}.border-blue-1\/100{border-color:rgb(var(--blue-1)/1)}.border-blue-1\/20{border-color:rgb(var(--blue-1)/.2)}.border-blue-1\/25{border-color:rgb(var(--blue-1)/.25)}.border-blue-1\/30{border-color:rgb(var(--blue-1)/.3)}.border-blue-1\/40{border-color:rgb(var(--blue-1)/.4)}.border-blue-1\/5{border-color:rgb(var(--blue-1)/.05)}.border-blue-1\/50{border-color:rgb(var(--blue-1)/.5)}.border-blue-1\/60{border-color:rgb(var(--blue-1)/.6)}.border-blue-1\/70{border-color:rgb(var(--blue-1)/.7)}.border-blue-1\/75{border-color:rgb(var(--blue-1)/.75)}.border-blue-1\/80{border-color:rgb(var(--blue-1)/.8)}.border-blue-1\/90{border-color:rgb(var(--blue-1)/.9)}.border-blue-1\/95{border-color:rgb(var(--blue-1)/.95)}.border-blue-10\/0{border-color:rgb(var(--blue-10)/0)}.border-blue-10\/10{border-color:rgb(var(--blue-10)/.1)}.border-blue-10\/100{border-color:rgb(var(--blue-10)/1)}.border-blue-10\/20{border-color:rgb(var(--blue-10)/.2)}.border-blue-10\/25{border-color:rgb(var(--blue-10)/.25)}.border-blue-10\/30{border-color:rgb(var(--blue-10)/.3)}.border-blue-10\/40{border-color:rgb(var(--blue-10)/.4)}.border-blue-10\/5{border-color:rgb(var(--blue-10)/.05)}.border-blue-10\/50{border-color:rgb(var(--blue-10)/.5)}.border-blue-10\/60{border-color:rgb(var(--blue-10)/.6)}.border-blue-10\/70{border-color:rgb(var(--blue-10)/.7)}.border-blue-10\/75{border-color:rgb(var(--blue-10)/.75)}.border-blue-10\/80{border-color:rgb(var(--blue-10)/.8)}.border-blue-10\/90{border-color:rgb(var(--blue-10)/.9)}.border-blue-10\/95{border-color:rgb(var(--blue-10)/.95)}.border-blue-2\/0{border-color:rgb(var(--blue-2)/0)}.border-blue-2\/10{border-color:rgb(var(--blue-2)/.1)}.border-blue-2\/100{border-color:rgb(var(--blue-2)/1)}.border-blue-2\/20{border-color:rgb(var(--blue-2)/.2)}.border-blue-2\/25{border-color:rgb(var(--blue-2)/.25)}.border-blue-2\/30{border-color:rgb(var(--blue-2)/.3)}.border-blue-2\/40{border-color:rgb(var(--blue-2)/.4)}.border-blue-2\/5{border-color:rgb(var(--blue-2)/.05)}.border-blue-2\/50{border-color:rgb(var(--blue-2)/.5)}.border-blue-2\/60{border-color:rgb(var(--blue-2)/.6)}.border-blue-2\/70{border-color:rgb(var(--blue-2)/.7)}.border-blue-2\/75{border-color:rgb(var(--blue-2)/.75)}.border-blue-2\/80{border-color:rgb(var(--blue-2)/.8)}.border-blue-2\/90{border-color:rgb(var(--blue-2)/.9)}.border-blue-2\/95{border-color:rgb(var(--blue-2)/.95)}.border-blue-3\/0{border-color:rgb(var(--blue-3)/0)}.border-blue-3\/10{border-color:rgb(var(--blue-3)/.1)}.border-blue-3\/100{border-color:rgb(var(--blue-3)/1)}.border-blue-3\/20{border-color:rgb(var(--blue-3)/.2)}.border-blue-3\/25{border-color:rgb(var(--blue-3)/.25)}.border-blue-3\/30{border-color:rgb(var(--blue-3)/.3)}.border-blue-3\/40{border-color:rgb(var(--blue-3)/.4)}.border-blue-3\/5{border-color:rgb(var(--blue-3)/.05)}.border-blue-3\/50{border-color:rgb(var(--blue-3)/.5)}.border-blue-3\/60{border-color:rgb(var(--blue-3)/.6)}.border-blue-3\/70{border-color:rgb(var(--blue-3)/.7)}.border-blue-3\/75{border-color:rgb(var(--blue-3)/.75)}.border-blue-3\/80{border-color:rgb(var(--blue-3)/.8)}.border-blue-3\/90{border-color:rgb(var(--blue-3)/.9)}.border-blue-3\/95{border-color:rgb(var(--blue-3)/.95)}.border-blue-4\/0{border-color:rgb(var(--blue-4)/0)}.border-blue-4\/10{border-color:rgb(var(--blue-4)/.1)}.border-blue-4\/100{border-color:rgb(var(--blue-4)/1)}.border-blue-4\/20{border-color:rgb(var(--blue-4)/.2)}.border-blue-4\/25{border-color:rgb(var(--blue-4)/.25)}.border-blue-4\/30{border-color:rgb(var(--blue-4)/.3)}.border-blue-4\/40{border-color:rgb(var(--blue-4)/.4)}.border-blue-4\/5{border-color:rgb(var(--blue-4)/.05)}.border-blue-4\/50{border-color:rgb(var(--blue-4)/.5)}.border-blue-4\/60{border-color:rgb(var(--blue-4)/.6)}.border-blue-4\/70{border-color:rgb(var(--blue-4)/.7)}.border-blue-4\/75{border-color:rgb(var(--blue-4)/.75)}.border-blue-4\/80{border-color:rgb(var(--blue-4)/.8)}.border-blue-4\/90{border-color:rgb(var(--blue-4)/.9)}.border-blue-4\/95{border-color:rgb(var(--blue-4)/.95)}.border-blue-5\/0{border-color:rgb(var(--blue-5)/0)}.border-blue-5\/10{border-color:rgb(var(--blue-5)/.1)}.border-blue-5\/100{border-color:rgb(var(--blue-5)/1)}.border-blue-5\/20{border-color:rgb(var(--blue-5)/.2)}.border-blue-5\/25{border-color:rgb(var(--blue-5)/.25)}.border-blue-5\/30{border-color:rgb(var(--blue-5)/.3)}.border-blue-5\/40{border-color:rgb(var(--blue-5)/.4)}.border-blue-5\/5{border-color:rgb(var(--blue-5)/.05)}.border-blue-5\/50{border-color:rgb(var(--blue-5)/.5)}.border-blue-5\/60{border-color:rgb(var(--blue-5)/.6)}.border-blue-5\/70{border-color:rgb(var(--blue-5)/.7)}.border-blue-5\/75{border-color:rgb(var(--blue-5)/.75)}.border-blue-5\/80{border-color:rgb(var(--blue-5)/.8)}.border-blue-5\/90{border-color:rgb(var(--blue-5)/.9)}.border-blue-5\/95{border-color:rgb(var(--blue-5)/.95)}.border-blue-6\/0{border-color:rgb(var(--blue-6)/0)}.border-blue-6\/10{border-color:rgb(var(--blue-6)/.1)}.border-blue-6\/100{border-color:rgb(var(--blue-6)/1)}.border-blue-6\/20{border-color:rgb(var(--blue-6)/.2)}.border-blue-6\/25{border-color:rgb(var(--blue-6)/.25)}.border-blue-6\/30{border-color:rgb(var(--blue-6)/.3)}.border-blue-6\/40{border-color:rgb(var(--blue-6)/.4)}.border-blue-6\/5{border-color:rgb(var(--blue-6)/.05)}.border-blue-6\/50{border-color:rgb(var(--blue-6)/.5)}.border-blue-6\/60{border-color:rgb(var(--blue-6)/.6)}.border-blue-6\/70{border-color:rgb(var(--blue-6)/.7)}.border-blue-6\/75{border-color:rgb(var(--blue-6)/.75)}.border-blue-6\/80{border-color:rgb(var(--blue-6)/.8)}.border-blue-6\/90{border-color:rgb(var(--blue-6)/.9)}.border-blue-6\/95{border-color:rgb(var(--blue-6)/.95)}.border-blue-7\/0{border-color:rgb(var(--blue-7)/0)}.border-blue-7\/10{border-color:rgb(var(--blue-7)/.1)}.border-blue-7\/100{border-color:rgb(var(--blue-7)/1)}.border-blue-7\/20{border-color:rgb(var(--blue-7)/.2)}.border-blue-7\/25{border-color:rgb(var(--blue-7)/.25)}.border-blue-7\/30{border-color:rgb(var(--blue-7)/.3)}.border-blue-7\/40{border-color:rgb(var(--blue-7)/.4)}.border-blue-7\/5{border-color:rgb(var(--blue-7)/.05)}.border-blue-7\/50{border-color:rgb(var(--blue-7)/.5)}.border-blue-7\/60{border-color:rgb(var(--blue-7)/.6)}.border-blue-7\/70{border-color:rgb(var(--blue-7)/.7)}.border-blue-7\/75{border-color:rgb(var(--blue-7)/.75)}.border-blue-7\/80{border-color:rgb(var(--blue-7)/.8)}.border-blue-7\/90{border-color:rgb(var(--blue-7)/.9)}.border-blue-7\/95{border-color:rgb(var(--blue-7)/.95)}.border-blue-8\/0{border-color:rgb(var(--blue-8)/0)}.border-blue-8\/10{border-color:rgb(var(--blue-8)/.1)}.border-blue-8\/100{border-color:rgb(var(--blue-8)/1)}.border-blue-8\/20{border-color:rgb(var(--blue-8)/.2)}.border-blue-8\/25{border-color:rgb(var(--blue-8)/.25)}.border-blue-8\/30{border-color:rgb(var(--blue-8)/.3)}.border-blue-8\/40{border-color:rgb(var(--blue-8)/.4)}.border-blue-8\/5{border-color:rgb(var(--blue-8)/.05)}.border-blue-8\/50{border-color:rgb(var(--blue-8)/.5)}.border-blue-8\/60{border-color:rgb(var(--blue-8)/.6)}.border-blue-8\/70{border-color:rgb(var(--blue-8)/.7)}.border-blue-8\/75{border-color:rgb(var(--blue-8)/.75)}.border-blue-8\/80{border-color:rgb(var(--blue-8)/.8)}.border-blue-8\/90{border-color:rgb(var(--blue-8)/.9)}.border-blue-8\/95{border-color:rgb(var(--blue-8)/.95)}.border-blue-9\/0{border-color:rgb(var(--blue-9)/0)}.border-blue-9\/10{border-color:rgb(var(--blue-9)/.1)}.border-blue-9\/100{border-color:rgb(var(--blue-9)/1)}.border-blue-9\/20{border-color:rgb(var(--blue-9)/.2)}.border-blue-9\/25{border-color:rgb(var(--blue-9)/.25)}.border-blue-9\/30{border-color:rgb(var(--blue-9)/.3)}.border-blue-9\/40{border-color:rgb(var(--blue-9)/.4)}.border-blue-9\/5{border-color:rgb(var(--blue-9)/.05)}.border-blue-9\/50{border-color:rgb(var(--blue-9)/.5)}.border-blue-9\/60{border-color:rgb(var(--blue-9)/.6)}.border-blue-9\/70{border-color:rgb(var(--blue-9)/.7)}.border-blue-9\/75{border-color:rgb(var(--blue-9)/.75)}.border-blue-9\/80{border-color:rgb(var(--blue-9)/.8)}.border-blue-9\/90{border-color:rgb(var(--blue-9)/.9)}.border-blue-9\/95{border-color:rgb(var(--blue-9)/.95)}.border-border{--tw-border-opacity:1;border-color:rgb(var(--border)/var(--tw-border-opacity))}.border-border\/0{border-color:rgb(var(--border)/0)}.border-border\/10{border-color:rgb(var(--border)/.1)}.border-border\/100{border-color:rgb(var(--border)/1)}.border-border\/20{border-color:rgb(var(--border)/.2)}.border-border\/25{border-color:rgb(var(--border)/.25)}.border-border\/30{border-color:rgb(var(--border)/.3)}.border-border\/40{border-color:rgb(var(--border)/.4)}.border-border\/5{border-color:rgb(var(--border)/.05)}.border-border\/50{border-color:rgb(var(--border)/.5)}.border-border\/60{border-color:rgb(var(--border)/.6)}.border-border\/70{border-color:rgb(var(--border)/.7)}.border-border\/75{border-color:rgb(var(--border)/.75)}.border-border\/80{border-color:rgb(var(--border)/.8)}.border-border\/90{border-color:rgb(var(--border)/.9)}.border-border\/95{border-color:rgb(var(--border)/.95)}.border-content1{--tw-border-opacity:1;border-color:rgb(var(--content1)/var(--tw-border-opacity))}.border-content1\/0{border-color:rgb(var(--content1)/0)}.border-content1\/10{border-color:rgb(var(--content1)/.1)}.border-content1\/100{border-color:rgb(var(--content1)/1)}.border-content1\/20{border-color:rgb(var(--content1)/.2)}.border-content1\/25{border-color:rgb(var(--content1)/.25)}.border-content1\/30{border-color:rgb(var(--content1)/.3)}.border-content1\/40{border-color:rgb(var(--content1)/.4)}.border-content1\/5{border-color:rgb(var(--content1)/.05)}.border-content1\/50{border-color:rgb(var(--content1)/.5)}.border-content1\/60{border-color:rgb(var(--content1)/.6)}.border-content1\/70{border-color:rgb(var(--content1)/.7)}.border-content1\/75{border-color:rgb(var(--content1)/.75)}.border-content1\/80{border-color:rgb(var(--content1)/.8)}.border-content1\/90{border-color:rgb(var(--content1)/.9)}.border-content1\/95{border-color:rgb(var(--content1)/.95)}.border-content2{--tw-border-opacity:1;border-color:rgb(var(--content2)/var(--tw-border-opacity))}.border-content2\/0{border-color:rgb(var(--content2)/0)}.border-content2\/10{border-color:rgb(var(--content2)/.1)}.border-content2\/100{border-color:rgb(var(--content2)/1)}.border-content2\/20{border-color:rgb(var(--content2)/.2)}.border-content2\/25{border-color:rgb(var(--content2)/.25)}.border-content2\/30{border-color:rgb(var(--content2)/.3)}.border-content2\/40{border-color:rgb(var(--content2)/.4)}.border-content2\/5{border-color:rgb(var(--content2)/.05)}.border-content2\/50{border-color:rgb(var(--content2)/.5)}.border-content2\/60{border-color:rgb(var(--content2)/.6)}.border-content2\/70{border-color:rgb(var(--content2)/.7)}.border-content2\/75{border-color:rgb(var(--content2)/.75)}.border-content2\/80{border-color:rgb(var(--content2)/.8)}.border-content2\/90{border-color:rgb(var(--content2)/.9)}.border-content2\/95{border-color:rgb(var(--content2)/.95)}.border-content3{--tw-border-opacity:1;border-color:rgb(var(--content3)/var(--tw-border-opacity))}.border-content3\/0{border-color:rgb(var(--content3)/0)}.border-content3\/10{border-color:rgb(var(--content3)/.1)}.border-content3\/100{border-color:rgb(var(--content3)/1)}.border-content3\/20{border-color:rgb(var(--content3)/.2)}.border-content3\/25{border-color:rgb(var(--content3)/.25)}.border-content3\/30{border-color:rgb(var(--content3)/.3)}.border-content3\/40{border-color:rgb(var(--content3)/.4)}.border-content3\/5{border-color:rgb(var(--content3)/.05)}.border-content3\/50{border-color:rgb(var(--content3)/.5)}.border-content3\/60{border-color:rgb(var(--content3)/.6)}.border-content3\/70{border-color:rgb(var(--content3)/.7)}.border-content3\/75{border-color:rgb(var(--content3)/.75)}.border-content3\/80{border-color:rgb(var(--content3)/.8)}.border-content3\/90{border-color:rgb(var(--content3)/.9)}.border-content3\/95{border-color:rgb(var(--content3)/.95)}.border-cyan-1\/0{border-color:rgb(var(--cyan-1)/0)}.border-cyan-1\/10{border-color:rgb(var(--cyan-1)/.1)}.border-cyan-1\/100{border-color:rgb(var(--cyan-1)/1)}.border-cyan-1\/20{border-color:rgb(var(--cyan-1)/.2)}.border-cyan-1\/25{border-color:rgb(var(--cyan-1)/.25)}.border-cyan-1\/30{border-color:rgb(var(--cyan-1)/.3)}.border-cyan-1\/40{border-color:rgb(var(--cyan-1)/.4)}.border-cyan-1\/5{border-color:rgb(var(--cyan-1)/.05)}.border-cyan-1\/50{border-color:rgb(var(--cyan-1)/.5)}.border-cyan-1\/60{border-color:rgb(var(--cyan-1)/.6)}.border-cyan-1\/70{border-color:rgb(var(--cyan-1)/.7)}.border-cyan-1\/75{border-color:rgb(var(--cyan-1)/.75)}.border-cyan-1\/80{border-color:rgb(var(--cyan-1)/.8)}.border-cyan-1\/90{border-color:rgb(var(--cyan-1)/.9)}.border-cyan-1\/95{border-color:rgb(var(--cyan-1)/.95)}.border-cyan-10\/0{border-color:rgb(var(--cyan-10)/0)}.border-cyan-10\/10{border-color:rgb(var(--cyan-10)/.1)}.border-cyan-10\/100{border-color:rgb(var(--cyan-10)/1)}.border-cyan-10\/20{border-color:rgb(var(--cyan-10)/.2)}.border-cyan-10\/25{border-color:rgb(var(--cyan-10)/.25)}.border-cyan-10\/30{border-color:rgb(var(--cyan-10)/.3)}.border-cyan-10\/40{border-color:rgb(var(--cyan-10)/.4)}.border-cyan-10\/5{border-color:rgb(var(--cyan-10)/.05)}.border-cyan-10\/50{border-color:rgb(var(--cyan-10)/.5)}.border-cyan-10\/60{border-color:rgb(var(--cyan-10)/.6)}.border-cyan-10\/70{border-color:rgb(var(--cyan-10)/.7)}.border-cyan-10\/75{border-color:rgb(var(--cyan-10)/.75)}.border-cyan-10\/80{border-color:rgb(var(--cyan-10)/.8)}.border-cyan-10\/90{border-color:rgb(var(--cyan-10)/.9)}.border-cyan-10\/95{border-color:rgb(var(--cyan-10)/.95)}.border-cyan-2\/0{border-color:rgb(var(--cyan-2)/0)}.border-cyan-2\/10{border-color:rgb(var(--cyan-2)/.1)}.border-cyan-2\/100{border-color:rgb(var(--cyan-2)/1)}.border-cyan-2\/20{border-color:rgb(var(--cyan-2)/.2)}.border-cyan-2\/25{border-color:rgb(var(--cyan-2)/.25)}.border-cyan-2\/30{border-color:rgb(var(--cyan-2)/.3)}.border-cyan-2\/40{border-color:rgb(var(--cyan-2)/.4)}.border-cyan-2\/5{border-color:rgb(var(--cyan-2)/.05)}.border-cyan-2\/50{border-color:rgb(var(--cyan-2)/.5)}.border-cyan-2\/60{border-color:rgb(var(--cyan-2)/.6)}.border-cyan-2\/70{border-color:rgb(var(--cyan-2)/.7)}.border-cyan-2\/75{border-color:rgb(var(--cyan-2)/.75)}.border-cyan-2\/80{border-color:rgb(var(--cyan-2)/.8)}.border-cyan-2\/90{border-color:rgb(var(--cyan-2)/.9)}.border-cyan-2\/95{border-color:rgb(var(--cyan-2)/.95)}.border-cyan-3\/0{border-color:rgb(var(--cyan-3)/0)}.border-cyan-3\/10{border-color:rgb(var(--cyan-3)/.1)}.border-cyan-3\/100{border-color:rgb(var(--cyan-3)/1)}.border-cyan-3\/20{border-color:rgb(var(--cyan-3)/.2)}.border-cyan-3\/25{border-color:rgb(var(--cyan-3)/.25)}.border-cyan-3\/30{border-color:rgb(var(--cyan-3)/.3)}.border-cyan-3\/40{border-color:rgb(var(--cyan-3)/.4)}.border-cyan-3\/5{border-color:rgb(var(--cyan-3)/.05)}.border-cyan-3\/50{border-color:rgb(var(--cyan-3)/.5)}.border-cyan-3\/60{border-color:rgb(var(--cyan-3)/.6)}.border-cyan-3\/70{border-color:rgb(var(--cyan-3)/.7)}.border-cyan-3\/75{border-color:rgb(var(--cyan-3)/.75)}.border-cyan-3\/80{border-color:rgb(var(--cyan-3)/.8)}.border-cyan-3\/90{border-color:rgb(var(--cyan-3)/.9)}.border-cyan-3\/95{border-color:rgb(var(--cyan-3)/.95)}.border-cyan-4\/0{border-color:rgb(var(--cyan-4)/0)}.border-cyan-4\/10{border-color:rgb(var(--cyan-4)/.1)}.border-cyan-4\/100{border-color:rgb(var(--cyan-4)/1)}.border-cyan-4\/20{border-color:rgb(var(--cyan-4)/.2)}.border-cyan-4\/25{border-color:rgb(var(--cyan-4)/.25)}.border-cyan-4\/30{border-color:rgb(var(--cyan-4)/.3)}.border-cyan-4\/40{border-color:rgb(var(--cyan-4)/.4)}.border-cyan-4\/5{border-color:rgb(var(--cyan-4)/.05)}.border-cyan-4\/50{border-color:rgb(var(--cyan-4)/.5)}.border-cyan-4\/60{border-color:rgb(var(--cyan-4)/.6)}.border-cyan-4\/70{border-color:rgb(var(--cyan-4)/.7)}.border-cyan-4\/75{border-color:rgb(var(--cyan-4)/.75)}.border-cyan-4\/80{border-color:rgb(var(--cyan-4)/.8)}.border-cyan-4\/90{border-color:rgb(var(--cyan-4)/.9)}.border-cyan-4\/95{border-color:rgb(var(--cyan-4)/.95)}.border-cyan-5\/0{border-color:rgb(var(--cyan-5)/0)}.border-cyan-5\/10{border-color:rgb(var(--cyan-5)/.1)}.border-cyan-5\/100{border-color:rgb(var(--cyan-5)/1)}.border-cyan-5\/20{border-color:rgb(var(--cyan-5)/.2)}.border-cyan-5\/25{border-color:rgb(var(--cyan-5)/.25)}.border-cyan-5\/30{border-color:rgb(var(--cyan-5)/.3)}.border-cyan-5\/40{border-color:rgb(var(--cyan-5)/.4)}.border-cyan-5\/5{border-color:rgb(var(--cyan-5)/.05)}.border-cyan-5\/50{border-color:rgb(var(--cyan-5)/.5)}.border-cyan-5\/60{border-color:rgb(var(--cyan-5)/.6)}.border-cyan-5\/70{border-color:rgb(var(--cyan-5)/.7)}.border-cyan-5\/75{border-color:rgb(var(--cyan-5)/.75)}.border-cyan-5\/80{border-color:rgb(var(--cyan-5)/.8)}.border-cyan-5\/90{border-color:rgb(var(--cyan-5)/.9)}.border-cyan-5\/95{border-color:rgb(var(--cyan-5)/.95)}.border-cyan-6\/0{border-color:rgb(var(--cyan-6)/0)}.border-cyan-6\/10{border-color:rgb(var(--cyan-6)/.1)}.border-cyan-6\/100{border-color:rgb(var(--cyan-6)/1)}.border-cyan-6\/20{border-color:rgb(var(--cyan-6)/.2)}.border-cyan-6\/25{border-color:rgb(var(--cyan-6)/.25)}.border-cyan-6\/30{border-color:rgb(var(--cyan-6)/.3)}.border-cyan-6\/40{border-color:rgb(var(--cyan-6)/.4)}.border-cyan-6\/5{border-color:rgb(var(--cyan-6)/.05)}.border-cyan-6\/50{border-color:rgb(var(--cyan-6)/.5)}.border-cyan-6\/60{border-color:rgb(var(--cyan-6)/.6)}.border-cyan-6\/70{border-color:rgb(var(--cyan-6)/.7)}.border-cyan-6\/75{border-color:rgb(var(--cyan-6)/.75)}.border-cyan-6\/80{border-color:rgb(var(--cyan-6)/.8)}.border-cyan-6\/90{border-color:rgb(var(--cyan-6)/.9)}.border-cyan-6\/95{border-color:rgb(var(--cyan-6)/.95)}.border-cyan-7\/0{border-color:rgb(var(--cyan-7)/0)}.border-cyan-7\/10{border-color:rgb(var(--cyan-7)/.1)}.border-cyan-7\/100{border-color:rgb(var(--cyan-7)/1)}.border-cyan-7\/20{border-color:rgb(var(--cyan-7)/.2)}.border-cyan-7\/25{border-color:rgb(var(--cyan-7)/.25)}.border-cyan-7\/30{border-color:rgb(var(--cyan-7)/.3)}.border-cyan-7\/40{border-color:rgb(var(--cyan-7)/.4)}.border-cyan-7\/5{border-color:rgb(var(--cyan-7)/.05)}.border-cyan-7\/50{border-color:rgb(var(--cyan-7)/.5)}.border-cyan-7\/60{border-color:rgb(var(--cyan-7)/.6)}.border-cyan-7\/70{border-color:rgb(var(--cyan-7)/.7)}.border-cyan-7\/75{border-color:rgb(var(--cyan-7)/.75)}.border-cyan-7\/80{border-color:rgb(var(--cyan-7)/.8)}.border-cyan-7\/90{border-color:rgb(var(--cyan-7)/.9)}.border-cyan-7\/95{border-color:rgb(var(--cyan-7)/.95)}.border-cyan-8\/0{border-color:rgb(var(--cyan-8)/0)}.border-cyan-8\/10{border-color:rgb(var(--cyan-8)/.1)}.border-cyan-8\/100{border-color:rgb(var(--cyan-8)/1)}.border-cyan-8\/20{border-color:rgb(var(--cyan-8)/.2)}.border-cyan-8\/25{border-color:rgb(var(--cyan-8)/.25)}.border-cyan-8\/30{border-color:rgb(var(--cyan-8)/.3)}.border-cyan-8\/40{border-color:rgb(var(--cyan-8)/.4)}.border-cyan-8\/5{border-color:rgb(var(--cyan-8)/.05)}.border-cyan-8\/50{border-color:rgb(var(--cyan-8)/.5)}.border-cyan-8\/60{border-color:rgb(var(--cyan-8)/.6)}.border-cyan-8\/70{border-color:rgb(var(--cyan-8)/.7)}.border-cyan-8\/75{border-color:rgb(var(--cyan-8)/.75)}.border-cyan-8\/80{border-color:rgb(var(--cyan-8)/.8)}.border-cyan-8\/90{border-color:rgb(var(--cyan-8)/.9)}.border-cyan-8\/95{border-color:rgb(var(--cyan-8)/.95)}.border-cyan-9\/0{border-color:rgb(var(--cyan-9)/0)}.border-cyan-9\/10{border-color:rgb(var(--cyan-9)/.1)}.border-cyan-9\/100{border-color:rgb(var(--cyan-9)/1)}.border-cyan-9\/20{border-color:rgb(var(--cyan-9)/.2)}.border-cyan-9\/25{border-color:rgb(var(--cyan-9)/.25)}.border-cyan-9\/30{border-color:rgb(var(--cyan-9)/.3)}.border-cyan-9\/40{border-color:rgb(var(--cyan-9)/.4)}.border-cyan-9\/5{border-color:rgb(var(--cyan-9)/.05)}.border-cyan-9\/50{border-color:rgb(var(--cyan-9)/.5)}.border-cyan-9\/60{border-color:rgb(var(--cyan-9)/.6)}.border-cyan-9\/70{border-color:rgb(var(--cyan-9)/.7)}.border-cyan-9\/75{border-color:rgb(var(--cyan-9)/.75)}.border-cyan-9\/80{border-color:rgb(var(--cyan-9)/.8)}.border-cyan-9\/90{border-color:rgb(var(--cyan-9)/.9)}.border-cyan-9\/95{border-color:rgb(var(--cyan-9)/.95)}.border-error{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.border-error\/0{border-color:rgb(var(--error)/0)}.border-error\/10{border-color:rgb(var(--error)/.1)}.border-error\/100{border-color:rgb(var(--error)/1)}.border-error\/20{border-color:rgb(var(--error)/.2)}.border-error\/25{border-color:rgb(var(--error)/.25)}.border-error\/30{border-color:rgb(var(--error)/.3)}.border-error\/40{border-color:rgb(var(--error)/.4)}.border-error\/5{border-color:rgb(var(--error)/.05)}.border-error\/50{border-color:rgb(var(--error)/.5)}.border-error\/60{border-color:rgb(var(--error)/.6)}.border-error\/70{border-color:rgb(var(--error)/.7)}.border-error\/75{border-color:rgb(var(--error)/.75)}.border-error\/80{border-color:rgb(var(--error)/.8)}.border-error\/90{border-color:rgb(var(--error)/.9)}.border-error\/95{border-color:rgb(var(--error)/.95)}.border-gray-1\/0{border-color:rgb(var(--gray-1)/0)}.border-gray-1\/10{border-color:rgb(var(--gray-1)/.1)}.border-gray-1\/100{border-color:rgb(var(--gray-1)/1)}.border-gray-1\/20{border-color:rgb(var(--gray-1)/.2)}.border-gray-1\/25{border-color:rgb(var(--gray-1)/.25)}.border-gray-1\/30{border-color:rgb(var(--gray-1)/.3)}.border-gray-1\/40{border-color:rgb(var(--gray-1)/.4)}.border-gray-1\/5{border-color:rgb(var(--gray-1)/.05)}.border-gray-1\/50{border-color:rgb(var(--gray-1)/.5)}.border-gray-1\/60{border-color:rgb(var(--gray-1)/.6)}.border-gray-1\/70{border-color:rgb(var(--gray-1)/.7)}.border-gray-1\/75{border-color:rgb(var(--gray-1)/.75)}.border-gray-1\/80{border-color:rgb(var(--gray-1)/.8)}.border-gray-1\/90{border-color:rgb(var(--gray-1)/.9)}.border-gray-1\/95{border-color:rgb(var(--gray-1)/.95)}.border-gray-10\/0{border-color:rgb(var(--gray-10)/0)}.border-gray-10\/10{border-color:rgb(var(--gray-10)/.1)}.border-gray-10\/100{border-color:rgb(var(--gray-10)/1)}.border-gray-10\/20{border-color:rgb(var(--gray-10)/.2)}.border-gray-10\/25{border-color:rgb(var(--gray-10)/.25)}.border-gray-10\/30{border-color:rgb(var(--gray-10)/.3)}.border-gray-10\/40{border-color:rgb(var(--gray-10)/.4)}.border-gray-10\/5{border-color:rgb(var(--gray-10)/.05)}.border-gray-10\/50{border-color:rgb(var(--gray-10)/.5)}.border-gray-10\/60{border-color:rgb(var(--gray-10)/.6)}.border-gray-10\/70{border-color:rgb(var(--gray-10)/.7)}.border-gray-10\/75{border-color:rgb(var(--gray-10)/.75)}.border-gray-10\/80{border-color:rgb(var(--gray-10)/.8)}.border-gray-10\/90{border-color:rgb(var(--gray-10)/.9)}.border-gray-10\/95{border-color:rgb(var(--gray-10)/.95)}.border-gray-2\/0{border-color:rgb(var(--gray-2)/0)}.border-gray-2\/10{border-color:rgb(var(--gray-2)/.1)}.border-gray-2\/100{border-color:rgb(var(--gray-2)/1)}.border-gray-2\/20{border-color:rgb(var(--gray-2)/.2)}.border-gray-2\/25{border-color:rgb(var(--gray-2)/.25)}.border-gray-2\/30{border-color:rgb(var(--gray-2)/.3)}.border-gray-2\/40{border-color:rgb(var(--gray-2)/.4)}.border-gray-2\/5{border-color:rgb(var(--gray-2)/.05)}.border-gray-2\/50{border-color:rgb(var(--gray-2)/.5)}.border-gray-2\/60{border-color:rgb(var(--gray-2)/.6)}.border-gray-2\/70{border-color:rgb(var(--gray-2)/.7)}.border-gray-2\/75{border-color:rgb(var(--gray-2)/.75)}.border-gray-2\/80{border-color:rgb(var(--gray-2)/.8)}.border-gray-2\/90{border-color:rgb(var(--gray-2)/.9)}.border-gray-2\/95{border-color:rgb(var(--gray-2)/.95)}.border-gray-3\/0{border-color:rgb(var(--gray-3)/0)}.border-gray-3\/10{border-color:rgb(var(--gray-3)/.1)}.border-gray-3\/100{border-color:rgb(var(--gray-3)/1)}.border-gray-3\/20{border-color:rgb(var(--gray-3)/.2)}.border-gray-3\/25{border-color:rgb(var(--gray-3)/.25)}.border-gray-3\/30{border-color:rgb(var(--gray-3)/.3)}.border-gray-3\/40{border-color:rgb(var(--gray-3)/.4)}.border-gray-3\/5{border-color:rgb(var(--gray-3)/.05)}.border-gray-3\/50{border-color:rgb(var(--gray-3)/.5)}.border-gray-3\/60{border-color:rgb(var(--gray-3)/.6)}.border-gray-3\/70{border-color:rgb(var(--gray-3)/.7)}.border-gray-3\/75{border-color:rgb(var(--gray-3)/.75)}.border-gray-3\/80{border-color:rgb(var(--gray-3)/.8)}.border-gray-3\/90{border-color:rgb(var(--gray-3)/.9)}.border-gray-3\/95{border-color:rgb(var(--gray-3)/.95)}.border-gray-4\/0{border-color:rgb(var(--gray-4)/0)}.border-gray-4\/10{border-color:rgb(var(--gray-4)/.1)}.border-gray-4\/100{border-color:rgb(var(--gray-4)/1)}.border-gray-4\/20{border-color:rgb(var(--gray-4)/.2)}.border-gray-4\/25{border-color:rgb(var(--gray-4)/.25)}.border-gray-4\/30{border-color:rgb(var(--gray-4)/.3)}.border-gray-4\/40{border-color:rgb(var(--gray-4)/.4)}.border-gray-4\/5{border-color:rgb(var(--gray-4)/.05)}.border-gray-4\/50{border-color:rgb(var(--gray-4)/.5)}.border-gray-4\/60{border-color:rgb(var(--gray-4)/.6)}.border-gray-4\/70{border-color:rgb(var(--gray-4)/.7)}.border-gray-4\/75{border-color:rgb(var(--gray-4)/.75)}.border-gray-4\/80{border-color:rgb(var(--gray-4)/.8)}.border-gray-4\/90{border-color:rgb(var(--gray-4)/.9)}.border-gray-4\/95{border-color:rgb(var(--gray-4)/.95)}.border-gray-5\/0{border-color:rgb(var(--gray-5)/0)}.border-gray-5\/10{border-color:rgb(var(--gray-5)/.1)}.border-gray-5\/100{border-color:rgb(var(--gray-5)/1)}.border-gray-5\/20{border-color:rgb(var(--gray-5)/.2)}.border-gray-5\/25{border-color:rgb(var(--gray-5)/.25)}.border-gray-5\/30{border-color:rgb(var(--gray-5)/.3)}.border-gray-5\/40{border-color:rgb(var(--gray-5)/.4)}.border-gray-5\/5{border-color:rgb(var(--gray-5)/.05)}.border-gray-5\/50{border-color:rgb(var(--gray-5)/.5)}.border-gray-5\/60{border-color:rgb(var(--gray-5)/.6)}.border-gray-5\/70{border-color:rgb(var(--gray-5)/.7)}.border-gray-5\/75{border-color:rgb(var(--gray-5)/.75)}.border-gray-5\/80{border-color:rgb(var(--gray-5)/.8)}.border-gray-5\/90{border-color:rgb(var(--gray-5)/.9)}.border-gray-5\/95{border-color:rgb(var(--gray-5)/.95)}.border-gray-6\/0{border-color:rgb(var(--gray-6)/0)}.border-gray-6\/10{border-color:rgb(var(--gray-6)/.1)}.border-gray-6\/100{border-color:rgb(var(--gray-6)/1)}.border-gray-6\/20{border-color:rgb(var(--gray-6)/.2)}.border-gray-6\/25{border-color:rgb(var(--gray-6)/.25)}.border-gray-6\/30{border-color:rgb(var(--gray-6)/.3)}.border-gray-6\/40{border-color:rgb(var(--gray-6)/.4)}.border-gray-6\/5{border-color:rgb(var(--gray-6)/.05)}.border-gray-6\/50{border-color:rgb(var(--gray-6)/.5)}.border-gray-6\/60{border-color:rgb(var(--gray-6)/.6)}.border-gray-6\/70{border-color:rgb(var(--gray-6)/.7)}.border-gray-6\/75{border-color:rgb(var(--gray-6)/.75)}.border-gray-6\/80{border-color:rgb(var(--gray-6)/.8)}.border-gray-6\/90{border-color:rgb(var(--gray-6)/.9)}.border-gray-6\/95{border-color:rgb(var(--gray-6)/.95)}.border-gray-7\/0{border-color:rgb(var(--gray-7)/0)}.border-gray-7\/10{border-color:rgb(var(--gray-7)/.1)}.border-gray-7\/100{border-color:rgb(var(--gray-7)/1)}.border-gray-7\/20{border-color:rgb(var(--gray-7)/.2)}.border-gray-7\/25{border-color:rgb(var(--gray-7)/.25)}.border-gray-7\/30{border-color:rgb(var(--gray-7)/.3)}.border-gray-7\/40{border-color:rgb(var(--gray-7)/.4)}.border-gray-7\/5{border-color:rgb(var(--gray-7)/.05)}.border-gray-7\/50{border-color:rgb(var(--gray-7)/.5)}.border-gray-7\/60{border-color:rgb(var(--gray-7)/.6)}.border-gray-7\/70{border-color:rgb(var(--gray-7)/.7)}.border-gray-7\/75{border-color:rgb(var(--gray-7)/.75)}.border-gray-7\/80{border-color:rgb(var(--gray-7)/.8)}.border-gray-7\/90{border-color:rgb(var(--gray-7)/.9)}.border-gray-7\/95{border-color:rgb(var(--gray-7)/.95)}.border-gray-8\/0{border-color:rgb(var(--gray-8)/0)}.border-gray-8\/10{border-color:rgb(var(--gray-8)/.1)}.border-gray-8\/100{border-color:rgb(var(--gray-8)/1)}.border-gray-8\/20{border-color:rgb(var(--gray-8)/.2)}.border-gray-8\/25{border-color:rgb(var(--gray-8)/.25)}.border-gray-8\/30{border-color:rgb(var(--gray-8)/.3)}.border-gray-8\/40{border-color:rgb(var(--gray-8)/.4)}.border-gray-8\/5{border-color:rgb(var(--gray-8)/.05)}.border-gray-8\/50{border-color:rgb(var(--gray-8)/.5)}.border-gray-8\/60{border-color:rgb(var(--gray-8)/.6)}.border-gray-8\/70{border-color:rgb(var(--gray-8)/.7)}.border-gray-8\/75{border-color:rgb(var(--gray-8)/.75)}.border-gray-8\/80{border-color:rgb(var(--gray-8)/.8)}.border-gray-8\/90{border-color:rgb(var(--gray-8)/.9)}.border-gray-8\/95{border-color:rgb(var(--gray-8)/.95)}.border-gray-9\/0{border-color:rgb(var(--gray-9)/0)}.border-gray-9\/10{border-color:rgb(var(--gray-9)/.1)}.border-gray-9\/100{border-color:rgb(var(--gray-9)/1)}.border-gray-9\/20{border-color:rgb(var(--gray-9)/.2)}.border-gray-9\/25{border-color:rgb(var(--gray-9)/.25)}.border-gray-9\/30{border-color:rgb(var(--gray-9)/.3)}.border-gray-9\/40{border-color:rgb(var(--gray-9)/.4)}.border-gray-9\/5{border-color:rgb(var(--gray-9)/.05)}.border-gray-9\/50{border-color:rgb(var(--gray-9)/.5)}.border-gray-9\/60{border-color:rgb(var(--gray-9)/.6)}.border-gray-9\/70{border-color:rgb(var(--gray-9)/.7)}.border-gray-9\/75{border-color:rgb(var(--gray-9)/.75)}.border-gray-9\/80{border-color:rgb(var(--gray-9)/.8)}.border-gray-9\/90{border-color:rgb(var(--gray-9)/.9)}.border-gray-9\/95{border-color:rgb(var(--gray-9)/.95)}.border-green-1\/0{border-color:rgb(var(--green-1)/0)}.border-green-1\/10{border-color:rgb(var(--green-1)/.1)}.border-green-1\/100{border-color:rgb(var(--green-1)/1)}.border-green-1\/20{border-color:rgb(var(--green-1)/.2)}.border-green-1\/25{border-color:rgb(var(--green-1)/.25)}.border-green-1\/30{border-color:rgb(var(--green-1)/.3)}.border-green-1\/40{border-color:rgb(var(--green-1)/.4)}.border-green-1\/5{border-color:rgb(var(--green-1)/.05)}.border-green-1\/50{border-color:rgb(var(--green-1)/.5)}.border-green-1\/60{border-color:rgb(var(--green-1)/.6)}.border-green-1\/70{border-color:rgb(var(--green-1)/.7)}.border-green-1\/75{border-color:rgb(var(--green-1)/.75)}.border-green-1\/80{border-color:rgb(var(--green-1)/.8)}.border-green-1\/90{border-color:rgb(var(--green-1)/.9)}.border-green-1\/95{border-color:rgb(var(--green-1)/.95)}.border-green-10\/0{border-color:rgb(var(--green-10)/0)}.border-green-10\/10{border-color:rgb(var(--green-10)/.1)}.border-green-10\/100{border-color:rgb(var(--green-10)/1)}.border-green-10\/20{border-color:rgb(var(--green-10)/.2)}.border-green-10\/25{border-color:rgb(var(--green-10)/.25)}.border-green-10\/30{border-color:rgb(var(--green-10)/.3)}.border-green-10\/40{border-color:rgb(var(--green-10)/.4)}.border-green-10\/5{border-color:rgb(var(--green-10)/.05)}.border-green-10\/50{border-color:rgb(var(--green-10)/.5)}.border-green-10\/60{border-color:rgb(var(--green-10)/.6)}.border-green-10\/70{border-color:rgb(var(--green-10)/.7)}.border-green-10\/75{border-color:rgb(var(--green-10)/.75)}.border-green-10\/80{border-color:rgb(var(--green-10)/.8)}.border-green-10\/90{border-color:rgb(var(--green-10)/.9)}.border-green-10\/95{border-color:rgb(var(--green-10)/.95)}.border-green-2\/0{border-color:rgb(var(--green-2)/0)}.border-green-2\/10{border-color:rgb(var(--green-2)/.1)}.border-green-2\/100{border-color:rgb(var(--green-2)/1)}.border-green-2\/20{border-color:rgb(var(--green-2)/.2)}.border-green-2\/25{border-color:rgb(var(--green-2)/.25)}.border-green-2\/30{border-color:rgb(var(--green-2)/.3)}.border-green-2\/40{border-color:rgb(var(--green-2)/.4)}.border-green-2\/5{border-color:rgb(var(--green-2)/.05)}.border-green-2\/50{border-color:rgb(var(--green-2)/.5)}.border-green-2\/60{border-color:rgb(var(--green-2)/.6)}.border-green-2\/70{border-color:rgb(var(--green-2)/.7)}.border-green-2\/75{border-color:rgb(var(--green-2)/.75)}.border-green-2\/80{border-color:rgb(var(--green-2)/.8)}.border-green-2\/90{border-color:rgb(var(--green-2)/.9)}.border-green-2\/95{border-color:rgb(var(--green-2)/.95)}.border-green-3\/0{border-color:rgb(var(--green-3)/0)}.border-green-3\/10{border-color:rgb(var(--green-3)/.1)}.border-green-3\/100{border-color:rgb(var(--green-3)/1)}.border-green-3\/20{border-color:rgb(var(--green-3)/.2)}.border-green-3\/25{border-color:rgb(var(--green-3)/.25)}.border-green-3\/30{border-color:rgb(var(--green-3)/.3)}.border-green-3\/40{border-color:rgb(var(--green-3)/.4)}.border-green-3\/5{border-color:rgb(var(--green-3)/.05)}.border-green-3\/50{border-color:rgb(var(--green-3)/.5)}.border-green-3\/60{border-color:rgb(var(--green-3)/.6)}.border-green-3\/70{border-color:rgb(var(--green-3)/.7)}.border-green-3\/75{border-color:rgb(var(--green-3)/.75)}.border-green-3\/80{border-color:rgb(var(--green-3)/.8)}.border-green-3\/90{border-color:rgb(var(--green-3)/.9)}.border-green-3\/95{border-color:rgb(var(--green-3)/.95)}.border-green-4\/0{border-color:rgb(var(--green-4)/0)}.border-green-4\/10{border-color:rgb(var(--green-4)/.1)}.border-green-4\/100{border-color:rgb(var(--green-4)/1)}.border-green-4\/20{border-color:rgb(var(--green-4)/.2)}.border-green-4\/25{border-color:rgb(var(--green-4)/.25)}.border-green-4\/30{border-color:rgb(var(--green-4)/.3)}.border-green-4\/40{border-color:rgb(var(--green-4)/.4)}.border-green-4\/5{border-color:rgb(var(--green-4)/.05)}.border-green-4\/50{border-color:rgb(var(--green-4)/.5)}.border-green-4\/60{border-color:rgb(var(--green-4)/.6)}.border-green-4\/70{border-color:rgb(var(--green-4)/.7)}.border-green-4\/75{border-color:rgb(var(--green-4)/.75)}.border-green-4\/80{border-color:rgb(var(--green-4)/.8)}.border-green-4\/90{border-color:rgb(var(--green-4)/.9)}.border-green-4\/95{border-color:rgb(var(--green-4)/.95)}.border-green-5\/0{border-color:rgb(var(--green-5)/0)}.border-green-5\/10{border-color:rgb(var(--green-5)/.1)}.border-green-5\/100{border-color:rgb(var(--green-5)/1)}.border-green-5\/20{border-color:rgb(var(--green-5)/.2)}.border-green-5\/25{border-color:rgb(var(--green-5)/.25)}.border-green-5\/30{border-color:rgb(var(--green-5)/.3)}.border-green-5\/40{border-color:rgb(var(--green-5)/.4)}.border-green-5\/5{border-color:rgb(var(--green-5)/.05)}.border-green-5\/50{border-color:rgb(var(--green-5)/.5)}.border-green-5\/60{border-color:rgb(var(--green-5)/.6)}.border-green-5\/70{border-color:rgb(var(--green-5)/.7)}.border-green-5\/75{border-color:rgb(var(--green-5)/.75)}.border-green-5\/80{border-color:rgb(var(--green-5)/.8)}.border-green-5\/90{border-color:rgb(var(--green-5)/.9)}.border-green-5\/95{border-color:rgb(var(--green-5)/.95)}.border-green-6\/0{border-color:rgb(var(--green-6)/0)}.border-green-6\/10{border-color:rgb(var(--green-6)/.1)}.border-green-6\/100{border-color:rgb(var(--green-6)/1)}.border-green-6\/20{border-color:rgb(var(--green-6)/.2)}.border-green-6\/25{border-color:rgb(var(--green-6)/.25)}.border-green-6\/30{border-color:rgb(var(--green-6)/.3)}.border-green-6\/40{border-color:rgb(var(--green-6)/.4)}.border-green-6\/5{border-color:rgb(var(--green-6)/.05)}.border-green-6\/50{border-color:rgb(var(--green-6)/.5)}.border-green-6\/60{border-color:rgb(var(--green-6)/.6)}.border-green-6\/70{border-color:rgb(var(--green-6)/.7)}.border-green-6\/75{border-color:rgb(var(--green-6)/.75)}.border-green-6\/80{border-color:rgb(var(--green-6)/.8)}.border-green-6\/90{border-color:rgb(var(--green-6)/.9)}.border-green-6\/95{border-color:rgb(var(--green-6)/.95)}.border-green-7\/0{border-color:rgb(var(--green-7)/0)}.border-green-7\/10{border-color:rgb(var(--green-7)/.1)}.border-green-7\/100{border-color:rgb(var(--green-7)/1)}.border-green-7\/20{border-color:rgb(var(--green-7)/.2)}.border-green-7\/25{border-color:rgb(var(--green-7)/.25)}.border-green-7\/30{border-color:rgb(var(--green-7)/.3)}.border-green-7\/40{border-color:rgb(var(--green-7)/.4)}.border-green-7\/5{border-color:rgb(var(--green-7)/.05)}.border-green-7\/50{border-color:rgb(var(--green-7)/.5)}.border-green-7\/60{border-color:rgb(var(--green-7)/.6)}.border-green-7\/70{border-color:rgb(var(--green-7)/.7)}.border-green-7\/75{border-color:rgb(var(--green-7)/.75)}.border-green-7\/80{border-color:rgb(var(--green-7)/.8)}.border-green-7\/90{border-color:rgb(var(--green-7)/.9)}.border-green-7\/95{border-color:rgb(var(--green-7)/.95)}.border-green-8\/0{border-color:rgb(var(--green-8)/0)}.border-green-8\/10{border-color:rgb(var(--green-8)/.1)}.border-green-8\/100{border-color:rgb(var(--green-8)/1)}.border-green-8\/20{border-color:rgb(var(--green-8)/.2)}.border-green-8\/25{border-color:rgb(var(--green-8)/.25)}.border-green-8\/30{border-color:rgb(var(--green-8)/.3)}.border-green-8\/40{border-color:rgb(var(--green-8)/.4)}.border-green-8\/5{border-color:rgb(var(--green-8)/.05)}.border-green-8\/50{border-color:rgb(var(--green-8)/.5)}.border-green-8\/60{border-color:rgb(var(--green-8)/.6)}.border-green-8\/70{border-color:rgb(var(--green-8)/.7)}.border-green-8\/75{border-color:rgb(var(--green-8)/.75)}.border-green-8\/80{border-color:rgb(var(--green-8)/.8)}.border-green-8\/90{border-color:rgb(var(--green-8)/.9)}.border-green-8\/95{border-color:rgb(var(--green-8)/.95)}.border-green-9\/0{border-color:rgb(var(--green-9)/0)}.border-green-9\/10{border-color:rgb(var(--green-9)/.1)}.border-green-9\/100{border-color:rgb(var(--green-9)/1)}.border-green-9\/20{border-color:rgb(var(--green-9)/.2)}.border-green-9\/25{border-color:rgb(var(--green-9)/.25)}.border-green-9\/30{border-color:rgb(var(--green-9)/.3)}.border-green-9\/40{border-color:rgb(var(--green-9)/.4)}.border-green-9\/5{border-color:rgb(var(--green-9)/.05)}.border-green-9\/50{border-color:rgb(var(--green-9)/.5)}.border-green-9\/60{border-color:rgb(var(--green-9)/.6)}.border-green-9\/70{border-color:rgb(var(--green-9)/.7)}.border-green-9\/75{border-color:rgb(var(--green-9)/.75)}.border-green-9\/80{border-color:rgb(var(--green-9)/.8)}.border-green-9\/90{border-color:rgb(var(--green-9)/.9)}.border-green-9\/95{border-color:rgb(var(--green-9)/.95)}.border-pink-1\/0{border-color:rgb(var(--pink-1)/0)}.border-pink-1\/10{border-color:rgb(var(--pink-1)/.1)}.border-pink-1\/100{border-color:rgb(var(--pink-1)/1)}.border-pink-1\/20{border-color:rgb(var(--pink-1)/.2)}.border-pink-1\/25{border-color:rgb(var(--pink-1)/.25)}.border-pink-1\/30{border-color:rgb(var(--pink-1)/.3)}.border-pink-1\/40{border-color:rgb(var(--pink-1)/.4)}.border-pink-1\/5{border-color:rgb(var(--pink-1)/.05)}.border-pink-1\/50{border-color:rgb(var(--pink-1)/.5)}.border-pink-1\/60{border-color:rgb(var(--pink-1)/.6)}.border-pink-1\/70{border-color:rgb(var(--pink-1)/.7)}.border-pink-1\/75{border-color:rgb(var(--pink-1)/.75)}.border-pink-1\/80{border-color:rgb(var(--pink-1)/.8)}.border-pink-1\/90{border-color:rgb(var(--pink-1)/.9)}.border-pink-1\/95{border-color:rgb(var(--pink-1)/.95)}.border-pink-10\/0{border-color:rgb(var(--pink-10)/0)}.border-pink-10\/10{border-color:rgb(var(--pink-10)/.1)}.border-pink-10\/100{border-color:rgb(var(--pink-10)/1)}.border-pink-10\/20{border-color:rgb(var(--pink-10)/.2)}.border-pink-10\/25{border-color:rgb(var(--pink-10)/.25)}.border-pink-10\/30{border-color:rgb(var(--pink-10)/.3)}.border-pink-10\/40{border-color:rgb(var(--pink-10)/.4)}.border-pink-10\/5{border-color:rgb(var(--pink-10)/.05)}.border-pink-10\/50{border-color:rgb(var(--pink-10)/.5)}.border-pink-10\/60{border-color:rgb(var(--pink-10)/.6)}.border-pink-10\/70{border-color:rgb(var(--pink-10)/.7)}.border-pink-10\/75{border-color:rgb(var(--pink-10)/.75)}.border-pink-10\/80{border-color:rgb(var(--pink-10)/.8)}.border-pink-10\/90{border-color:rgb(var(--pink-10)/.9)}.border-pink-10\/95{border-color:rgb(var(--pink-10)/.95)}.border-pink-2\/0{border-color:rgb(var(--pink-2)/0)}.border-pink-2\/10{border-color:rgb(var(--pink-2)/.1)}.border-pink-2\/100{border-color:rgb(var(--pink-2)/1)}.border-pink-2\/20{border-color:rgb(var(--pink-2)/.2)}.border-pink-2\/25{border-color:rgb(var(--pink-2)/.25)}.border-pink-2\/30{border-color:rgb(var(--pink-2)/.3)}.border-pink-2\/40{border-color:rgb(var(--pink-2)/.4)}.border-pink-2\/5{border-color:rgb(var(--pink-2)/.05)}.border-pink-2\/50{border-color:rgb(var(--pink-2)/.5)}.border-pink-2\/60{border-color:rgb(var(--pink-2)/.6)}.border-pink-2\/70{border-color:rgb(var(--pink-2)/.7)}.border-pink-2\/75{border-color:rgb(var(--pink-2)/.75)}.border-pink-2\/80{border-color:rgb(var(--pink-2)/.8)}.border-pink-2\/90{border-color:rgb(var(--pink-2)/.9)}.border-pink-2\/95{border-color:rgb(var(--pink-2)/.95)}.border-pink-3\/0{border-color:rgb(var(--pink-3)/0)}.border-pink-3\/10{border-color:rgb(var(--pink-3)/.1)}.border-pink-3\/100{border-color:rgb(var(--pink-3)/1)}.border-pink-3\/20{border-color:rgb(var(--pink-3)/.2)}.border-pink-3\/25{border-color:rgb(var(--pink-3)/.25)}.border-pink-3\/30{border-color:rgb(var(--pink-3)/.3)}.border-pink-3\/40{border-color:rgb(var(--pink-3)/.4)}.border-pink-3\/5{border-color:rgb(var(--pink-3)/.05)}.border-pink-3\/50{border-color:rgb(var(--pink-3)/.5)}.border-pink-3\/60{border-color:rgb(var(--pink-3)/.6)}.border-pink-3\/70{border-color:rgb(var(--pink-3)/.7)}.border-pink-3\/75{border-color:rgb(var(--pink-3)/.75)}.border-pink-3\/80{border-color:rgb(var(--pink-3)/.8)}.border-pink-3\/90{border-color:rgb(var(--pink-3)/.9)}.border-pink-3\/95{border-color:rgb(var(--pink-3)/.95)}.border-pink-4\/0{border-color:rgb(var(--pink-4)/0)}.border-pink-4\/10{border-color:rgb(var(--pink-4)/.1)}.border-pink-4\/100{border-color:rgb(var(--pink-4)/1)}.border-pink-4\/20{border-color:rgb(var(--pink-4)/.2)}.border-pink-4\/25{border-color:rgb(var(--pink-4)/.25)}.border-pink-4\/30{border-color:rgb(var(--pink-4)/.3)}.border-pink-4\/40{border-color:rgb(var(--pink-4)/.4)}.border-pink-4\/5{border-color:rgb(var(--pink-4)/.05)}.border-pink-4\/50{border-color:rgb(var(--pink-4)/.5)}.border-pink-4\/60{border-color:rgb(var(--pink-4)/.6)}.border-pink-4\/70{border-color:rgb(var(--pink-4)/.7)}.border-pink-4\/75{border-color:rgb(var(--pink-4)/.75)}.border-pink-4\/80{border-color:rgb(var(--pink-4)/.8)}.border-pink-4\/90{border-color:rgb(var(--pink-4)/.9)}.border-pink-4\/95{border-color:rgb(var(--pink-4)/.95)}.border-pink-5\/0{border-color:rgb(var(--pink-5)/0)}.border-pink-5\/10{border-color:rgb(var(--pink-5)/.1)}.border-pink-5\/100{border-color:rgb(var(--pink-5)/1)}.border-pink-5\/20{border-color:rgb(var(--pink-5)/.2)}.border-pink-5\/25{border-color:rgb(var(--pink-5)/.25)}.border-pink-5\/30{border-color:rgb(var(--pink-5)/.3)}.border-pink-5\/40{border-color:rgb(var(--pink-5)/.4)}.border-pink-5\/5{border-color:rgb(var(--pink-5)/.05)}.border-pink-5\/50{border-color:rgb(var(--pink-5)/.5)}.border-pink-5\/60{border-color:rgb(var(--pink-5)/.6)}.border-pink-5\/70{border-color:rgb(var(--pink-5)/.7)}.border-pink-5\/75{border-color:rgb(var(--pink-5)/.75)}.border-pink-5\/80{border-color:rgb(var(--pink-5)/.8)}.border-pink-5\/90{border-color:rgb(var(--pink-5)/.9)}.border-pink-5\/95{border-color:rgb(var(--pink-5)/.95)}.border-pink-6\/0{border-color:rgb(var(--pink-6)/0)}.border-pink-6\/10{border-color:rgb(var(--pink-6)/.1)}.border-pink-6\/100{border-color:rgb(var(--pink-6)/1)}.border-pink-6\/20{border-color:rgb(var(--pink-6)/.2)}.border-pink-6\/25{border-color:rgb(var(--pink-6)/.25)}.border-pink-6\/30{border-color:rgb(var(--pink-6)/.3)}.border-pink-6\/40{border-color:rgb(var(--pink-6)/.4)}.border-pink-6\/5{border-color:rgb(var(--pink-6)/.05)}.border-pink-6\/50{border-color:rgb(var(--pink-6)/.5)}.border-pink-6\/60{border-color:rgb(var(--pink-6)/.6)}.border-pink-6\/70{border-color:rgb(var(--pink-6)/.7)}.border-pink-6\/75{border-color:rgb(var(--pink-6)/.75)}.border-pink-6\/80{border-color:rgb(var(--pink-6)/.8)}.border-pink-6\/90{border-color:rgb(var(--pink-6)/.9)}.border-pink-6\/95{border-color:rgb(var(--pink-6)/.95)}.border-pink-7\/0{border-color:rgb(var(--pink-7)/0)}.border-pink-7\/10{border-color:rgb(var(--pink-7)/.1)}.border-pink-7\/100{border-color:rgb(var(--pink-7)/1)}.border-pink-7\/20{border-color:rgb(var(--pink-7)/.2)}.border-pink-7\/25{border-color:rgb(var(--pink-7)/.25)}.border-pink-7\/30{border-color:rgb(var(--pink-7)/.3)}.border-pink-7\/40{border-color:rgb(var(--pink-7)/.4)}.border-pink-7\/5{border-color:rgb(var(--pink-7)/.05)}.border-pink-7\/50{border-color:rgb(var(--pink-7)/.5)}.border-pink-7\/60{border-color:rgb(var(--pink-7)/.6)}.border-pink-7\/70{border-color:rgb(var(--pink-7)/.7)}.border-pink-7\/75{border-color:rgb(var(--pink-7)/.75)}.border-pink-7\/80{border-color:rgb(var(--pink-7)/.8)}.border-pink-7\/90{border-color:rgb(var(--pink-7)/.9)}.border-pink-7\/95{border-color:rgb(var(--pink-7)/.95)}.border-pink-8\/0{border-color:rgb(var(--pink-8)/0)}.border-pink-8\/10{border-color:rgb(var(--pink-8)/.1)}.border-pink-8\/100{border-color:rgb(var(--pink-8)/1)}.border-pink-8\/20{border-color:rgb(var(--pink-8)/.2)}.border-pink-8\/25{border-color:rgb(var(--pink-8)/.25)}.border-pink-8\/30{border-color:rgb(var(--pink-8)/.3)}.border-pink-8\/40{border-color:rgb(var(--pink-8)/.4)}.border-pink-8\/5{border-color:rgb(var(--pink-8)/.05)}.border-pink-8\/50{border-color:rgb(var(--pink-8)/.5)}.border-pink-8\/60{border-color:rgb(var(--pink-8)/.6)}.border-pink-8\/70{border-color:rgb(var(--pink-8)/.7)}.border-pink-8\/75{border-color:rgb(var(--pink-8)/.75)}.border-pink-8\/80{border-color:rgb(var(--pink-8)/.8)}.border-pink-8\/90{border-color:rgb(var(--pink-8)/.9)}.border-pink-8\/95{border-color:rgb(var(--pink-8)/.95)}.border-pink-9\/0{border-color:rgb(var(--pink-9)/0)}.border-pink-9\/10{border-color:rgb(var(--pink-9)/.1)}.border-pink-9\/100{border-color:rgb(var(--pink-9)/1)}.border-pink-9\/20{border-color:rgb(var(--pink-9)/.2)}.border-pink-9\/25{border-color:rgb(var(--pink-9)/.25)}.border-pink-9\/30{border-color:rgb(var(--pink-9)/.3)}.border-pink-9\/40{border-color:rgb(var(--pink-9)/.4)}.border-pink-9\/5{border-color:rgb(var(--pink-9)/.05)}.border-pink-9\/50{border-color:rgb(var(--pink-9)/.5)}.border-pink-9\/60{border-color:rgb(var(--pink-9)/.6)}.border-pink-9\/70{border-color:rgb(var(--pink-9)/.7)}.border-pink-9\/75{border-color:rgb(var(--pink-9)/.75)}.border-pink-9\/80{border-color:rgb(var(--pink-9)/.8)}.border-pink-9\/90{border-color:rgb(var(--pink-9)/.9)}.border-pink-9\/95{border-color:rgb(var(--pink-9)/.95)}.border-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.border-primary\/0{border-color:rgb(var(--primary)/0)}.border-primary\/10{border-color:rgb(var(--primary)/.1)}.border-primary\/100{border-color:rgb(var(--primary)/1)}.border-primary\/20{border-color:rgb(var(--primary)/.2)}.border-primary\/25{border-color:rgb(var(--primary)/.25)}.border-primary\/30{border-color:rgb(var(--primary)/.3)}.border-primary\/40{border-color:rgb(var(--primary)/.4)}.border-primary\/5{border-color:rgb(var(--primary)/.05)}.border-primary\/50{border-color:rgb(var(--primary)/.5)}.border-primary\/60{border-color:rgb(var(--primary)/.6)}.border-primary\/70{border-color:rgb(var(--primary)/.7)}.border-primary\/75{border-color:rgb(var(--primary)/.75)}.border-primary\/80{border-color:rgb(var(--primary)/.8)}.border-primary\/90{border-color:rgb(var(--primary)/.9)}.border-primary\/95{border-color:rgb(var(--primary)/.95)}.border-purple-1\/0{border-color:rgb(var(--purple-1)/0)}.border-purple-1\/10{border-color:rgb(var(--purple-1)/.1)}.border-purple-1\/100{border-color:rgb(var(--purple-1)/1)}.border-purple-1\/20{border-color:rgb(var(--purple-1)/.2)}.border-purple-1\/25{border-color:rgb(var(--purple-1)/.25)}.border-purple-1\/30{border-color:rgb(var(--purple-1)/.3)}.border-purple-1\/40{border-color:rgb(var(--purple-1)/.4)}.border-purple-1\/5{border-color:rgb(var(--purple-1)/.05)}.border-purple-1\/50{border-color:rgb(var(--purple-1)/.5)}.border-purple-1\/60{border-color:rgb(var(--purple-1)/.6)}.border-purple-1\/70{border-color:rgb(var(--purple-1)/.7)}.border-purple-1\/75{border-color:rgb(var(--purple-1)/.75)}.border-purple-1\/80{border-color:rgb(var(--purple-1)/.8)}.border-purple-1\/90{border-color:rgb(var(--purple-1)/.9)}.border-purple-1\/95{border-color:rgb(var(--purple-1)/.95)}.border-purple-10\/0{border-color:rgb(var(--purple-10)/0)}.border-purple-10\/10{border-color:rgb(var(--purple-10)/.1)}.border-purple-10\/100{border-color:rgb(var(--purple-10)/1)}.border-purple-10\/20{border-color:rgb(var(--purple-10)/.2)}.border-purple-10\/25{border-color:rgb(var(--purple-10)/.25)}.border-purple-10\/30{border-color:rgb(var(--purple-10)/.3)}.border-purple-10\/40{border-color:rgb(var(--purple-10)/.4)}.border-purple-10\/5{border-color:rgb(var(--purple-10)/.05)}.border-purple-10\/50{border-color:rgb(var(--purple-10)/.5)}.border-purple-10\/60{border-color:rgb(var(--purple-10)/.6)}.border-purple-10\/70{border-color:rgb(var(--purple-10)/.7)}.border-purple-10\/75{border-color:rgb(var(--purple-10)/.75)}.border-purple-10\/80{border-color:rgb(var(--purple-10)/.8)}.border-purple-10\/90{border-color:rgb(var(--purple-10)/.9)}.border-purple-10\/95{border-color:rgb(var(--purple-10)/.95)}.border-purple-2\/0{border-color:rgb(var(--purple-2)/0)}.border-purple-2\/10{border-color:rgb(var(--purple-2)/.1)}.border-purple-2\/100{border-color:rgb(var(--purple-2)/1)}.border-purple-2\/20{border-color:rgb(var(--purple-2)/.2)}.border-purple-2\/25{border-color:rgb(var(--purple-2)/.25)}.border-purple-2\/30{border-color:rgb(var(--purple-2)/.3)}.border-purple-2\/40{border-color:rgb(var(--purple-2)/.4)}.border-purple-2\/5{border-color:rgb(var(--purple-2)/.05)}.border-purple-2\/50{border-color:rgb(var(--purple-2)/.5)}.border-purple-2\/60{border-color:rgb(var(--purple-2)/.6)}.border-purple-2\/70{border-color:rgb(var(--purple-2)/.7)}.border-purple-2\/75{border-color:rgb(var(--purple-2)/.75)}.border-purple-2\/80{border-color:rgb(var(--purple-2)/.8)}.border-purple-2\/90{border-color:rgb(var(--purple-2)/.9)}.border-purple-2\/95{border-color:rgb(var(--purple-2)/.95)}.border-purple-3\/0{border-color:rgb(var(--purple-3)/0)}.border-purple-3\/10{border-color:rgb(var(--purple-3)/.1)}.border-purple-3\/100{border-color:rgb(var(--purple-3)/1)}.border-purple-3\/20{border-color:rgb(var(--purple-3)/.2)}.border-purple-3\/25{border-color:rgb(var(--purple-3)/.25)}.border-purple-3\/30{border-color:rgb(var(--purple-3)/.3)}.border-purple-3\/40{border-color:rgb(var(--purple-3)/.4)}.border-purple-3\/5{border-color:rgb(var(--purple-3)/.05)}.border-purple-3\/50{border-color:rgb(var(--purple-3)/.5)}.border-purple-3\/60{border-color:rgb(var(--purple-3)/.6)}.border-purple-3\/70{border-color:rgb(var(--purple-3)/.7)}.border-purple-3\/75{border-color:rgb(var(--purple-3)/.75)}.border-purple-3\/80{border-color:rgb(var(--purple-3)/.8)}.border-purple-3\/90{border-color:rgb(var(--purple-3)/.9)}.border-purple-3\/95{border-color:rgb(var(--purple-3)/.95)}.border-purple-4\/0{border-color:rgb(var(--purple-4)/0)}.border-purple-4\/10{border-color:rgb(var(--purple-4)/.1)}.border-purple-4\/100{border-color:rgb(var(--purple-4)/1)}.border-purple-4\/20{border-color:rgb(var(--purple-4)/.2)}.border-purple-4\/25{border-color:rgb(var(--purple-4)/.25)}.border-purple-4\/30{border-color:rgb(var(--purple-4)/.3)}.border-purple-4\/40{border-color:rgb(var(--purple-4)/.4)}.border-purple-4\/5{border-color:rgb(var(--purple-4)/.05)}.border-purple-4\/50{border-color:rgb(var(--purple-4)/.5)}.border-purple-4\/60{border-color:rgb(var(--purple-4)/.6)}.border-purple-4\/70{border-color:rgb(var(--purple-4)/.7)}.border-purple-4\/75{border-color:rgb(var(--purple-4)/.75)}.border-purple-4\/80{border-color:rgb(var(--purple-4)/.8)}.border-purple-4\/90{border-color:rgb(var(--purple-4)/.9)}.border-purple-4\/95{border-color:rgb(var(--purple-4)/.95)}.border-purple-5\/0{border-color:rgb(var(--purple-5)/0)}.border-purple-5\/10{border-color:rgb(var(--purple-5)/.1)}.border-purple-5\/100{border-color:rgb(var(--purple-5)/1)}.border-purple-5\/20{border-color:rgb(var(--purple-5)/.2)}.border-purple-5\/25{border-color:rgb(var(--purple-5)/.25)}.border-purple-5\/30{border-color:rgb(var(--purple-5)/.3)}.border-purple-5\/40{border-color:rgb(var(--purple-5)/.4)}.border-purple-5\/5{border-color:rgb(var(--purple-5)/.05)}.border-purple-5\/50{border-color:rgb(var(--purple-5)/.5)}.border-purple-5\/60{border-color:rgb(var(--purple-5)/.6)}.border-purple-5\/70{border-color:rgb(var(--purple-5)/.7)}.border-purple-5\/75{border-color:rgb(var(--purple-5)/.75)}.border-purple-5\/80{border-color:rgb(var(--purple-5)/.8)}.border-purple-5\/90{border-color:rgb(var(--purple-5)/.9)}.border-purple-5\/95{border-color:rgb(var(--purple-5)/.95)}.border-purple-6\/0{border-color:rgb(var(--purple-6)/0)}.border-purple-6\/10{border-color:rgb(var(--purple-6)/.1)}.border-purple-6\/100{border-color:rgb(var(--purple-6)/1)}.border-purple-6\/20{border-color:rgb(var(--purple-6)/.2)}.border-purple-6\/25{border-color:rgb(var(--purple-6)/.25)}.border-purple-6\/30{border-color:rgb(var(--purple-6)/.3)}.border-purple-6\/40{border-color:rgb(var(--purple-6)/.4)}.border-purple-6\/5{border-color:rgb(var(--purple-6)/.05)}.border-purple-6\/50{border-color:rgb(var(--purple-6)/.5)}.border-purple-6\/60{border-color:rgb(var(--purple-6)/.6)}.border-purple-6\/70{border-color:rgb(var(--purple-6)/.7)}.border-purple-6\/75{border-color:rgb(var(--purple-6)/.75)}.border-purple-6\/80{border-color:rgb(var(--purple-6)/.8)}.border-purple-6\/90{border-color:rgb(var(--purple-6)/.9)}.border-purple-6\/95{border-color:rgb(var(--purple-6)/.95)}.border-purple-7\/0{border-color:rgb(var(--purple-7)/0)}.border-purple-7\/10{border-color:rgb(var(--purple-7)/.1)}.border-purple-7\/100{border-color:rgb(var(--purple-7)/1)}.border-purple-7\/20{border-color:rgb(var(--purple-7)/.2)}.border-purple-7\/25{border-color:rgb(var(--purple-7)/.25)}.border-purple-7\/30{border-color:rgb(var(--purple-7)/.3)}.border-purple-7\/40{border-color:rgb(var(--purple-7)/.4)}.border-purple-7\/5{border-color:rgb(var(--purple-7)/.05)}.border-purple-7\/50{border-color:rgb(var(--purple-7)/.5)}.border-purple-7\/60{border-color:rgb(var(--purple-7)/.6)}.border-purple-7\/70{border-color:rgb(var(--purple-7)/.7)}.border-purple-7\/75{border-color:rgb(var(--purple-7)/.75)}.border-purple-7\/80{border-color:rgb(var(--purple-7)/.8)}.border-purple-7\/90{border-color:rgb(var(--purple-7)/.9)}.border-purple-7\/95{border-color:rgb(var(--purple-7)/.95)}.border-purple-8\/0{border-color:rgb(var(--purple-8)/0)}.border-purple-8\/10{border-color:rgb(var(--purple-8)/.1)}.border-purple-8\/100{border-color:rgb(var(--purple-8)/1)}.border-purple-8\/20{border-color:rgb(var(--purple-8)/.2)}.border-purple-8\/25{border-color:rgb(var(--purple-8)/.25)}.border-purple-8\/30{border-color:rgb(var(--purple-8)/.3)}.border-purple-8\/40{border-color:rgb(var(--purple-8)/.4)}.border-purple-8\/5{border-color:rgb(var(--purple-8)/.05)}.border-purple-8\/50{border-color:rgb(var(--purple-8)/.5)}.border-purple-8\/60{border-color:rgb(var(--purple-8)/.6)}.border-purple-8\/70{border-color:rgb(var(--purple-8)/.7)}.border-purple-8\/75{border-color:rgb(var(--purple-8)/.75)}.border-purple-8\/80{border-color:rgb(var(--purple-8)/.8)}.border-purple-8\/90{border-color:rgb(var(--purple-8)/.9)}.border-purple-8\/95{border-color:rgb(var(--purple-8)/.95)}.border-purple-9\/0{border-color:rgb(var(--purple-9)/0)}.border-purple-9\/10{border-color:rgb(var(--purple-9)/.1)}.border-purple-9\/100{border-color:rgb(var(--purple-9)/1)}.border-purple-9\/20{border-color:rgb(var(--purple-9)/.2)}.border-purple-9\/25{border-color:rgb(var(--purple-9)/.25)}.border-purple-9\/30{border-color:rgb(var(--purple-9)/.3)}.border-purple-9\/40{border-color:rgb(var(--purple-9)/.4)}.border-purple-9\/5{border-color:rgb(var(--purple-9)/.05)}.border-purple-9\/50{border-color:rgb(var(--purple-9)/.5)}.border-purple-9\/60{border-color:rgb(var(--purple-9)/.6)}.border-purple-9\/70{border-color:rgb(var(--purple-9)/.7)}.border-purple-9\/75{border-color:rgb(var(--purple-9)/.75)}.border-purple-9\/80{border-color:rgb(var(--purple-9)/.8)}.border-purple-9\/90{border-color:rgb(var(--purple-9)/.9)}.border-purple-9\/95{border-color:rgb(var(--purple-9)/.95)}.border-red-1\/0{border-color:rgb(var(--red-1)/0)}.border-red-1\/10{border-color:rgb(var(--red-1)/.1)}.border-red-1\/100{border-color:rgb(var(--red-1)/1)}.border-red-1\/20{border-color:rgb(var(--red-1)/.2)}.border-red-1\/25{border-color:rgb(var(--red-1)/.25)}.border-red-1\/30{border-color:rgb(var(--red-1)/.3)}.border-red-1\/40{border-color:rgb(var(--red-1)/.4)}.border-red-1\/5{border-color:rgb(var(--red-1)/.05)}.border-red-1\/50{border-color:rgb(var(--red-1)/.5)}.border-red-1\/60{border-color:rgb(var(--red-1)/.6)}.border-red-1\/70{border-color:rgb(var(--red-1)/.7)}.border-red-1\/75{border-color:rgb(var(--red-1)/.75)}.border-red-1\/80{border-color:rgb(var(--red-1)/.8)}.border-red-1\/90{border-color:rgb(var(--red-1)/.9)}.border-red-1\/95{border-color:rgb(var(--red-1)/.95)}.border-red-10\/0{border-color:rgb(var(--red-10)/0)}.border-red-10\/10{border-color:rgb(var(--red-10)/.1)}.border-red-10\/100{border-color:rgb(var(--red-10)/1)}.border-red-10\/20{border-color:rgb(var(--red-10)/.2)}.border-red-10\/25{border-color:rgb(var(--red-10)/.25)}.border-red-10\/30{border-color:rgb(var(--red-10)/.3)}.border-red-10\/40{border-color:rgb(var(--red-10)/.4)}.border-red-10\/5{border-color:rgb(var(--red-10)/.05)}.border-red-10\/50{border-color:rgb(var(--red-10)/.5)}.border-red-10\/60{border-color:rgb(var(--red-10)/.6)}.border-red-10\/70{border-color:rgb(var(--red-10)/.7)}.border-red-10\/75{border-color:rgb(var(--red-10)/.75)}.border-red-10\/80{border-color:rgb(var(--red-10)/.8)}.border-red-10\/90{border-color:rgb(var(--red-10)/.9)}.border-red-10\/95{border-color:rgb(var(--red-10)/.95)}.border-red-2\/0{border-color:rgb(var(--red-2)/0)}.border-red-2\/10{border-color:rgb(var(--red-2)/.1)}.border-red-2\/100{border-color:rgb(var(--red-2)/1)}.border-red-2\/20{border-color:rgb(var(--red-2)/.2)}.border-red-2\/25{border-color:rgb(var(--red-2)/.25)}.border-red-2\/30{border-color:rgb(var(--red-2)/.3)}.border-red-2\/40{border-color:rgb(var(--red-2)/.4)}.border-red-2\/5{border-color:rgb(var(--red-2)/.05)}.border-red-2\/50{border-color:rgb(var(--red-2)/.5)}.border-red-2\/60{border-color:rgb(var(--red-2)/.6)}.border-red-2\/70{border-color:rgb(var(--red-2)/.7)}.border-red-2\/75{border-color:rgb(var(--red-2)/.75)}.border-red-2\/80{border-color:rgb(var(--red-2)/.8)}.border-red-2\/90{border-color:rgb(var(--red-2)/.9)}.border-red-2\/95{border-color:rgb(var(--red-2)/.95)}.border-red-3\/0{border-color:rgb(var(--red-3)/0)}.border-red-3\/10{border-color:rgb(var(--red-3)/.1)}.border-red-3\/100{border-color:rgb(var(--red-3)/1)}.border-red-3\/20{border-color:rgb(var(--red-3)/.2)}.border-red-3\/25{border-color:rgb(var(--red-3)/.25)}.border-red-3\/30{border-color:rgb(var(--red-3)/.3)}.border-red-3\/40{border-color:rgb(var(--red-3)/.4)}.border-red-3\/5{border-color:rgb(var(--red-3)/.05)}.border-red-3\/50{border-color:rgb(var(--red-3)/.5)}.border-red-3\/60{border-color:rgb(var(--red-3)/.6)}.border-red-3\/70{border-color:rgb(var(--red-3)/.7)}.border-red-3\/75{border-color:rgb(var(--red-3)/.75)}.border-red-3\/80{border-color:rgb(var(--red-3)/.8)}.border-red-3\/90{border-color:rgb(var(--red-3)/.9)}.border-red-3\/95{border-color:rgb(var(--red-3)/.95)}.border-red-4\/0{border-color:rgb(var(--red-4)/0)}.border-red-4\/10{border-color:rgb(var(--red-4)/.1)}.border-red-4\/100{border-color:rgb(var(--red-4)/1)}.border-red-4\/20{border-color:rgb(var(--red-4)/.2)}.border-red-4\/25{border-color:rgb(var(--red-4)/.25)}.border-red-4\/30{border-color:rgb(var(--red-4)/.3)}.border-red-4\/40{border-color:rgb(var(--red-4)/.4)}.border-red-4\/5{border-color:rgb(var(--red-4)/.05)}.border-red-4\/50{border-color:rgb(var(--red-4)/.5)}.border-red-4\/60{border-color:rgb(var(--red-4)/.6)}.border-red-4\/70{border-color:rgb(var(--red-4)/.7)}.border-red-4\/75{border-color:rgb(var(--red-4)/.75)}.border-red-4\/80{border-color:rgb(var(--red-4)/.8)}.border-red-4\/90{border-color:rgb(var(--red-4)/.9)}.border-red-4\/95{border-color:rgb(var(--red-4)/.95)}.border-red-5\/0{border-color:rgb(var(--red-5)/0)}.border-red-5\/10{border-color:rgb(var(--red-5)/.1)}.border-red-5\/100{border-color:rgb(var(--red-5)/1)}.border-red-5\/20{border-color:rgb(var(--red-5)/.2)}.border-red-5\/25{border-color:rgb(var(--red-5)/.25)}.border-red-5\/30{border-color:rgb(var(--red-5)/.3)}.border-red-5\/40{border-color:rgb(var(--red-5)/.4)}.border-red-5\/5{border-color:rgb(var(--red-5)/.05)}.border-red-5\/50{border-color:rgb(var(--red-5)/.5)}.border-red-5\/60{border-color:rgb(var(--red-5)/.6)}.border-red-5\/70{border-color:rgb(var(--red-5)/.7)}.border-red-5\/75{border-color:rgb(var(--red-5)/.75)}.border-red-5\/80{border-color:rgb(var(--red-5)/.8)}.border-red-5\/90{border-color:rgb(var(--red-5)/.9)}.border-red-5\/95{border-color:rgb(var(--red-5)/.95)}.border-red-6\/0{border-color:rgb(var(--red-6)/0)}.border-red-6\/10{border-color:rgb(var(--red-6)/.1)}.border-red-6\/100{border-color:rgb(var(--red-6)/1)}.border-red-6\/20{border-color:rgb(var(--red-6)/.2)}.border-red-6\/25{border-color:rgb(var(--red-6)/.25)}.border-red-6\/30{border-color:rgb(var(--red-6)/.3)}.border-red-6\/40{border-color:rgb(var(--red-6)/.4)}.border-red-6\/5{border-color:rgb(var(--red-6)/.05)}.border-red-6\/50{border-color:rgb(var(--red-6)/.5)}.border-red-6\/60{border-color:rgb(var(--red-6)/.6)}.border-red-6\/70{border-color:rgb(var(--red-6)/.7)}.border-red-6\/75{border-color:rgb(var(--red-6)/.75)}.border-red-6\/80{border-color:rgb(var(--red-6)/.8)}.border-red-6\/90{border-color:rgb(var(--red-6)/.9)}.border-red-6\/95{border-color:rgb(var(--red-6)/.95)}.border-red-7\/0{border-color:rgb(var(--red-7)/0)}.border-red-7\/10{border-color:rgb(var(--red-7)/.1)}.border-red-7\/100{border-color:rgb(var(--red-7)/1)}.border-red-7\/20{border-color:rgb(var(--red-7)/.2)}.border-red-7\/25{border-color:rgb(var(--red-7)/.25)}.border-red-7\/30{border-color:rgb(var(--red-7)/.3)}.border-red-7\/40{border-color:rgb(var(--red-7)/.4)}.border-red-7\/5{border-color:rgb(var(--red-7)/.05)}.border-red-7\/50{border-color:rgb(var(--red-7)/.5)}.border-red-7\/60{border-color:rgb(var(--red-7)/.6)}.border-red-7\/70{border-color:rgb(var(--red-7)/.7)}.border-red-7\/75{border-color:rgb(var(--red-7)/.75)}.border-red-7\/80{border-color:rgb(var(--red-7)/.8)}.border-red-7\/90{border-color:rgb(var(--red-7)/.9)}.border-red-7\/95{border-color:rgb(var(--red-7)/.95)}.border-red-8\/0{border-color:rgb(var(--red-8)/0)}.border-red-8\/10{border-color:rgb(var(--red-8)/.1)}.border-red-8\/100{border-color:rgb(var(--red-8)/1)}.border-red-8\/20{border-color:rgb(var(--red-8)/.2)}.border-red-8\/25{border-color:rgb(var(--red-8)/.25)}.border-red-8\/30{border-color:rgb(var(--red-8)/.3)}.border-red-8\/40{border-color:rgb(var(--red-8)/.4)}.border-red-8\/5{border-color:rgb(var(--red-8)/.05)}.border-red-8\/50{border-color:rgb(var(--red-8)/.5)}.border-red-8\/60{border-color:rgb(var(--red-8)/.6)}.border-red-8\/70{border-color:rgb(var(--red-8)/.7)}.border-red-8\/75{border-color:rgb(var(--red-8)/.75)}.border-red-8\/80{border-color:rgb(var(--red-8)/.8)}.border-red-8\/90{border-color:rgb(var(--red-8)/.9)}.border-red-8\/95{border-color:rgb(var(--red-8)/.95)}.border-red-9\/0{border-color:rgb(var(--red-9)/0)}.border-red-9\/10{border-color:rgb(var(--red-9)/.1)}.border-red-9\/100{border-color:rgb(var(--red-9)/1)}.border-red-9\/20{border-color:rgb(var(--red-9)/.2)}.border-red-9\/25{border-color:rgb(var(--red-9)/.25)}.border-red-9\/30{border-color:rgb(var(--red-9)/.3)}.border-red-9\/40{border-color:rgb(var(--red-9)/.4)}.border-red-9\/5{border-color:rgb(var(--red-9)/.05)}.border-red-9\/50{border-color:rgb(var(--red-9)/.5)}.border-red-9\/60{border-color:rgb(var(--red-9)/.6)}.border-red-9\/70{border-color:rgb(var(--red-9)/.7)}.border-red-9\/75{border-color:rgb(var(--red-9)/.75)}.border-red-9\/80{border-color:rgb(var(--red-9)/.8)}.border-red-9\/90{border-color:rgb(var(--red-9)/.9)}.border-red-9\/95{border-color:rgb(var(--red-9)/.95)}.border-secondary{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.border-secondary\/0{border-color:rgb(var(--secondary)/0)}.border-secondary\/10{border-color:rgb(var(--secondary)/.1)}.border-secondary\/100{border-color:rgb(var(--secondary)/1)}.border-secondary\/20{border-color:rgb(var(--secondary)/.2)}.border-secondary\/25{border-color:rgb(var(--secondary)/.25)}.border-secondary\/30{border-color:rgb(var(--secondary)/.3)}.border-secondary\/40{border-color:rgb(var(--secondary)/.4)}.border-secondary\/5{border-color:rgb(var(--secondary)/.05)}.border-secondary\/50{border-color:rgb(var(--secondary)/.5)}.border-secondary\/60{border-color:rgb(var(--secondary)/.6)}.border-secondary\/70{border-color:rgb(var(--secondary)/.7)}.border-secondary\/75{border-color:rgb(var(--secondary)/.75)}.border-secondary\/80{border-color:rgb(var(--secondary)/.8)}.border-secondary\/90{border-color:rgb(var(--secondary)/.9)}.border-secondary\/95{border-color:rgb(var(--secondary)/.95)}.border-slate-1\/0{border-color:rgb(var(--slate-1)/0)}.border-slate-1\/10{border-color:rgb(var(--slate-1)/.1)}.border-slate-1\/100{border-color:rgb(var(--slate-1)/1)}.border-slate-1\/20{border-color:rgb(var(--slate-1)/.2)}.border-slate-1\/25{border-color:rgb(var(--slate-1)/.25)}.border-slate-1\/30{border-color:rgb(var(--slate-1)/.3)}.border-slate-1\/40{border-color:rgb(var(--slate-1)/.4)}.border-slate-1\/5{border-color:rgb(var(--slate-1)/.05)}.border-slate-1\/50{border-color:rgb(var(--slate-1)/.5)}.border-slate-1\/60{border-color:rgb(var(--slate-1)/.6)}.border-slate-1\/70{border-color:rgb(var(--slate-1)/.7)}.border-slate-1\/75{border-color:rgb(var(--slate-1)/.75)}.border-slate-1\/80{border-color:rgb(var(--slate-1)/.8)}.border-slate-1\/90{border-color:rgb(var(--slate-1)/.9)}.border-slate-1\/95{border-color:rgb(var(--slate-1)/.95)}.border-slate-10\/0{border-color:rgb(var(--slate-10)/0)}.border-slate-10\/10{border-color:rgb(var(--slate-10)/.1)}.border-slate-10\/100{border-color:rgb(var(--slate-10)/1)}.border-slate-10\/20{border-color:rgb(var(--slate-10)/.2)}.border-slate-10\/25{border-color:rgb(var(--slate-10)/.25)}.border-slate-10\/30{border-color:rgb(var(--slate-10)/.3)}.border-slate-10\/40{border-color:rgb(var(--slate-10)/.4)}.border-slate-10\/5{border-color:rgb(var(--slate-10)/.05)}.border-slate-10\/50{border-color:rgb(var(--slate-10)/.5)}.border-slate-10\/60{border-color:rgb(var(--slate-10)/.6)}.border-slate-10\/70{border-color:rgb(var(--slate-10)/.7)}.border-slate-10\/75{border-color:rgb(var(--slate-10)/.75)}.border-slate-10\/80{border-color:rgb(var(--slate-10)/.8)}.border-slate-10\/90{border-color:rgb(var(--slate-10)/.9)}.border-slate-10\/95{border-color:rgb(var(--slate-10)/.95)}.border-slate-2\/0{border-color:rgb(var(--slate-2)/0)}.border-slate-2\/10{border-color:rgb(var(--slate-2)/.1)}.border-slate-2\/100{border-color:rgb(var(--slate-2)/1)}.border-slate-2\/20{border-color:rgb(var(--slate-2)/.2)}.border-slate-2\/25{border-color:rgb(var(--slate-2)/.25)}.border-slate-2\/30{border-color:rgb(var(--slate-2)/.3)}.border-slate-2\/40{border-color:rgb(var(--slate-2)/.4)}.border-slate-2\/5{border-color:rgb(var(--slate-2)/.05)}.border-slate-2\/50{border-color:rgb(var(--slate-2)/.5)}.border-slate-2\/60{border-color:rgb(var(--slate-2)/.6)}.border-slate-2\/70{border-color:rgb(var(--slate-2)/.7)}.border-slate-2\/75{border-color:rgb(var(--slate-2)/.75)}.border-slate-2\/80{border-color:rgb(var(--slate-2)/.8)}.border-slate-2\/90{border-color:rgb(var(--slate-2)/.9)}.border-slate-2\/95{border-color:rgb(var(--slate-2)/.95)}.border-slate-3\/0{border-color:rgb(var(--slate-3)/0)}.border-slate-3\/10{border-color:rgb(var(--slate-3)/.1)}.border-slate-3\/100{border-color:rgb(var(--slate-3)/1)}.border-slate-3\/20{border-color:rgb(var(--slate-3)/.2)}.border-slate-3\/25{border-color:rgb(var(--slate-3)/.25)}.border-slate-3\/30{border-color:rgb(var(--slate-3)/.3)}.border-slate-3\/40{border-color:rgb(var(--slate-3)/.4)}.border-slate-3\/5{border-color:rgb(var(--slate-3)/.05)}.border-slate-3\/50{border-color:rgb(var(--slate-3)/.5)}.border-slate-3\/60{border-color:rgb(var(--slate-3)/.6)}.border-slate-3\/70{border-color:rgb(var(--slate-3)/.7)}.border-slate-3\/75{border-color:rgb(var(--slate-3)/.75)}.border-slate-3\/80{border-color:rgb(var(--slate-3)/.8)}.border-slate-3\/90{border-color:rgb(var(--slate-3)/.9)}.border-slate-3\/95{border-color:rgb(var(--slate-3)/.95)}.border-slate-4\/0{border-color:rgb(var(--slate-4)/0)}.border-slate-4\/10{border-color:rgb(var(--slate-4)/.1)}.border-slate-4\/100{border-color:rgb(var(--slate-4)/1)}.border-slate-4\/20{border-color:rgb(var(--slate-4)/.2)}.border-slate-4\/25{border-color:rgb(var(--slate-4)/.25)}.border-slate-4\/30{border-color:rgb(var(--slate-4)/.3)}.border-slate-4\/40{border-color:rgb(var(--slate-4)/.4)}.border-slate-4\/5{border-color:rgb(var(--slate-4)/.05)}.border-slate-4\/50{border-color:rgb(var(--slate-4)/.5)}.border-slate-4\/60{border-color:rgb(var(--slate-4)/.6)}.border-slate-4\/70{border-color:rgb(var(--slate-4)/.7)}.border-slate-4\/75{border-color:rgb(var(--slate-4)/.75)}.border-slate-4\/80{border-color:rgb(var(--slate-4)/.8)}.border-slate-4\/90{border-color:rgb(var(--slate-4)/.9)}.border-slate-4\/95{border-color:rgb(var(--slate-4)/.95)}.border-slate-5\/0{border-color:rgb(var(--slate-5)/0)}.border-slate-5\/10{border-color:rgb(var(--slate-5)/.1)}.border-slate-5\/100{border-color:rgb(var(--slate-5)/1)}.border-slate-5\/20{border-color:rgb(var(--slate-5)/.2)}.border-slate-5\/25{border-color:rgb(var(--slate-5)/.25)}.border-slate-5\/30{border-color:rgb(var(--slate-5)/.3)}.border-slate-5\/40{border-color:rgb(var(--slate-5)/.4)}.border-slate-5\/5{border-color:rgb(var(--slate-5)/.05)}.border-slate-5\/50{border-color:rgb(var(--slate-5)/.5)}.border-slate-5\/60{border-color:rgb(var(--slate-5)/.6)}.border-slate-5\/70{border-color:rgb(var(--slate-5)/.7)}.border-slate-5\/75{border-color:rgb(var(--slate-5)/.75)}.border-slate-5\/80{border-color:rgb(var(--slate-5)/.8)}.border-slate-5\/90{border-color:rgb(var(--slate-5)/.9)}.border-slate-5\/95{border-color:rgb(var(--slate-5)/.95)}.border-slate-6\/0{border-color:rgb(var(--slate-6)/0)}.border-slate-6\/10{border-color:rgb(var(--slate-6)/.1)}.border-slate-6\/100{border-color:rgb(var(--slate-6)/1)}.border-slate-6\/20{border-color:rgb(var(--slate-6)/.2)}.border-slate-6\/25{border-color:rgb(var(--slate-6)/.25)}.border-slate-6\/30{border-color:rgb(var(--slate-6)/.3)}.border-slate-6\/40{border-color:rgb(var(--slate-6)/.4)}.border-slate-6\/5{border-color:rgb(var(--slate-6)/.05)}.border-slate-6\/50{border-color:rgb(var(--slate-6)/.5)}.border-slate-6\/60{border-color:rgb(var(--slate-6)/.6)}.border-slate-6\/70{border-color:rgb(var(--slate-6)/.7)}.border-slate-6\/75{border-color:rgb(var(--slate-6)/.75)}.border-slate-6\/80{border-color:rgb(var(--slate-6)/.8)}.border-slate-6\/90{border-color:rgb(var(--slate-6)/.9)}.border-slate-6\/95{border-color:rgb(var(--slate-6)/.95)}.border-slate-7\/0{border-color:rgb(var(--slate-7)/0)}.border-slate-7\/10{border-color:rgb(var(--slate-7)/.1)}.border-slate-7\/100{border-color:rgb(var(--slate-7)/1)}.border-slate-7\/20{border-color:rgb(var(--slate-7)/.2)}.border-slate-7\/25{border-color:rgb(var(--slate-7)/.25)}.border-slate-7\/30{border-color:rgb(var(--slate-7)/.3)}.border-slate-7\/40{border-color:rgb(var(--slate-7)/.4)}.border-slate-7\/5{border-color:rgb(var(--slate-7)/.05)}.border-slate-7\/50{border-color:rgb(var(--slate-7)/.5)}.border-slate-7\/60{border-color:rgb(var(--slate-7)/.6)}.border-slate-7\/70{border-color:rgb(var(--slate-7)/.7)}.border-slate-7\/75{border-color:rgb(var(--slate-7)/.75)}.border-slate-7\/80{border-color:rgb(var(--slate-7)/.8)}.border-slate-7\/90{border-color:rgb(var(--slate-7)/.9)}.border-slate-7\/95{border-color:rgb(var(--slate-7)/.95)}.border-slate-8\/0{border-color:rgb(var(--slate-8)/0)}.border-slate-8\/10{border-color:rgb(var(--slate-8)/.1)}.border-slate-8\/100{border-color:rgb(var(--slate-8)/1)}.border-slate-8\/20{border-color:rgb(var(--slate-8)/.2)}.border-slate-8\/25{border-color:rgb(var(--slate-8)/.25)}.border-slate-8\/30{border-color:rgb(var(--slate-8)/.3)}.border-slate-8\/40{border-color:rgb(var(--slate-8)/.4)}.border-slate-8\/5{border-color:rgb(var(--slate-8)/.05)}.border-slate-8\/50{border-color:rgb(var(--slate-8)/.5)}.border-slate-8\/60{border-color:rgb(var(--slate-8)/.6)}.border-slate-8\/70{border-color:rgb(var(--slate-8)/.7)}.border-slate-8\/75{border-color:rgb(var(--slate-8)/.75)}.border-slate-8\/80{border-color:rgb(var(--slate-8)/.8)}.border-slate-8\/90{border-color:rgb(var(--slate-8)/.9)}.border-slate-8\/95{border-color:rgb(var(--slate-8)/.95)}.border-slate-9\/0{border-color:rgb(var(--slate-9)/0)}.border-slate-9\/10{border-color:rgb(var(--slate-9)/.1)}.border-slate-9\/100{border-color:rgb(var(--slate-9)/1)}.border-slate-9\/20{border-color:rgb(var(--slate-9)/.2)}.border-slate-9\/25{border-color:rgb(var(--slate-9)/.25)}.border-slate-9\/30{border-color:rgb(var(--slate-9)/.3)}.border-slate-9\/40{border-color:rgb(var(--slate-9)/.4)}.border-slate-9\/5{border-color:rgb(var(--slate-9)/.05)}.border-slate-9\/50{border-color:rgb(var(--slate-9)/.5)}.border-slate-9\/60{border-color:rgb(var(--slate-9)/.6)}.border-slate-9\/70{border-color:rgb(var(--slate-9)/.7)}.border-slate-9\/75{border-color:rgb(var(--slate-9)/.75)}.border-slate-9\/80{border-color:rgb(var(--slate-9)/.8)}.border-slate-9\/90{border-color:rgb(var(--slate-9)/.9)}.border-slate-9\/95{border-color:rgb(var(--slate-9)/.95)}.border-success{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.border-success\/0{border-color:rgb(var(--success)/0)}.border-success\/10{border-color:rgb(var(--success)/.1)}.border-success\/100{border-color:rgb(var(--success)/1)}.border-success\/20{border-color:rgb(var(--success)/.2)}.border-success\/25{border-color:rgb(var(--success)/.25)}.border-success\/30{border-color:rgb(var(--success)/.3)}.border-success\/40{border-color:rgb(var(--success)/.4)}.border-success\/5{border-color:rgb(var(--success)/.05)}.border-success\/50{border-color:rgb(var(--success)/.5)}.border-success\/60{border-color:rgb(var(--success)/.6)}.border-success\/70{border-color:rgb(var(--success)/.7)}.border-success\/75{border-color:rgb(var(--success)/.75)}.border-success\/80{border-color:rgb(var(--success)/.8)}.border-success\/90{border-color:rgb(var(--success)/.9)}.border-success\/95{border-color:rgb(var(--success)/.95)}.border-warning{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.border-warning\/0{border-color:rgb(var(--warning)/0)}.border-warning\/10{border-color:rgb(var(--warning)/.1)}.border-warning\/100{border-color:rgb(var(--warning)/1)}.border-warning\/20{border-color:rgb(var(--warning)/.2)}.border-warning\/25{border-color:rgb(var(--warning)/.25)}.border-warning\/30{border-color:rgb(var(--warning)/.3)}.border-warning\/40{border-color:rgb(var(--warning)/.4)}.border-warning\/5{border-color:rgb(var(--warning)/.05)}.border-warning\/50{border-color:rgb(var(--warning)/.5)}.border-warning\/60{border-color:rgb(var(--warning)/.6)}.border-warning\/70{border-color:rgb(var(--warning)/.7)}.border-warning\/75{border-color:rgb(var(--warning)/.75)}.border-warning\/80{border-color:rgb(var(--warning)/.8)}.border-warning\/90{border-color:rgb(var(--warning)/.9)}.border-warning\/95{border-color:rgb(var(--warning)/.95)}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.border-white\/0{border-color:hsla(0,0%,100%,0)}.border-white\/10{border-color:hsla(0,0%,100%,.1)}.border-white\/100{border-color:#fff}.border-white\/20{border-color:hsla(0,0%,100%,.2)}.border-white\/25{border-color:hsla(0,0%,100%,.25)}.border-white\/30{border-color:hsla(0,0%,100%,.3)}.border-white\/40{border-color:hsla(0,0%,100%,.4)}.border-white\/5{border-color:hsla(0,0%,100%,.05)}.border-white\/50{border-color:hsla(0,0%,100%,.5)}.border-white\/60{border-color:hsla(0,0%,100%,.6)}.border-white\/70{border-color:hsla(0,0%,100%,.7)}.border-white\/75{border-color:hsla(0,0%,100%,.75)}.border-white\/80{border-color:hsla(0,0%,100%,.8)}.border-white\/90{border-color:hsla(0,0%,100%,.9)}.border-white\/95{border-color:hsla(0,0%,100%,.95)}.border-whiteInverted{--tw-border-opacity:1;border-color:rgb(var(--whiteInverted)/var(--tw-border-opacity))}.border-whiteInverted\/0{border-color:rgb(var(--whiteInverted)/0)}.border-whiteInverted\/10{border-color:rgb(var(--whiteInverted)/.1)}.border-whiteInverted\/100{border-color:rgb(var(--whiteInverted)/1)}.border-whiteInverted\/20{border-color:rgb(var(--whiteInverted)/.2)}.border-whiteInverted\/25{border-color:rgb(var(--whiteInverted)/.25)}.border-whiteInverted\/30{border-color:rgb(var(--whiteInverted)/.3)}.border-whiteInverted\/40{border-color:rgb(var(--whiteInverted)/.4)}.border-whiteInverted\/5{border-color:rgb(var(--whiteInverted)/.05)}.border-whiteInverted\/50{border-color:rgb(var(--whiteInverted)/.5)}.border-whiteInverted\/60{border-color:rgb(var(--whiteInverted)/.6)}.border-whiteInverted\/70{border-color:rgb(var(--whiteInverted)/.7)}.border-whiteInverted\/75{border-color:rgb(var(--whiteInverted)/.75)}.border-whiteInverted\/80{border-color:rgb(var(--whiteInverted)/.8)}.border-whiteInverted\/90{border-color:rgb(var(--whiteInverted)/.9)}.border-whiteInverted\/95{border-color:rgb(var(--whiteInverted)/.95)}.bg-backgroundPrimary{--tw-bg-opacity:1;background-color:rgb(var(--backgroundPrimary)/var(--tw-bg-opacity))}.bg-backgroundPrimary\/0{background-color:rgb(var(--backgroundPrimary)/0)}.bg-backgroundPrimary\/10{background-color:rgb(var(--backgroundPrimary)/.1)}.bg-backgroundPrimary\/100{background-color:rgb(var(--backgroundPrimary)/1)}.bg-backgroundPrimary\/20{background-color:rgb(var(--backgroundPrimary)/.2)}.bg-backgroundPrimary\/25{background-color:rgb(var(--backgroundPrimary)/.25)}.bg-backgroundPrimary\/30{background-color:rgb(var(--backgroundPrimary)/.3)}.bg-backgroundPrimary\/40{background-color:rgb(var(--backgroundPrimary)/.4)}.bg-backgroundPrimary\/5{background-color:rgb(var(--backgroundPrimary)/.05)}.bg-backgroundPrimary\/50{background-color:rgb(var(--backgroundPrimary)/.5)}.bg-backgroundPrimary\/60{background-color:rgb(var(--backgroundPrimary)/.6)}.bg-backgroundPrimary\/70{background-color:rgb(var(--backgroundPrimary)/.7)}.bg-backgroundPrimary\/75{background-color:rgb(var(--backgroundPrimary)/.75)}.bg-backgroundPrimary\/80{background-color:rgb(var(--backgroundPrimary)/.8)}.bg-backgroundPrimary\/90{background-color:rgb(var(--backgroundPrimary)/.9)}.bg-backgroundPrimary\/95{background-color:rgb(var(--backgroundPrimary)/.95)}.bg-backgroundSecondary{--tw-bg-opacity:1;background-color:rgb(var(--backgroundSecondary)/var(--tw-bg-opacity))}.bg-backgroundSecondary\/0{background-color:rgb(var(--backgroundSecondary)/0)}.bg-backgroundSecondary\/10{background-color:rgb(var(--backgroundSecondary)/.1)}.bg-backgroundSecondary\/100{background-color:rgb(var(--backgroundSecondary)/1)}.bg-backgroundSecondary\/20{background-color:rgb(var(--backgroundSecondary)/.2)}.bg-backgroundSecondary\/25{background-color:rgb(var(--backgroundSecondary)/.25)}.bg-backgroundSecondary\/30{background-color:rgb(var(--backgroundSecondary)/.3)}.bg-backgroundSecondary\/40{background-color:rgb(var(--backgroundSecondary)/.4)}.bg-backgroundSecondary\/5{background-color:rgb(var(--backgroundSecondary)/.05)}.bg-backgroundSecondary\/50{background-color:rgb(var(--backgroundSecondary)/.5)}.bg-backgroundSecondary\/60{background-color:rgb(var(--backgroundSecondary)/.6)}.bg-backgroundSecondary\/70{background-color:rgb(var(--backgroundSecondary)/.7)}.bg-backgroundSecondary\/75{background-color:rgb(var(--backgroundSecondary)/.75)}.bg-backgroundSecondary\/80{background-color:rgb(var(--backgroundSecondary)/.8)}.bg-backgroundSecondary\/90{background-color:rgb(var(--backgroundSecondary)/.9)}.bg-backgroundSecondary\/95{background-color:rgb(var(--backgroundSecondary)/.95)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-black\/0{background-color:transparent}.bg-black\/10{background-color:rgba(0,0,0,.1)}.bg-black\/100{background-color:#000}.bg-black\/20{background-color:rgba(0,0,0,.2)}.bg-black\/25{background-color:rgba(0,0,0,.25)}.bg-black\/30{background-color:rgba(0,0,0,.3)}.bg-black\/40{background-color:rgba(0,0,0,.4)}.bg-black\/5{background-color:rgba(0,0,0,.05)}.bg-black\/50{background-color:rgba(0,0,0,.5)}.bg-black\/60{background-color:rgba(0,0,0,.6)}.bg-black\/70{background-color:rgba(0,0,0,.7)}.bg-black\/75{background-color:rgba(0,0,0,.75)}.bg-black\/80{background-color:rgba(0,0,0,.8)}.bg-black\/90{background-color:rgba(0,0,0,.9)}.bg-black\/95{background-color:rgba(0,0,0,.95)}.bg-blackInverted{--tw-bg-opacity:1;background-color:rgb(var(--blackInverted)/var(--tw-bg-opacity))}.bg-blackInverted\/0{background-color:rgb(var(--blackInverted)/0)}.bg-blackInverted\/10{background-color:rgb(var(--blackInverted)/.1)}.bg-blackInverted\/100{background-color:rgb(var(--blackInverted)/1)}.bg-blackInverted\/20{background-color:rgb(var(--blackInverted)/.2)}.bg-blackInverted\/25{background-color:rgb(var(--blackInverted)/.25)}.bg-blackInverted\/30{background-color:rgb(var(--blackInverted)/.3)}.bg-blackInverted\/40{background-color:rgb(var(--blackInverted)/.4)}.bg-blackInverted\/5{background-color:rgb(var(--blackInverted)/.05)}.bg-blackInverted\/50{background-color:rgb(var(--blackInverted)/.5)}.bg-blackInverted\/60{background-color:rgb(var(--blackInverted)/.6)}.bg-blackInverted\/70{background-color:rgb(var(--blackInverted)/.7)}.bg-blackInverted\/75{background-color:rgb(var(--blackInverted)/.75)}.bg-blackInverted\/80{background-color:rgb(var(--blackInverted)/.8)}.bg-blackInverted\/90{background-color:rgb(var(--blackInverted)/.9)}.bg-blackInverted\/95{background-color:rgb(var(--blackInverted)/.95)}.bg-blue-1\/0{background-color:rgb(var(--blue-1)/0)}.bg-blue-1\/10{background-color:rgb(var(--blue-1)/.1)}.bg-blue-1\/100{background-color:rgb(var(--blue-1)/1)}.bg-blue-1\/20{background-color:rgb(var(--blue-1)/.2)}.bg-blue-1\/25{background-color:rgb(var(--blue-1)/.25)}.bg-blue-1\/30{background-color:rgb(var(--blue-1)/.3)}.bg-blue-1\/40{background-color:rgb(var(--blue-1)/.4)}.bg-blue-1\/5{background-color:rgb(var(--blue-1)/.05)}.bg-blue-1\/50{background-color:rgb(var(--blue-1)/.5)}.bg-blue-1\/60{background-color:rgb(var(--blue-1)/.6)}.bg-blue-1\/70{background-color:rgb(var(--blue-1)/.7)}.bg-blue-1\/75{background-color:rgb(var(--blue-1)/.75)}.bg-blue-1\/80{background-color:rgb(var(--blue-1)/.8)}.bg-blue-1\/90{background-color:rgb(var(--blue-1)/.9)}.bg-blue-1\/95{background-color:rgb(var(--blue-1)/.95)}.bg-blue-10\/0{background-color:rgb(var(--blue-10)/0)}.bg-blue-10\/10{background-color:rgb(var(--blue-10)/.1)}.bg-blue-10\/100{background-color:rgb(var(--blue-10)/1)}.bg-blue-10\/20{background-color:rgb(var(--blue-10)/.2)}.bg-blue-10\/25{background-color:rgb(var(--blue-10)/.25)}.bg-blue-10\/30{background-color:rgb(var(--blue-10)/.3)}.bg-blue-10\/40{background-color:rgb(var(--blue-10)/.4)}.bg-blue-10\/5{background-color:rgb(var(--blue-10)/.05)}.bg-blue-10\/50{background-color:rgb(var(--blue-10)/.5)}.bg-blue-10\/60{background-color:rgb(var(--blue-10)/.6)}.bg-blue-10\/70{background-color:rgb(var(--blue-10)/.7)}.bg-blue-10\/75{background-color:rgb(var(--blue-10)/.75)}.bg-blue-10\/80{background-color:rgb(var(--blue-10)/.8)}.bg-blue-10\/90{background-color:rgb(var(--blue-10)/.9)}.bg-blue-10\/95{background-color:rgb(var(--blue-10)/.95)}.bg-blue-2\/0{background-color:rgb(var(--blue-2)/0)}.bg-blue-2\/10{background-color:rgb(var(--blue-2)/.1)}.bg-blue-2\/100{background-color:rgb(var(--blue-2)/1)}.bg-blue-2\/20{background-color:rgb(var(--blue-2)/.2)}.bg-blue-2\/25{background-color:rgb(var(--blue-2)/.25)}.bg-blue-2\/30{background-color:rgb(var(--blue-2)/.3)}.bg-blue-2\/40{background-color:rgb(var(--blue-2)/.4)}.bg-blue-2\/5{background-color:rgb(var(--blue-2)/.05)}.bg-blue-2\/50{background-color:rgb(var(--blue-2)/.5)}.bg-blue-2\/60{background-color:rgb(var(--blue-2)/.6)}.bg-blue-2\/70{background-color:rgb(var(--blue-2)/.7)}.bg-blue-2\/75{background-color:rgb(var(--blue-2)/.75)}.bg-blue-2\/80{background-color:rgb(var(--blue-2)/.8)}.bg-blue-2\/90{background-color:rgb(var(--blue-2)/.9)}.bg-blue-2\/95{background-color:rgb(var(--blue-2)/.95)}.bg-blue-3\/0{background-color:rgb(var(--blue-3)/0)}.bg-blue-3\/10{background-color:rgb(var(--blue-3)/.1)}.bg-blue-3\/100{background-color:rgb(var(--blue-3)/1)}.bg-blue-3\/20{background-color:rgb(var(--blue-3)/.2)}.bg-blue-3\/25{background-color:rgb(var(--blue-3)/.25)}.bg-blue-3\/30{background-color:rgb(var(--blue-3)/.3)}.bg-blue-3\/40{background-color:rgb(var(--blue-3)/.4)}.bg-blue-3\/5{background-color:rgb(var(--blue-3)/.05)}.bg-blue-3\/50{background-color:rgb(var(--blue-3)/.5)}.bg-blue-3\/60{background-color:rgb(var(--blue-3)/.6)}.bg-blue-3\/70{background-color:rgb(var(--blue-3)/.7)}.bg-blue-3\/75{background-color:rgb(var(--blue-3)/.75)}.bg-blue-3\/80{background-color:rgb(var(--blue-3)/.8)}.bg-blue-3\/90{background-color:rgb(var(--blue-3)/.9)}.bg-blue-3\/95{background-color:rgb(var(--blue-3)/.95)}.bg-blue-4\/0{background-color:rgb(var(--blue-4)/0)}.bg-blue-4\/10{background-color:rgb(var(--blue-4)/.1)}.bg-blue-4\/100{background-color:rgb(var(--blue-4)/1)}.bg-blue-4\/20{background-color:rgb(var(--blue-4)/.2)}.bg-blue-4\/25{background-color:rgb(var(--blue-4)/.25)}.bg-blue-4\/30{background-color:rgb(var(--blue-4)/.3)}.bg-blue-4\/40{background-color:rgb(var(--blue-4)/.4)}.bg-blue-4\/5{background-color:rgb(var(--blue-4)/.05)}.bg-blue-4\/50{background-color:rgb(var(--blue-4)/.5)}.bg-blue-4\/60{background-color:rgb(var(--blue-4)/.6)}.bg-blue-4\/70{background-color:rgb(var(--blue-4)/.7)}.bg-blue-4\/75{background-color:rgb(var(--blue-4)/.75)}.bg-blue-4\/80{background-color:rgb(var(--blue-4)/.8)}.bg-blue-4\/90{background-color:rgb(var(--blue-4)/.9)}.bg-blue-4\/95{background-color:rgb(var(--blue-4)/.95)}.bg-blue-5\/0{background-color:rgb(var(--blue-5)/0)}.bg-blue-5\/10{background-color:rgb(var(--blue-5)/.1)}.bg-blue-5\/100{background-color:rgb(var(--blue-5)/1)}.bg-blue-5\/20{background-color:rgb(var(--blue-5)/.2)}.bg-blue-5\/25{background-color:rgb(var(--blue-5)/.25)}.bg-blue-5\/30{background-color:rgb(var(--blue-5)/.3)}.bg-blue-5\/40{background-color:rgb(var(--blue-5)/.4)}.bg-blue-5\/5{background-color:rgb(var(--blue-5)/.05)}.bg-blue-5\/50{background-color:rgb(var(--blue-5)/.5)}.bg-blue-5\/60{background-color:rgb(var(--blue-5)/.6)}.bg-blue-5\/70{background-color:rgb(var(--blue-5)/.7)}.bg-blue-5\/75{background-color:rgb(var(--blue-5)/.75)}.bg-blue-5\/80{background-color:rgb(var(--blue-5)/.8)}.bg-blue-5\/90{background-color:rgb(var(--blue-5)/.9)}.bg-blue-5\/95{background-color:rgb(var(--blue-5)/.95)}.bg-blue-6\/0{background-color:rgb(var(--blue-6)/0)}.bg-blue-6\/10{background-color:rgb(var(--blue-6)/.1)}.bg-blue-6\/100{background-color:rgb(var(--blue-6)/1)}.bg-blue-6\/20{background-color:rgb(var(--blue-6)/.2)}.bg-blue-6\/25{background-color:rgb(var(--blue-6)/.25)}.bg-blue-6\/30{background-color:rgb(var(--blue-6)/.3)}.bg-blue-6\/40{background-color:rgb(var(--blue-6)/.4)}.bg-blue-6\/5{background-color:rgb(var(--blue-6)/.05)}.bg-blue-6\/50{background-color:rgb(var(--blue-6)/.5)}.bg-blue-6\/60{background-color:rgb(var(--blue-6)/.6)}.bg-blue-6\/70{background-color:rgb(var(--blue-6)/.7)}.bg-blue-6\/75{background-color:rgb(var(--blue-6)/.75)}.bg-blue-6\/80{background-color:rgb(var(--blue-6)/.8)}.bg-blue-6\/90{background-color:rgb(var(--blue-6)/.9)}.bg-blue-6\/95{background-color:rgb(var(--blue-6)/.95)}.bg-blue-7\/0{background-color:rgb(var(--blue-7)/0)}.bg-blue-7\/10{background-color:rgb(var(--blue-7)/.1)}.bg-blue-7\/100{background-color:rgb(var(--blue-7)/1)}.bg-blue-7\/20{background-color:rgb(var(--blue-7)/.2)}.bg-blue-7\/25{background-color:rgb(var(--blue-7)/.25)}.bg-blue-7\/30{background-color:rgb(var(--blue-7)/.3)}.bg-blue-7\/40{background-color:rgb(var(--blue-7)/.4)}.bg-blue-7\/5{background-color:rgb(var(--blue-7)/.05)}.bg-blue-7\/50{background-color:rgb(var(--blue-7)/.5)}.bg-blue-7\/60{background-color:rgb(var(--blue-7)/.6)}.bg-blue-7\/70{background-color:rgb(var(--blue-7)/.7)}.bg-blue-7\/75{background-color:rgb(var(--blue-7)/.75)}.bg-blue-7\/80{background-color:rgb(var(--blue-7)/.8)}.bg-blue-7\/90{background-color:rgb(var(--blue-7)/.9)}.bg-blue-7\/95{background-color:rgb(var(--blue-7)/.95)}.bg-blue-8\/0{background-color:rgb(var(--blue-8)/0)}.bg-blue-8\/10{background-color:rgb(var(--blue-8)/.1)}.bg-blue-8\/100{background-color:rgb(var(--blue-8)/1)}.bg-blue-8\/20{background-color:rgb(var(--blue-8)/.2)}.bg-blue-8\/25{background-color:rgb(var(--blue-8)/.25)}.bg-blue-8\/30{background-color:rgb(var(--blue-8)/.3)}.bg-blue-8\/40{background-color:rgb(var(--blue-8)/.4)}.bg-blue-8\/5{background-color:rgb(var(--blue-8)/.05)}.bg-blue-8\/50{background-color:rgb(var(--blue-8)/.5)}.bg-blue-8\/60{background-color:rgb(var(--blue-8)/.6)}.bg-blue-8\/70{background-color:rgb(var(--blue-8)/.7)}.bg-blue-8\/75{background-color:rgb(var(--blue-8)/.75)}.bg-blue-8\/80{background-color:rgb(var(--blue-8)/.8)}.bg-blue-8\/90{background-color:rgb(var(--blue-8)/.9)}.bg-blue-8\/95{background-color:rgb(var(--blue-8)/.95)}.bg-blue-9\/0{background-color:rgb(var(--blue-9)/0)}.bg-blue-9\/10{background-color:rgb(var(--blue-9)/.1)}.bg-blue-9\/100{background-color:rgb(var(--blue-9)/1)}.bg-blue-9\/20{background-color:rgb(var(--blue-9)/.2)}.bg-blue-9\/25{background-color:rgb(var(--blue-9)/.25)}.bg-blue-9\/30{background-color:rgb(var(--blue-9)/.3)}.bg-blue-9\/40{background-color:rgb(var(--blue-9)/.4)}.bg-blue-9\/5{background-color:rgb(var(--blue-9)/.05)}.bg-blue-9\/50{background-color:rgb(var(--blue-9)/.5)}.bg-blue-9\/60{background-color:rgb(var(--blue-9)/.6)}.bg-blue-9\/70{background-color:rgb(var(--blue-9)/.7)}.bg-blue-9\/75{background-color:rgb(var(--blue-9)/.75)}.bg-blue-9\/80{background-color:rgb(var(--blue-9)/.8)}.bg-blue-9\/90{background-color:rgb(var(--blue-9)/.9)}.bg-blue-9\/95{background-color:rgb(var(--blue-9)/.95)}.bg-border{--tw-bg-opacity:1;background-color:rgb(var(--border)/var(--tw-bg-opacity))}.bg-border\/0{background-color:rgb(var(--border)/0)}.bg-border\/10{background-color:rgb(var(--border)/.1)}.bg-border\/100{background-color:rgb(var(--border)/1)}.bg-border\/20{background-color:rgb(var(--border)/.2)}.bg-border\/25{background-color:rgb(var(--border)/.25)}.bg-border\/30{background-color:rgb(var(--border)/.3)}.bg-border\/40{background-color:rgb(var(--border)/.4)}.bg-border\/5{background-color:rgb(var(--border)/.05)}.bg-border\/50{background-color:rgb(var(--border)/.5)}.bg-border\/60{background-color:rgb(var(--border)/.6)}.bg-border\/70{background-color:rgb(var(--border)/.7)}.bg-border\/75{background-color:rgb(var(--border)/.75)}.bg-border\/80{background-color:rgb(var(--border)/.8)}.bg-border\/90{background-color:rgb(var(--border)/.9)}.bg-border\/95{background-color:rgb(var(--border)/.95)}.bg-content1{--tw-bg-opacity:1;background-color:rgb(var(--content1)/var(--tw-bg-opacity))}.bg-content1\/0{background-color:rgb(var(--content1)/0)}.bg-content1\/10{background-color:rgb(var(--content1)/.1)}.bg-content1\/100{background-color:rgb(var(--content1)/1)}.bg-content1\/20{background-color:rgb(var(--content1)/.2)}.bg-content1\/25{background-color:rgb(var(--content1)/.25)}.bg-content1\/30{background-color:rgb(var(--content1)/.3)}.bg-content1\/40{background-color:rgb(var(--content1)/.4)}.bg-content1\/5{background-color:rgb(var(--content1)/.05)}.bg-content1\/50{background-color:rgb(var(--content1)/.5)}.bg-content1\/60{background-color:rgb(var(--content1)/.6)}.bg-content1\/70{background-color:rgb(var(--content1)/.7)}.bg-content1\/75{background-color:rgb(var(--content1)/.75)}.bg-content1\/80{background-color:rgb(var(--content1)/.8)}.bg-content1\/90{background-color:rgb(var(--content1)/.9)}.bg-content1\/95{background-color:rgb(var(--content1)/.95)}.bg-content2{--tw-bg-opacity:1;background-color:rgb(var(--content2)/var(--tw-bg-opacity))}.bg-content2\/0{background-color:rgb(var(--content2)/0)}.bg-content2\/10{background-color:rgb(var(--content2)/.1)}.bg-content2\/100{background-color:rgb(var(--content2)/1)}.bg-content2\/20{background-color:rgb(var(--content2)/.2)}.bg-content2\/25{background-color:rgb(var(--content2)/.25)}.bg-content2\/30{background-color:rgb(var(--content2)/.3)}.bg-content2\/40{background-color:rgb(var(--content2)/.4)}.bg-content2\/5{background-color:rgb(var(--content2)/.05)}.bg-content2\/50{background-color:rgb(var(--content2)/.5)}.bg-content2\/60{background-color:rgb(var(--content2)/.6)}.bg-content2\/70{background-color:rgb(var(--content2)/.7)}.bg-content2\/75{background-color:rgb(var(--content2)/.75)}.bg-content2\/80{background-color:rgb(var(--content2)/.8)}.bg-content2\/90{background-color:rgb(var(--content2)/.9)}.bg-content2\/95{background-color:rgb(var(--content2)/.95)}.bg-content3{--tw-bg-opacity:1;background-color:rgb(var(--content3)/var(--tw-bg-opacity))}.bg-content3\/0{background-color:rgb(var(--content3)/0)}.bg-content3\/10{background-color:rgb(var(--content3)/.1)}.bg-content3\/100{background-color:rgb(var(--content3)/1)}.bg-content3\/20{background-color:rgb(var(--content3)/.2)}.bg-content3\/25{background-color:rgb(var(--content3)/.25)}.bg-content3\/30{background-color:rgb(var(--content3)/.3)}.bg-content3\/40{background-color:rgb(var(--content3)/.4)}.bg-content3\/5{background-color:rgb(var(--content3)/.05)}.bg-content3\/50{background-color:rgb(var(--content3)/.5)}.bg-content3\/60{background-color:rgb(var(--content3)/.6)}.bg-content3\/70{background-color:rgb(var(--content3)/.7)}.bg-content3\/75{background-color:rgb(var(--content3)/.75)}.bg-content3\/80{background-color:rgb(var(--content3)/.8)}.bg-content3\/90{background-color:rgb(var(--content3)/.9)}.bg-content3\/95{background-color:rgb(var(--content3)/.95)}.bg-cyan-1\/0{background-color:rgb(var(--cyan-1)/0)}.bg-cyan-1\/10{background-color:rgb(var(--cyan-1)/.1)}.bg-cyan-1\/100{background-color:rgb(var(--cyan-1)/1)}.bg-cyan-1\/20{background-color:rgb(var(--cyan-1)/.2)}.bg-cyan-1\/25{background-color:rgb(var(--cyan-1)/.25)}.bg-cyan-1\/30{background-color:rgb(var(--cyan-1)/.3)}.bg-cyan-1\/40{background-color:rgb(var(--cyan-1)/.4)}.bg-cyan-1\/5{background-color:rgb(var(--cyan-1)/.05)}.bg-cyan-1\/50{background-color:rgb(var(--cyan-1)/.5)}.bg-cyan-1\/60{background-color:rgb(var(--cyan-1)/.6)}.bg-cyan-1\/70{background-color:rgb(var(--cyan-1)/.7)}.bg-cyan-1\/75{background-color:rgb(var(--cyan-1)/.75)}.bg-cyan-1\/80{background-color:rgb(var(--cyan-1)/.8)}.bg-cyan-1\/90{background-color:rgb(var(--cyan-1)/.9)}.bg-cyan-1\/95{background-color:rgb(var(--cyan-1)/.95)}.bg-cyan-10\/0{background-color:rgb(var(--cyan-10)/0)}.bg-cyan-10\/10{background-color:rgb(var(--cyan-10)/.1)}.bg-cyan-10\/100{background-color:rgb(var(--cyan-10)/1)}.bg-cyan-10\/20{background-color:rgb(var(--cyan-10)/.2)}.bg-cyan-10\/25{background-color:rgb(var(--cyan-10)/.25)}.bg-cyan-10\/30{background-color:rgb(var(--cyan-10)/.3)}.bg-cyan-10\/40{background-color:rgb(var(--cyan-10)/.4)}.bg-cyan-10\/5{background-color:rgb(var(--cyan-10)/.05)}.bg-cyan-10\/50{background-color:rgb(var(--cyan-10)/.5)}.bg-cyan-10\/60{background-color:rgb(var(--cyan-10)/.6)}.bg-cyan-10\/70{background-color:rgb(var(--cyan-10)/.7)}.bg-cyan-10\/75{background-color:rgb(var(--cyan-10)/.75)}.bg-cyan-10\/80{background-color:rgb(var(--cyan-10)/.8)}.bg-cyan-10\/90{background-color:rgb(var(--cyan-10)/.9)}.bg-cyan-10\/95{background-color:rgb(var(--cyan-10)/.95)}.bg-cyan-2\/0{background-color:rgb(var(--cyan-2)/0)}.bg-cyan-2\/10{background-color:rgb(var(--cyan-2)/.1)}.bg-cyan-2\/100{background-color:rgb(var(--cyan-2)/1)}.bg-cyan-2\/20{background-color:rgb(var(--cyan-2)/.2)}.bg-cyan-2\/25{background-color:rgb(var(--cyan-2)/.25)}.bg-cyan-2\/30{background-color:rgb(var(--cyan-2)/.3)}.bg-cyan-2\/40{background-color:rgb(var(--cyan-2)/.4)}.bg-cyan-2\/5{background-color:rgb(var(--cyan-2)/.05)}.bg-cyan-2\/50{background-color:rgb(var(--cyan-2)/.5)}.bg-cyan-2\/60{background-color:rgb(var(--cyan-2)/.6)}.bg-cyan-2\/70{background-color:rgb(var(--cyan-2)/.7)}.bg-cyan-2\/75{background-color:rgb(var(--cyan-2)/.75)}.bg-cyan-2\/80{background-color:rgb(var(--cyan-2)/.8)}.bg-cyan-2\/90{background-color:rgb(var(--cyan-2)/.9)}.bg-cyan-2\/95{background-color:rgb(var(--cyan-2)/.95)}.bg-cyan-3\/0{background-color:rgb(var(--cyan-3)/0)}.bg-cyan-3\/10{background-color:rgb(var(--cyan-3)/.1)}.bg-cyan-3\/100{background-color:rgb(var(--cyan-3)/1)}.bg-cyan-3\/20{background-color:rgb(var(--cyan-3)/.2)}.bg-cyan-3\/25{background-color:rgb(var(--cyan-3)/.25)}.bg-cyan-3\/30{background-color:rgb(var(--cyan-3)/.3)}.bg-cyan-3\/40{background-color:rgb(var(--cyan-3)/.4)}.bg-cyan-3\/5{background-color:rgb(var(--cyan-3)/.05)}.bg-cyan-3\/50{background-color:rgb(var(--cyan-3)/.5)}.bg-cyan-3\/60{background-color:rgb(var(--cyan-3)/.6)}.bg-cyan-3\/70{background-color:rgb(var(--cyan-3)/.7)}.bg-cyan-3\/75{background-color:rgb(var(--cyan-3)/.75)}.bg-cyan-3\/80{background-color:rgb(var(--cyan-3)/.8)}.bg-cyan-3\/90{background-color:rgb(var(--cyan-3)/.9)}.bg-cyan-3\/95{background-color:rgb(var(--cyan-3)/.95)}.bg-cyan-4\/0{background-color:rgb(var(--cyan-4)/0)}.bg-cyan-4\/10{background-color:rgb(var(--cyan-4)/.1)}.bg-cyan-4\/100{background-color:rgb(var(--cyan-4)/1)}.bg-cyan-4\/20{background-color:rgb(var(--cyan-4)/.2)}.bg-cyan-4\/25{background-color:rgb(var(--cyan-4)/.25)}.bg-cyan-4\/30{background-color:rgb(var(--cyan-4)/.3)}.bg-cyan-4\/40{background-color:rgb(var(--cyan-4)/.4)}.bg-cyan-4\/5{background-color:rgb(var(--cyan-4)/.05)}.bg-cyan-4\/50{background-color:rgb(var(--cyan-4)/.5)}.bg-cyan-4\/60{background-color:rgb(var(--cyan-4)/.6)}.bg-cyan-4\/70{background-color:rgb(var(--cyan-4)/.7)}.bg-cyan-4\/75{background-color:rgb(var(--cyan-4)/.75)}.bg-cyan-4\/80{background-color:rgb(var(--cyan-4)/.8)}.bg-cyan-4\/90{background-color:rgb(var(--cyan-4)/.9)}.bg-cyan-4\/95{background-color:rgb(var(--cyan-4)/.95)}.bg-cyan-5\/0{background-color:rgb(var(--cyan-5)/0)}.bg-cyan-5\/10{background-color:rgb(var(--cyan-5)/.1)}.bg-cyan-5\/100{background-color:rgb(var(--cyan-5)/1)}.bg-cyan-5\/20{background-color:rgb(var(--cyan-5)/.2)}.bg-cyan-5\/25{background-color:rgb(var(--cyan-5)/.25)}.bg-cyan-5\/30{background-color:rgb(var(--cyan-5)/.3)}.bg-cyan-5\/40{background-color:rgb(var(--cyan-5)/.4)}.bg-cyan-5\/5{background-color:rgb(var(--cyan-5)/.05)}.bg-cyan-5\/50{background-color:rgb(var(--cyan-5)/.5)}.bg-cyan-5\/60{background-color:rgb(var(--cyan-5)/.6)}.bg-cyan-5\/70{background-color:rgb(var(--cyan-5)/.7)}.bg-cyan-5\/75{background-color:rgb(var(--cyan-5)/.75)}.bg-cyan-5\/80{background-color:rgb(var(--cyan-5)/.8)}.bg-cyan-5\/90{background-color:rgb(var(--cyan-5)/.9)}.bg-cyan-5\/95{background-color:rgb(var(--cyan-5)/.95)}.bg-cyan-6\/0{background-color:rgb(var(--cyan-6)/0)}.bg-cyan-6\/10{background-color:rgb(var(--cyan-6)/.1)}.bg-cyan-6\/100{background-color:rgb(var(--cyan-6)/1)}.bg-cyan-6\/20{background-color:rgb(var(--cyan-6)/.2)}.bg-cyan-6\/25{background-color:rgb(var(--cyan-6)/.25)}.bg-cyan-6\/30{background-color:rgb(var(--cyan-6)/.3)}.bg-cyan-6\/40{background-color:rgb(var(--cyan-6)/.4)}.bg-cyan-6\/5{background-color:rgb(var(--cyan-6)/.05)}.bg-cyan-6\/50{background-color:rgb(var(--cyan-6)/.5)}.bg-cyan-6\/60{background-color:rgb(var(--cyan-6)/.6)}.bg-cyan-6\/70{background-color:rgb(var(--cyan-6)/.7)}.bg-cyan-6\/75{background-color:rgb(var(--cyan-6)/.75)}.bg-cyan-6\/80{background-color:rgb(var(--cyan-6)/.8)}.bg-cyan-6\/90{background-color:rgb(var(--cyan-6)/.9)}.bg-cyan-6\/95{background-color:rgb(var(--cyan-6)/.95)}.bg-cyan-7\/0{background-color:rgb(var(--cyan-7)/0)}.bg-cyan-7\/10{background-color:rgb(var(--cyan-7)/.1)}.bg-cyan-7\/100{background-color:rgb(var(--cyan-7)/1)}.bg-cyan-7\/20{background-color:rgb(var(--cyan-7)/.2)}.bg-cyan-7\/25{background-color:rgb(var(--cyan-7)/.25)}.bg-cyan-7\/30{background-color:rgb(var(--cyan-7)/.3)}.bg-cyan-7\/40{background-color:rgb(var(--cyan-7)/.4)}.bg-cyan-7\/5{background-color:rgb(var(--cyan-7)/.05)}.bg-cyan-7\/50{background-color:rgb(var(--cyan-7)/.5)}.bg-cyan-7\/60{background-color:rgb(var(--cyan-7)/.6)}.bg-cyan-7\/70{background-color:rgb(var(--cyan-7)/.7)}.bg-cyan-7\/75{background-color:rgb(var(--cyan-7)/.75)}.bg-cyan-7\/80{background-color:rgb(var(--cyan-7)/.8)}.bg-cyan-7\/90{background-color:rgb(var(--cyan-7)/.9)}.bg-cyan-7\/95{background-color:rgb(var(--cyan-7)/.95)}.bg-cyan-8\/0{background-color:rgb(var(--cyan-8)/0)}.bg-cyan-8\/10{background-color:rgb(var(--cyan-8)/.1)}.bg-cyan-8\/100{background-color:rgb(var(--cyan-8)/1)}.bg-cyan-8\/20{background-color:rgb(var(--cyan-8)/.2)}.bg-cyan-8\/25{background-color:rgb(var(--cyan-8)/.25)}.bg-cyan-8\/30{background-color:rgb(var(--cyan-8)/.3)}.bg-cyan-8\/40{background-color:rgb(var(--cyan-8)/.4)}.bg-cyan-8\/5{background-color:rgb(var(--cyan-8)/.05)}.bg-cyan-8\/50{background-color:rgb(var(--cyan-8)/.5)}.bg-cyan-8\/60{background-color:rgb(var(--cyan-8)/.6)}.bg-cyan-8\/70{background-color:rgb(var(--cyan-8)/.7)}.bg-cyan-8\/75{background-color:rgb(var(--cyan-8)/.75)}.bg-cyan-8\/80{background-color:rgb(var(--cyan-8)/.8)}.bg-cyan-8\/90{background-color:rgb(var(--cyan-8)/.9)}.bg-cyan-8\/95{background-color:rgb(var(--cyan-8)/.95)}.bg-cyan-9\/0{background-color:rgb(var(--cyan-9)/0)}.bg-cyan-9\/10{background-color:rgb(var(--cyan-9)/.1)}.bg-cyan-9\/100{background-color:rgb(var(--cyan-9)/1)}.bg-cyan-9\/20{background-color:rgb(var(--cyan-9)/.2)}.bg-cyan-9\/25{background-color:rgb(var(--cyan-9)/.25)}.bg-cyan-9\/30{background-color:rgb(var(--cyan-9)/.3)}.bg-cyan-9\/40{background-color:rgb(var(--cyan-9)/.4)}.bg-cyan-9\/5{background-color:rgb(var(--cyan-9)/.05)}.bg-cyan-9\/50{background-color:rgb(var(--cyan-9)/.5)}.bg-cyan-9\/60{background-color:rgb(var(--cyan-9)/.6)}.bg-cyan-9\/70{background-color:rgb(var(--cyan-9)/.7)}.bg-cyan-9\/75{background-color:rgb(var(--cyan-9)/.75)}.bg-cyan-9\/80{background-color:rgb(var(--cyan-9)/.8)}.bg-cyan-9\/90{background-color:rgb(var(--cyan-9)/.9)}.bg-cyan-9\/95{background-color:rgb(var(--cyan-9)/.95)}.bg-error{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.bg-error\/0{background-color:rgb(var(--error)/0)}.bg-error\/10{background-color:rgb(var(--error)/.1)}.bg-error\/100{background-color:rgb(var(--error)/1)}.bg-error\/20{background-color:rgb(var(--error)/.2)}.bg-error\/25{background-color:rgb(var(--error)/.25)}.bg-error\/30{background-color:rgb(var(--error)/.3)}.bg-error\/40{background-color:rgb(var(--error)/.4)}.bg-error\/5{background-color:rgb(var(--error)/.05)}.bg-error\/50{background-color:rgb(var(--error)/.5)}.bg-error\/60{background-color:rgb(var(--error)/.6)}.bg-error\/70{background-color:rgb(var(--error)/.7)}.bg-error\/75{background-color:rgb(var(--error)/.75)}.bg-error\/80{background-color:rgb(var(--error)/.8)}.bg-error\/90{background-color:rgb(var(--error)/.9)}.bg-error\/95{background-color:rgb(var(--error)/.95)}.bg-gray-1\/0{background-color:rgb(var(--gray-1)/0)}.bg-gray-1\/10{background-color:rgb(var(--gray-1)/.1)}.bg-gray-1\/100{background-color:rgb(var(--gray-1)/1)}.bg-gray-1\/20{background-color:rgb(var(--gray-1)/.2)}.bg-gray-1\/25{background-color:rgb(var(--gray-1)/.25)}.bg-gray-1\/30{background-color:rgb(var(--gray-1)/.3)}.bg-gray-1\/40{background-color:rgb(var(--gray-1)/.4)}.bg-gray-1\/5{background-color:rgb(var(--gray-1)/.05)}.bg-gray-1\/50{background-color:rgb(var(--gray-1)/.5)}.bg-gray-1\/60{background-color:rgb(var(--gray-1)/.6)}.bg-gray-1\/70{background-color:rgb(var(--gray-1)/.7)}.bg-gray-1\/75{background-color:rgb(var(--gray-1)/.75)}.bg-gray-1\/80{background-color:rgb(var(--gray-1)/.8)}.bg-gray-1\/90{background-color:rgb(var(--gray-1)/.9)}.bg-gray-1\/95{background-color:rgb(var(--gray-1)/.95)}.bg-gray-10\/0{background-color:rgb(var(--gray-10)/0)}.bg-gray-10\/10{background-color:rgb(var(--gray-10)/.1)}.bg-gray-10\/100{background-color:rgb(var(--gray-10)/1)}.bg-gray-10\/20{background-color:rgb(var(--gray-10)/.2)}.bg-gray-10\/25{background-color:rgb(var(--gray-10)/.25)}.bg-gray-10\/30{background-color:rgb(var(--gray-10)/.3)}.bg-gray-10\/40{background-color:rgb(var(--gray-10)/.4)}.bg-gray-10\/5{background-color:rgb(var(--gray-10)/.05)}.bg-gray-10\/50{background-color:rgb(var(--gray-10)/.5)}.bg-gray-10\/60{background-color:rgb(var(--gray-10)/.6)}.bg-gray-10\/70{background-color:rgb(var(--gray-10)/.7)}.bg-gray-10\/75{background-color:rgb(var(--gray-10)/.75)}.bg-gray-10\/80{background-color:rgb(var(--gray-10)/.8)}.bg-gray-10\/90{background-color:rgb(var(--gray-10)/.9)}.bg-gray-10\/95{background-color:rgb(var(--gray-10)/.95)}.bg-gray-2\/0{background-color:rgb(var(--gray-2)/0)}.bg-gray-2\/10{background-color:rgb(var(--gray-2)/.1)}.bg-gray-2\/100{background-color:rgb(var(--gray-2)/1)}.bg-gray-2\/20{background-color:rgb(var(--gray-2)/.2)}.bg-gray-2\/25{background-color:rgb(var(--gray-2)/.25)}.bg-gray-2\/30{background-color:rgb(var(--gray-2)/.3)}.bg-gray-2\/40{background-color:rgb(var(--gray-2)/.4)}.bg-gray-2\/5{background-color:rgb(var(--gray-2)/.05)}.bg-gray-2\/50{background-color:rgb(var(--gray-2)/.5)}.bg-gray-2\/60{background-color:rgb(var(--gray-2)/.6)}.bg-gray-2\/70{background-color:rgb(var(--gray-2)/.7)}.bg-gray-2\/75{background-color:rgb(var(--gray-2)/.75)}.bg-gray-2\/80{background-color:rgb(var(--gray-2)/.8)}.bg-gray-2\/90{background-color:rgb(var(--gray-2)/.9)}.bg-gray-2\/95{background-color:rgb(var(--gray-2)/.95)}.bg-gray-3\/0{background-color:rgb(var(--gray-3)/0)}.bg-gray-3\/10{background-color:rgb(var(--gray-3)/.1)}.bg-gray-3\/100{background-color:rgb(var(--gray-3)/1)}.bg-gray-3\/20{background-color:rgb(var(--gray-3)/.2)}.bg-gray-3\/25{background-color:rgb(var(--gray-3)/.25)}.bg-gray-3\/30{background-color:rgb(var(--gray-3)/.3)}.bg-gray-3\/40{background-color:rgb(var(--gray-3)/.4)}.bg-gray-3\/5{background-color:rgb(var(--gray-3)/.05)}.bg-gray-3\/50{background-color:rgb(var(--gray-3)/.5)}.bg-gray-3\/60{background-color:rgb(var(--gray-3)/.6)}.bg-gray-3\/70{background-color:rgb(var(--gray-3)/.7)}.bg-gray-3\/75{background-color:rgb(var(--gray-3)/.75)}.bg-gray-3\/80{background-color:rgb(var(--gray-3)/.8)}.bg-gray-3\/90{background-color:rgb(var(--gray-3)/.9)}.bg-gray-3\/95{background-color:rgb(var(--gray-3)/.95)}.bg-gray-4\/0{background-color:rgb(var(--gray-4)/0)}.bg-gray-4\/10{background-color:rgb(var(--gray-4)/.1)}.bg-gray-4\/100{background-color:rgb(var(--gray-4)/1)}.bg-gray-4\/20{background-color:rgb(var(--gray-4)/.2)}.bg-gray-4\/25{background-color:rgb(var(--gray-4)/.25)}.bg-gray-4\/30{background-color:rgb(var(--gray-4)/.3)}.bg-gray-4\/40{background-color:rgb(var(--gray-4)/.4)}.bg-gray-4\/5{background-color:rgb(var(--gray-4)/.05)}.bg-gray-4\/50{background-color:rgb(var(--gray-4)/.5)}.bg-gray-4\/60{background-color:rgb(var(--gray-4)/.6)}.bg-gray-4\/70{background-color:rgb(var(--gray-4)/.7)}.bg-gray-4\/75{background-color:rgb(var(--gray-4)/.75)}.bg-gray-4\/80{background-color:rgb(var(--gray-4)/.8)}.bg-gray-4\/90{background-color:rgb(var(--gray-4)/.9)}.bg-gray-4\/95{background-color:rgb(var(--gray-4)/.95)}.bg-gray-5\/0{background-color:rgb(var(--gray-5)/0)}.bg-gray-5\/10{background-color:rgb(var(--gray-5)/.1)}.bg-gray-5\/100{background-color:rgb(var(--gray-5)/1)}.bg-gray-5\/20{background-color:rgb(var(--gray-5)/.2)}.bg-gray-5\/25{background-color:rgb(var(--gray-5)/.25)}.bg-gray-5\/30{background-color:rgb(var(--gray-5)/.3)}.bg-gray-5\/40{background-color:rgb(var(--gray-5)/.4)}.bg-gray-5\/5{background-color:rgb(var(--gray-5)/.05)}.bg-gray-5\/50{background-color:rgb(var(--gray-5)/.5)}.bg-gray-5\/60{background-color:rgb(var(--gray-5)/.6)}.bg-gray-5\/70{background-color:rgb(var(--gray-5)/.7)}.bg-gray-5\/75{background-color:rgb(var(--gray-5)/.75)}.bg-gray-5\/80{background-color:rgb(var(--gray-5)/.8)}.bg-gray-5\/90{background-color:rgb(var(--gray-5)/.9)}.bg-gray-5\/95{background-color:rgb(var(--gray-5)/.95)}.bg-gray-6\/0{background-color:rgb(var(--gray-6)/0)}.bg-gray-6\/10{background-color:rgb(var(--gray-6)/.1)}.bg-gray-6\/100{background-color:rgb(var(--gray-6)/1)}.bg-gray-6\/20{background-color:rgb(var(--gray-6)/.2)}.bg-gray-6\/25{background-color:rgb(var(--gray-6)/.25)}.bg-gray-6\/30{background-color:rgb(var(--gray-6)/.3)}.bg-gray-6\/40{background-color:rgb(var(--gray-6)/.4)}.bg-gray-6\/5{background-color:rgb(var(--gray-6)/.05)}.bg-gray-6\/50{background-color:rgb(var(--gray-6)/.5)}.bg-gray-6\/60{background-color:rgb(var(--gray-6)/.6)}.bg-gray-6\/70{background-color:rgb(var(--gray-6)/.7)}.bg-gray-6\/75{background-color:rgb(var(--gray-6)/.75)}.bg-gray-6\/80{background-color:rgb(var(--gray-6)/.8)}.bg-gray-6\/90{background-color:rgb(var(--gray-6)/.9)}.bg-gray-6\/95{background-color:rgb(var(--gray-6)/.95)}.bg-gray-7\/0{background-color:rgb(var(--gray-7)/0)}.bg-gray-7\/10{background-color:rgb(var(--gray-7)/.1)}.bg-gray-7\/100{background-color:rgb(var(--gray-7)/1)}.bg-gray-7\/20{background-color:rgb(var(--gray-7)/.2)}.bg-gray-7\/25{background-color:rgb(var(--gray-7)/.25)}.bg-gray-7\/30{background-color:rgb(var(--gray-7)/.3)}.bg-gray-7\/40{background-color:rgb(var(--gray-7)/.4)}.bg-gray-7\/5{background-color:rgb(var(--gray-7)/.05)}.bg-gray-7\/50{background-color:rgb(var(--gray-7)/.5)}.bg-gray-7\/60{background-color:rgb(var(--gray-7)/.6)}.bg-gray-7\/70{background-color:rgb(var(--gray-7)/.7)}.bg-gray-7\/75{background-color:rgb(var(--gray-7)/.75)}.bg-gray-7\/80{background-color:rgb(var(--gray-7)/.8)}.bg-gray-7\/90{background-color:rgb(var(--gray-7)/.9)}.bg-gray-7\/95{background-color:rgb(var(--gray-7)/.95)}.bg-gray-8\/0{background-color:rgb(var(--gray-8)/0)}.bg-gray-8\/10{background-color:rgb(var(--gray-8)/.1)}.bg-gray-8\/100{background-color:rgb(var(--gray-8)/1)}.bg-gray-8\/20{background-color:rgb(var(--gray-8)/.2)}.bg-gray-8\/25{background-color:rgb(var(--gray-8)/.25)}.bg-gray-8\/30{background-color:rgb(var(--gray-8)/.3)}.bg-gray-8\/40{background-color:rgb(var(--gray-8)/.4)}.bg-gray-8\/5{background-color:rgb(var(--gray-8)/.05)}.bg-gray-8\/50{background-color:rgb(var(--gray-8)/.5)}.bg-gray-8\/60{background-color:rgb(var(--gray-8)/.6)}.bg-gray-8\/70{background-color:rgb(var(--gray-8)/.7)}.bg-gray-8\/75{background-color:rgb(var(--gray-8)/.75)}.bg-gray-8\/80{background-color:rgb(var(--gray-8)/.8)}.bg-gray-8\/90{background-color:rgb(var(--gray-8)/.9)}.bg-gray-8\/95{background-color:rgb(var(--gray-8)/.95)}.bg-gray-9\/0{background-color:rgb(var(--gray-9)/0)}.bg-gray-9\/10{background-color:rgb(var(--gray-9)/.1)}.bg-gray-9\/100{background-color:rgb(var(--gray-9)/1)}.bg-gray-9\/20{background-color:rgb(var(--gray-9)/.2)}.bg-gray-9\/25{background-color:rgb(var(--gray-9)/.25)}.bg-gray-9\/30{background-color:rgb(var(--gray-9)/.3)}.bg-gray-9\/40{background-color:rgb(var(--gray-9)/.4)}.bg-gray-9\/5{background-color:rgb(var(--gray-9)/.05)}.bg-gray-9\/50{background-color:rgb(var(--gray-9)/.5)}.bg-gray-9\/60{background-color:rgb(var(--gray-9)/.6)}.bg-gray-9\/70{background-color:rgb(var(--gray-9)/.7)}.bg-gray-9\/75{background-color:rgb(var(--gray-9)/.75)}.bg-gray-9\/80{background-color:rgb(var(--gray-9)/.8)}.bg-gray-9\/90{background-color:rgb(var(--gray-9)/.9)}.bg-gray-9\/95{background-color:rgb(var(--gray-9)/.95)}.bg-green-1\/0{background-color:rgb(var(--green-1)/0)}.bg-green-1\/10{background-color:rgb(var(--green-1)/.1)}.bg-green-1\/100{background-color:rgb(var(--green-1)/1)}.bg-green-1\/20{background-color:rgb(var(--green-1)/.2)}.bg-green-1\/25{background-color:rgb(var(--green-1)/.25)}.bg-green-1\/30{background-color:rgb(var(--green-1)/.3)}.bg-green-1\/40{background-color:rgb(var(--green-1)/.4)}.bg-green-1\/5{background-color:rgb(var(--green-1)/.05)}.bg-green-1\/50{background-color:rgb(var(--green-1)/.5)}.bg-green-1\/60{background-color:rgb(var(--green-1)/.6)}.bg-green-1\/70{background-color:rgb(var(--green-1)/.7)}.bg-green-1\/75{background-color:rgb(var(--green-1)/.75)}.bg-green-1\/80{background-color:rgb(var(--green-1)/.8)}.bg-green-1\/90{background-color:rgb(var(--green-1)/.9)}.bg-green-1\/95{background-color:rgb(var(--green-1)/.95)}.bg-green-10\/0{background-color:rgb(var(--green-10)/0)}.bg-green-10\/10{background-color:rgb(var(--green-10)/.1)}.bg-green-10\/100{background-color:rgb(var(--green-10)/1)}.bg-green-10\/20{background-color:rgb(var(--green-10)/.2)}.bg-green-10\/25{background-color:rgb(var(--green-10)/.25)}.bg-green-10\/30{background-color:rgb(var(--green-10)/.3)}.bg-green-10\/40{background-color:rgb(var(--green-10)/.4)}.bg-green-10\/5{background-color:rgb(var(--green-10)/.05)}.bg-green-10\/50{background-color:rgb(var(--green-10)/.5)}.bg-green-10\/60{background-color:rgb(var(--green-10)/.6)}.bg-green-10\/70{background-color:rgb(var(--green-10)/.7)}.bg-green-10\/75{background-color:rgb(var(--green-10)/.75)}.bg-green-10\/80{background-color:rgb(var(--green-10)/.8)}.bg-green-10\/90{background-color:rgb(var(--green-10)/.9)}.bg-green-10\/95{background-color:rgb(var(--green-10)/.95)}.bg-green-2\/0{background-color:rgb(var(--green-2)/0)}.bg-green-2\/10{background-color:rgb(var(--green-2)/.1)}.bg-green-2\/100{background-color:rgb(var(--green-2)/1)}.bg-green-2\/20{background-color:rgb(var(--green-2)/.2)}.bg-green-2\/25{background-color:rgb(var(--green-2)/.25)}.bg-green-2\/30{background-color:rgb(var(--green-2)/.3)}.bg-green-2\/40{background-color:rgb(var(--green-2)/.4)}.bg-green-2\/5{background-color:rgb(var(--green-2)/.05)}.bg-green-2\/50{background-color:rgb(var(--green-2)/.5)}.bg-green-2\/60{background-color:rgb(var(--green-2)/.6)}.bg-green-2\/70{background-color:rgb(var(--green-2)/.7)}.bg-green-2\/75{background-color:rgb(var(--green-2)/.75)}.bg-green-2\/80{background-color:rgb(var(--green-2)/.8)}.bg-green-2\/90{background-color:rgb(var(--green-2)/.9)}.bg-green-2\/95{background-color:rgb(var(--green-2)/.95)}.bg-green-3\/0{background-color:rgb(var(--green-3)/0)}.bg-green-3\/10{background-color:rgb(var(--green-3)/.1)}.bg-green-3\/100{background-color:rgb(var(--green-3)/1)}.bg-green-3\/20{background-color:rgb(var(--green-3)/.2)}.bg-green-3\/25{background-color:rgb(var(--green-3)/.25)}.bg-green-3\/30{background-color:rgb(var(--green-3)/.3)}.bg-green-3\/40{background-color:rgb(var(--green-3)/.4)}.bg-green-3\/5{background-color:rgb(var(--green-3)/.05)}.bg-green-3\/50{background-color:rgb(var(--green-3)/.5)}.bg-green-3\/60{background-color:rgb(var(--green-3)/.6)}.bg-green-3\/70{background-color:rgb(var(--green-3)/.7)}.bg-green-3\/75{background-color:rgb(var(--green-3)/.75)}.bg-green-3\/80{background-color:rgb(var(--green-3)/.8)}.bg-green-3\/90{background-color:rgb(var(--green-3)/.9)}.bg-green-3\/95{background-color:rgb(var(--green-3)/.95)}.bg-green-4\/0{background-color:rgb(var(--green-4)/0)}.bg-green-4\/10{background-color:rgb(var(--green-4)/.1)}.bg-green-4\/100{background-color:rgb(var(--green-4)/1)}.bg-green-4\/20{background-color:rgb(var(--green-4)/.2)}.bg-green-4\/25{background-color:rgb(var(--green-4)/.25)}.bg-green-4\/30{background-color:rgb(var(--green-4)/.3)}.bg-green-4\/40{background-color:rgb(var(--green-4)/.4)}.bg-green-4\/5{background-color:rgb(var(--green-4)/.05)}.bg-green-4\/50{background-color:rgb(var(--green-4)/.5)}.bg-green-4\/60{background-color:rgb(var(--green-4)/.6)}.bg-green-4\/70{background-color:rgb(var(--green-4)/.7)}.bg-green-4\/75{background-color:rgb(var(--green-4)/.75)}.bg-green-4\/80{background-color:rgb(var(--green-4)/.8)}.bg-green-4\/90{background-color:rgb(var(--green-4)/.9)}.bg-green-4\/95{background-color:rgb(var(--green-4)/.95)}.bg-green-5\/0{background-color:rgb(var(--green-5)/0)}.bg-green-5\/10{background-color:rgb(var(--green-5)/.1)}.bg-green-5\/100{background-color:rgb(var(--green-5)/1)}.bg-green-5\/20{background-color:rgb(var(--green-5)/.2)}.bg-green-5\/25{background-color:rgb(var(--green-5)/.25)}.bg-green-5\/30{background-color:rgb(var(--green-5)/.3)}.bg-green-5\/40{background-color:rgb(var(--green-5)/.4)}.bg-green-5\/5{background-color:rgb(var(--green-5)/.05)}.bg-green-5\/50{background-color:rgb(var(--green-5)/.5)}.bg-green-5\/60{background-color:rgb(var(--green-5)/.6)}.bg-green-5\/70{background-color:rgb(var(--green-5)/.7)}.bg-green-5\/75{background-color:rgb(var(--green-5)/.75)}.bg-green-5\/80{background-color:rgb(var(--green-5)/.8)}.bg-green-5\/90{background-color:rgb(var(--green-5)/.9)}.bg-green-5\/95{background-color:rgb(var(--green-5)/.95)}.bg-green-6\/0{background-color:rgb(var(--green-6)/0)}.bg-green-6\/10{background-color:rgb(var(--green-6)/.1)}.bg-green-6\/100{background-color:rgb(var(--green-6)/1)}.bg-green-6\/20{background-color:rgb(var(--green-6)/.2)}.bg-green-6\/25{background-color:rgb(var(--green-6)/.25)}.bg-green-6\/30{background-color:rgb(var(--green-6)/.3)}.bg-green-6\/40{background-color:rgb(var(--green-6)/.4)}.bg-green-6\/5{background-color:rgb(var(--green-6)/.05)}.bg-green-6\/50{background-color:rgb(var(--green-6)/.5)}.bg-green-6\/60{background-color:rgb(var(--green-6)/.6)}.bg-green-6\/70{background-color:rgb(var(--green-6)/.7)}.bg-green-6\/75{background-color:rgb(var(--green-6)/.75)}.bg-green-6\/80{background-color:rgb(var(--green-6)/.8)}.bg-green-6\/90{background-color:rgb(var(--green-6)/.9)}.bg-green-6\/95{background-color:rgb(var(--green-6)/.95)}.bg-green-7\/0{background-color:rgb(var(--green-7)/0)}.bg-green-7\/10{background-color:rgb(var(--green-7)/.1)}.bg-green-7\/100{background-color:rgb(var(--green-7)/1)}.bg-green-7\/20{background-color:rgb(var(--green-7)/.2)}.bg-green-7\/25{background-color:rgb(var(--green-7)/.25)}.bg-green-7\/30{background-color:rgb(var(--green-7)/.3)}.bg-green-7\/40{background-color:rgb(var(--green-7)/.4)}.bg-green-7\/5{background-color:rgb(var(--green-7)/.05)}.bg-green-7\/50{background-color:rgb(var(--green-7)/.5)}.bg-green-7\/60{background-color:rgb(var(--green-7)/.6)}.bg-green-7\/70{background-color:rgb(var(--green-7)/.7)}.bg-green-7\/75{background-color:rgb(var(--green-7)/.75)}.bg-green-7\/80{background-color:rgb(var(--green-7)/.8)}.bg-green-7\/90{background-color:rgb(var(--green-7)/.9)}.bg-green-7\/95{background-color:rgb(var(--green-7)/.95)}.bg-green-8\/0{background-color:rgb(var(--green-8)/0)}.bg-green-8\/10{background-color:rgb(var(--green-8)/.1)}.bg-green-8\/100{background-color:rgb(var(--green-8)/1)}.bg-green-8\/20{background-color:rgb(var(--green-8)/.2)}.bg-green-8\/25{background-color:rgb(var(--green-8)/.25)}.bg-green-8\/30{background-color:rgb(var(--green-8)/.3)}.bg-green-8\/40{background-color:rgb(var(--green-8)/.4)}.bg-green-8\/5{background-color:rgb(var(--green-8)/.05)}.bg-green-8\/50{background-color:rgb(var(--green-8)/.5)}.bg-green-8\/60{background-color:rgb(var(--green-8)/.6)}.bg-green-8\/70{background-color:rgb(var(--green-8)/.7)}.bg-green-8\/75{background-color:rgb(var(--green-8)/.75)}.bg-green-8\/80{background-color:rgb(var(--green-8)/.8)}.bg-green-8\/90{background-color:rgb(var(--green-8)/.9)}.bg-green-8\/95{background-color:rgb(var(--green-8)/.95)}.bg-green-9\/0{background-color:rgb(var(--green-9)/0)}.bg-green-9\/10{background-color:rgb(var(--green-9)/.1)}.bg-green-9\/100{background-color:rgb(var(--green-9)/1)}.bg-green-9\/20{background-color:rgb(var(--green-9)/.2)}.bg-green-9\/25{background-color:rgb(var(--green-9)/.25)}.bg-green-9\/30{background-color:rgb(var(--green-9)/.3)}.bg-green-9\/40{background-color:rgb(var(--green-9)/.4)}.bg-green-9\/5{background-color:rgb(var(--green-9)/.05)}.bg-green-9\/50{background-color:rgb(var(--green-9)/.5)}.bg-green-9\/60{background-color:rgb(var(--green-9)/.6)}.bg-green-9\/70{background-color:rgb(var(--green-9)/.7)}.bg-green-9\/75{background-color:rgb(var(--green-9)/.75)}.bg-green-9\/80{background-color:rgb(var(--green-9)/.8)}.bg-green-9\/90{background-color:rgb(var(--green-9)/.9)}.bg-green-9\/95{background-color:rgb(var(--green-9)/.95)}.bg-pink-1\/0{background-color:rgb(var(--pink-1)/0)}.bg-pink-1\/10{background-color:rgb(var(--pink-1)/.1)}.bg-pink-1\/100{background-color:rgb(var(--pink-1)/1)}.bg-pink-1\/20{background-color:rgb(var(--pink-1)/.2)}.bg-pink-1\/25{background-color:rgb(var(--pink-1)/.25)}.bg-pink-1\/30{background-color:rgb(var(--pink-1)/.3)}.bg-pink-1\/40{background-color:rgb(var(--pink-1)/.4)}.bg-pink-1\/5{background-color:rgb(var(--pink-1)/.05)}.bg-pink-1\/50{background-color:rgb(var(--pink-1)/.5)}.bg-pink-1\/60{background-color:rgb(var(--pink-1)/.6)}.bg-pink-1\/70{background-color:rgb(var(--pink-1)/.7)}.bg-pink-1\/75{background-color:rgb(var(--pink-1)/.75)}.bg-pink-1\/80{background-color:rgb(var(--pink-1)/.8)}.bg-pink-1\/90{background-color:rgb(var(--pink-1)/.9)}.bg-pink-1\/95{background-color:rgb(var(--pink-1)/.95)}.bg-pink-10\/0{background-color:rgb(var(--pink-10)/0)}.bg-pink-10\/10{background-color:rgb(var(--pink-10)/.1)}.bg-pink-10\/100{background-color:rgb(var(--pink-10)/1)}.bg-pink-10\/20{background-color:rgb(var(--pink-10)/.2)}.bg-pink-10\/25{background-color:rgb(var(--pink-10)/.25)}.bg-pink-10\/30{background-color:rgb(var(--pink-10)/.3)}.bg-pink-10\/40{background-color:rgb(var(--pink-10)/.4)}.bg-pink-10\/5{background-color:rgb(var(--pink-10)/.05)}.bg-pink-10\/50{background-color:rgb(var(--pink-10)/.5)}.bg-pink-10\/60{background-color:rgb(var(--pink-10)/.6)}.bg-pink-10\/70{background-color:rgb(var(--pink-10)/.7)}.bg-pink-10\/75{background-color:rgb(var(--pink-10)/.75)}.bg-pink-10\/80{background-color:rgb(var(--pink-10)/.8)}.bg-pink-10\/90{background-color:rgb(var(--pink-10)/.9)}.bg-pink-10\/95{background-color:rgb(var(--pink-10)/.95)}.bg-pink-2\/0{background-color:rgb(var(--pink-2)/0)}.bg-pink-2\/10{background-color:rgb(var(--pink-2)/.1)}.bg-pink-2\/100{background-color:rgb(var(--pink-2)/1)}.bg-pink-2\/20{background-color:rgb(var(--pink-2)/.2)}.bg-pink-2\/25{background-color:rgb(var(--pink-2)/.25)}.bg-pink-2\/30{background-color:rgb(var(--pink-2)/.3)}.bg-pink-2\/40{background-color:rgb(var(--pink-2)/.4)}.bg-pink-2\/5{background-color:rgb(var(--pink-2)/.05)}.bg-pink-2\/50{background-color:rgb(var(--pink-2)/.5)}.bg-pink-2\/60{background-color:rgb(var(--pink-2)/.6)}.bg-pink-2\/70{background-color:rgb(var(--pink-2)/.7)}.bg-pink-2\/75{background-color:rgb(var(--pink-2)/.75)}.bg-pink-2\/80{background-color:rgb(var(--pink-2)/.8)}.bg-pink-2\/90{background-color:rgb(var(--pink-2)/.9)}.bg-pink-2\/95{background-color:rgb(var(--pink-2)/.95)}.bg-pink-3\/0{background-color:rgb(var(--pink-3)/0)}.bg-pink-3\/10{background-color:rgb(var(--pink-3)/.1)}.bg-pink-3\/100{background-color:rgb(var(--pink-3)/1)}.bg-pink-3\/20{background-color:rgb(var(--pink-3)/.2)}.bg-pink-3\/25{background-color:rgb(var(--pink-3)/.25)}.bg-pink-3\/30{background-color:rgb(var(--pink-3)/.3)}.bg-pink-3\/40{background-color:rgb(var(--pink-3)/.4)}.bg-pink-3\/5{background-color:rgb(var(--pink-3)/.05)}.bg-pink-3\/50{background-color:rgb(var(--pink-3)/.5)}.bg-pink-3\/60{background-color:rgb(var(--pink-3)/.6)}.bg-pink-3\/70{background-color:rgb(var(--pink-3)/.7)}.bg-pink-3\/75{background-color:rgb(var(--pink-3)/.75)}.bg-pink-3\/80{background-color:rgb(var(--pink-3)/.8)}.bg-pink-3\/90{background-color:rgb(var(--pink-3)/.9)}.bg-pink-3\/95{background-color:rgb(var(--pink-3)/.95)}.bg-pink-4\/0{background-color:rgb(var(--pink-4)/0)}.bg-pink-4\/10{background-color:rgb(var(--pink-4)/.1)}.bg-pink-4\/100{background-color:rgb(var(--pink-4)/1)}.bg-pink-4\/20{background-color:rgb(var(--pink-4)/.2)}.bg-pink-4\/25{background-color:rgb(var(--pink-4)/.25)}.bg-pink-4\/30{background-color:rgb(var(--pink-4)/.3)}.bg-pink-4\/40{background-color:rgb(var(--pink-4)/.4)}.bg-pink-4\/5{background-color:rgb(var(--pink-4)/.05)}.bg-pink-4\/50{background-color:rgb(var(--pink-4)/.5)}.bg-pink-4\/60{background-color:rgb(var(--pink-4)/.6)}.bg-pink-4\/70{background-color:rgb(var(--pink-4)/.7)}.bg-pink-4\/75{background-color:rgb(var(--pink-4)/.75)}.bg-pink-4\/80{background-color:rgb(var(--pink-4)/.8)}.bg-pink-4\/90{background-color:rgb(var(--pink-4)/.9)}.bg-pink-4\/95{background-color:rgb(var(--pink-4)/.95)}.bg-pink-5\/0{background-color:rgb(var(--pink-5)/0)}.bg-pink-5\/10{background-color:rgb(var(--pink-5)/.1)}.bg-pink-5\/100{background-color:rgb(var(--pink-5)/1)}.bg-pink-5\/20{background-color:rgb(var(--pink-5)/.2)}.bg-pink-5\/25{background-color:rgb(var(--pink-5)/.25)}.bg-pink-5\/30{background-color:rgb(var(--pink-5)/.3)}.bg-pink-5\/40{background-color:rgb(var(--pink-5)/.4)}.bg-pink-5\/5{background-color:rgb(var(--pink-5)/.05)}.bg-pink-5\/50{background-color:rgb(var(--pink-5)/.5)}.bg-pink-5\/60{background-color:rgb(var(--pink-5)/.6)}.bg-pink-5\/70{background-color:rgb(var(--pink-5)/.7)}.bg-pink-5\/75{background-color:rgb(var(--pink-5)/.75)}.bg-pink-5\/80{background-color:rgb(var(--pink-5)/.8)}.bg-pink-5\/90{background-color:rgb(var(--pink-5)/.9)}.bg-pink-5\/95{background-color:rgb(var(--pink-5)/.95)}.bg-pink-6\/0{background-color:rgb(var(--pink-6)/0)}.bg-pink-6\/10{background-color:rgb(var(--pink-6)/.1)}.bg-pink-6\/100{background-color:rgb(var(--pink-6)/1)}.bg-pink-6\/20{background-color:rgb(var(--pink-6)/.2)}.bg-pink-6\/25{background-color:rgb(var(--pink-6)/.25)}.bg-pink-6\/30{background-color:rgb(var(--pink-6)/.3)}.bg-pink-6\/40{background-color:rgb(var(--pink-6)/.4)}.bg-pink-6\/5{background-color:rgb(var(--pink-6)/.05)}.bg-pink-6\/50{background-color:rgb(var(--pink-6)/.5)}.bg-pink-6\/60{background-color:rgb(var(--pink-6)/.6)}.bg-pink-6\/70{background-color:rgb(var(--pink-6)/.7)}.bg-pink-6\/75{background-color:rgb(var(--pink-6)/.75)}.bg-pink-6\/80{background-color:rgb(var(--pink-6)/.8)}.bg-pink-6\/90{background-color:rgb(var(--pink-6)/.9)}.bg-pink-6\/95{background-color:rgb(var(--pink-6)/.95)}.bg-pink-7\/0{background-color:rgb(var(--pink-7)/0)}.bg-pink-7\/10{background-color:rgb(var(--pink-7)/.1)}.bg-pink-7\/100{background-color:rgb(var(--pink-7)/1)}.bg-pink-7\/20{background-color:rgb(var(--pink-7)/.2)}.bg-pink-7\/25{background-color:rgb(var(--pink-7)/.25)}.bg-pink-7\/30{background-color:rgb(var(--pink-7)/.3)}.bg-pink-7\/40{background-color:rgb(var(--pink-7)/.4)}.bg-pink-7\/5{background-color:rgb(var(--pink-7)/.05)}.bg-pink-7\/50{background-color:rgb(var(--pink-7)/.5)}.bg-pink-7\/60{background-color:rgb(var(--pink-7)/.6)}.bg-pink-7\/70{background-color:rgb(var(--pink-7)/.7)}.bg-pink-7\/75{background-color:rgb(var(--pink-7)/.75)}.bg-pink-7\/80{background-color:rgb(var(--pink-7)/.8)}.bg-pink-7\/90{background-color:rgb(var(--pink-7)/.9)}.bg-pink-7\/95{background-color:rgb(var(--pink-7)/.95)}.bg-pink-8\/0{background-color:rgb(var(--pink-8)/0)}.bg-pink-8\/10{background-color:rgb(var(--pink-8)/.1)}.bg-pink-8\/100{background-color:rgb(var(--pink-8)/1)}.bg-pink-8\/20{background-color:rgb(var(--pink-8)/.2)}.bg-pink-8\/25{background-color:rgb(var(--pink-8)/.25)}.bg-pink-8\/30{background-color:rgb(var(--pink-8)/.3)}.bg-pink-8\/40{background-color:rgb(var(--pink-8)/.4)}.bg-pink-8\/5{background-color:rgb(var(--pink-8)/.05)}.bg-pink-8\/50{background-color:rgb(var(--pink-8)/.5)}.bg-pink-8\/60{background-color:rgb(var(--pink-8)/.6)}.bg-pink-8\/70{background-color:rgb(var(--pink-8)/.7)}.bg-pink-8\/75{background-color:rgb(var(--pink-8)/.75)}.bg-pink-8\/80{background-color:rgb(var(--pink-8)/.8)}.bg-pink-8\/90{background-color:rgb(var(--pink-8)/.9)}.bg-pink-8\/95{background-color:rgb(var(--pink-8)/.95)}.bg-pink-9\/0{background-color:rgb(var(--pink-9)/0)}.bg-pink-9\/10{background-color:rgb(var(--pink-9)/.1)}.bg-pink-9\/100{background-color:rgb(var(--pink-9)/1)}.bg-pink-9\/20{background-color:rgb(var(--pink-9)/.2)}.bg-pink-9\/25{background-color:rgb(var(--pink-9)/.25)}.bg-pink-9\/30{background-color:rgb(var(--pink-9)/.3)}.bg-pink-9\/40{background-color:rgb(var(--pink-9)/.4)}.bg-pink-9\/5{background-color:rgb(var(--pink-9)/.05)}.bg-pink-9\/50{background-color:rgb(var(--pink-9)/.5)}.bg-pink-9\/60{background-color:rgb(var(--pink-9)/.6)}.bg-pink-9\/70{background-color:rgb(var(--pink-9)/.7)}.bg-pink-9\/75{background-color:rgb(var(--pink-9)/.75)}.bg-pink-9\/80{background-color:rgb(var(--pink-9)/.8)}.bg-pink-9\/90{background-color:rgb(var(--pink-9)/.9)}.bg-pink-9\/95{background-color:rgb(var(--pink-9)/.95)}.bg-primary{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.bg-primary\/0{background-color:rgb(var(--primary)/0)}.bg-primary\/10{background-color:rgb(var(--primary)/.1)}.bg-primary\/100{background-color:rgb(var(--primary)/1)}.bg-primary\/20{background-color:rgb(var(--primary)/.2)}.bg-primary\/25{background-color:rgb(var(--primary)/.25)}.bg-primary\/30{background-color:rgb(var(--primary)/.3)}.bg-primary\/40{background-color:rgb(var(--primary)/.4)}.bg-primary\/5{background-color:rgb(var(--primary)/.05)}.bg-primary\/50{background-color:rgb(var(--primary)/.5)}.bg-primary\/60{background-color:rgb(var(--primary)/.6)}.bg-primary\/70{background-color:rgb(var(--primary)/.7)}.bg-primary\/75{background-color:rgb(var(--primary)/.75)}.bg-primary\/80{background-color:rgb(var(--primary)/.8)}.bg-primary\/90{background-color:rgb(var(--primary)/.9)}.bg-primary\/95{background-color:rgb(var(--primary)/.95)}.bg-purple-1\/0{background-color:rgb(var(--purple-1)/0)}.bg-purple-1\/10{background-color:rgb(var(--purple-1)/.1)}.bg-purple-1\/100{background-color:rgb(var(--purple-1)/1)}.bg-purple-1\/20{background-color:rgb(var(--purple-1)/.2)}.bg-purple-1\/25{background-color:rgb(var(--purple-1)/.25)}.bg-purple-1\/30{background-color:rgb(var(--purple-1)/.3)}.bg-purple-1\/40{background-color:rgb(var(--purple-1)/.4)}.bg-purple-1\/5{background-color:rgb(var(--purple-1)/.05)}.bg-purple-1\/50{background-color:rgb(var(--purple-1)/.5)}.bg-purple-1\/60{background-color:rgb(var(--purple-1)/.6)}.bg-purple-1\/70{background-color:rgb(var(--purple-1)/.7)}.bg-purple-1\/75{background-color:rgb(var(--purple-1)/.75)}.bg-purple-1\/80{background-color:rgb(var(--purple-1)/.8)}.bg-purple-1\/90{background-color:rgb(var(--purple-1)/.9)}.bg-purple-1\/95{background-color:rgb(var(--purple-1)/.95)}.bg-purple-10\/0{background-color:rgb(var(--purple-10)/0)}.bg-purple-10\/10{background-color:rgb(var(--purple-10)/.1)}.bg-purple-10\/100{background-color:rgb(var(--purple-10)/1)}.bg-purple-10\/20{background-color:rgb(var(--purple-10)/.2)}.bg-purple-10\/25{background-color:rgb(var(--purple-10)/.25)}.bg-purple-10\/30{background-color:rgb(var(--purple-10)/.3)}.bg-purple-10\/40{background-color:rgb(var(--purple-10)/.4)}.bg-purple-10\/5{background-color:rgb(var(--purple-10)/.05)}.bg-purple-10\/50{background-color:rgb(var(--purple-10)/.5)}.bg-purple-10\/60{background-color:rgb(var(--purple-10)/.6)}.bg-purple-10\/70{background-color:rgb(var(--purple-10)/.7)}.bg-purple-10\/75{background-color:rgb(var(--purple-10)/.75)}.bg-purple-10\/80{background-color:rgb(var(--purple-10)/.8)}.bg-purple-10\/90{background-color:rgb(var(--purple-10)/.9)}.bg-purple-10\/95{background-color:rgb(var(--purple-10)/.95)}.bg-purple-2\/0{background-color:rgb(var(--purple-2)/0)}.bg-purple-2\/10{background-color:rgb(var(--purple-2)/.1)}.bg-purple-2\/100{background-color:rgb(var(--purple-2)/1)}.bg-purple-2\/20{background-color:rgb(var(--purple-2)/.2)}.bg-purple-2\/25{background-color:rgb(var(--purple-2)/.25)}.bg-purple-2\/30{background-color:rgb(var(--purple-2)/.3)}.bg-purple-2\/40{background-color:rgb(var(--purple-2)/.4)}.bg-purple-2\/5{background-color:rgb(var(--purple-2)/.05)}.bg-purple-2\/50{background-color:rgb(var(--purple-2)/.5)}.bg-purple-2\/60{background-color:rgb(var(--purple-2)/.6)}.bg-purple-2\/70{background-color:rgb(var(--purple-2)/.7)}.bg-purple-2\/75{background-color:rgb(var(--purple-2)/.75)}.bg-purple-2\/80{background-color:rgb(var(--purple-2)/.8)}.bg-purple-2\/90{background-color:rgb(var(--purple-2)/.9)}.bg-purple-2\/95{background-color:rgb(var(--purple-2)/.95)}.bg-purple-3\/0{background-color:rgb(var(--purple-3)/0)}.bg-purple-3\/10{background-color:rgb(var(--purple-3)/.1)}.bg-purple-3\/100{background-color:rgb(var(--purple-3)/1)}.bg-purple-3\/20{background-color:rgb(var(--purple-3)/.2)}.bg-purple-3\/25{background-color:rgb(var(--purple-3)/.25)}.bg-purple-3\/30{background-color:rgb(var(--purple-3)/.3)}.bg-purple-3\/40{background-color:rgb(var(--purple-3)/.4)}.bg-purple-3\/5{background-color:rgb(var(--purple-3)/.05)}.bg-purple-3\/50{background-color:rgb(var(--purple-3)/.5)}.bg-purple-3\/60{background-color:rgb(var(--purple-3)/.6)}.bg-purple-3\/70{background-color:rgb(var(--purple-3)/.7)}.bg-purple-3\/75{background-color:rgb(var(--purple-3)/.75)}.bg-purple-3\/80{background-color:rgb(var(--purple-3)/.8)}.bg-purple-3\/90{background-color:rgb(var(--purple-3)/.9)}.bg-purple-3\/95{background-color:rgb(var(--purple-3)/.95)}.bg-purple-4\/0{background-color:rgb(var(--purple-4)/0)}.bg-purple-4\/10{background-color:rgb(var(--purple-4)/.1)}.bg-purple-4\/100{background-color:rgb(var(--purple-4)/1)}.bg-purple-4\/20{background-color:rgb(var(--purple-4)/.2)}.bg-purple-4\/25{background-color:rgb(var(--purple-4)/.25)}.bg-purple-4\/30{background-color:rgb(var(--purple-4)/.3)}.bg-purple-4\/40{background-color:rgb(var(--purple-4)/.4)}.bg-purple-4\/5{background-color:rgb(var(--purple-4)/.05)}.bg-purple-4\/50{background-color:rgb(var(--purple-4)/.5)}.bg-purple-4\/60{background-color:rgb(var(--purple-4)/.6)}.bg-purple-4\/70{background-color:rgb(var(--purple-4)/.7)}.bg-purple-4\/75{background-color:rgb(var(--purple-4)/.75)}.bg-purple-4\/80{background-color:rgb(var(--purple-4)/.8)}.bg-purple-4\/90{background-color:rgb(var(--purple-4)/.9)}.bg-purple-4\/95{background-color:rgb(var(--purple-4)/.95)}.bg-purple-5\/0{background-color:rgb(var(--purple-5)/0)}.bg-purple-5\/10{background-color:rgb(var(--purple-5)/.1)}.bg-purple-5\/100{background-color:rgb(var(--purple-5)/1)}.bg-purple-5\/20{background-color:rgb(var(--purple-5)/.2)}.bg-purple-5\/25{background-color:rgb(var(--purple-5)/.25)}.bg-purple-5\/30{background-color:rgb(var(--purple-5)/.3)}.bg-purple-5\/40{background-color:rgb(var(--purple-5)/.4)}.bg-purple-5\/5{background-color:rgb(var(--purple-5)/.05)}.bg-purple-5\/50{background-color:rgb(var(--purple-5)/.5)}.bg-purple-5\/60{background-color:rgb(var(--purple-5)/.6)}.bg-purple-5\/70{background-color:rgb(var(--purple-5)/.7)}.bg-purple-5\/75{background-color:rgb(var(--purple-5)/.75)}.bg-purple-5\/80{background-color:rgb(var(--purple-5)/.8)}.bg-purple-5\/90{background-color:rgb(var(--purple-5)/.9)}.bg-purple-5\/95{background-color:rgb(var(--purple-5)/.95)}.bg-purple-6\/0{background-color:rgb(var(--purple-6)/0)}.bg-purple-6\/10{background-color:rgb(var(--purple-6)/.1)}.bg-purple-6\/100{background-color:rgb(var(--purple-6)/1)}.bg-purple-6\/20{background-color:rgb(var(--purple-6)/.2)}.bg-purple-6\/25{background-color:rgb(var(--purple-6)/.25)}.bg-purple-6\/30{background-color:rgb(var(--purple-6)/.3)}.bg-purple-6\/40{background-color:rgb(var(--purple-6)/.4)}.bg-purple-6\/5{background-color:rgb(var(--purple-6)/.05)}.bg-purple-6\/50{background-color:rgb(var(--purple-6)/.5)}.bg-purple-6\/60{background-color:rgb(var(--purple-6)/.6)}.bg-purple-6\/70{background-color:rgb(var(--purple-6)/.7)}.bg-purple-6\/75{background-color:rgb(var(--purple-6)/.75)}.bg-purple-6\/80{background-color:rgb(var(--purple-6)/.8)}.bg-purple-6\/90{background-color:rgb(var(--purple-6)/.9)}.bg-purple-6\/95{background-color:rgb(var(--purple-6)/.95)}.bg-purple-7\/0{background-color:rgb(var(--purple-7)/0)}.bg-purple-7\/10{background-color:rgb(var(--purple-7)/.1)}.bg-purple-7\/100{background-color:rgb(var(--purple-7)/1)}.bg-purple-7\/20{background-color:rgb(var(--purple-7)/.2)}.bg-purple-7\/25{background-color:rgb(var(--purple-7)/.25)}.bg-purple-7\/30{background-color:rgb(var(--purple-7)/.3)}.bg-purple-7\/40{background-color:rgb(var(--purple-7)/.4)}.bg-purple-7\/5{background-color:rgb(var(--purple-7)/.05)}.bg-purple-7\/50{background-color:rgb(var(--purple-7)/.5)}.bg-purple-7\/60{background-color:rgb(var(--purple-7)/.6)}.bg-purple-7\/70{background-color:rgb(var(--purple-7)/.7)}.bg-purple-7\/75{background-color:rgb(var(--purple-7)/.75)}.bg-purple-7\/80{background-color:rgb(var(--purple-7)/.8)}.bg-purple-7\/90{background-color:rgb(var(--purple-7)/.9)}.bg-purple-7\/95{background-color:rgb(var(--purple-7)/.95)}.bg-purple-8\/0{background-color:rgb(var(--purple-8)/0)}.bg-purple-8\/10{background-color:rgb(var(--purple-8)/.1)}.bg-purple-8\/100{background-color:rgb(var(--purple-8)/1)}.bg-purple-8\/20{background-color:rgb(var(--purple-8)/.2)}.bg-purple-8\/25{background-color:rgb(var(--purple-8)/.25)}.bg-purple-8\/30{background-color:rgb(var(--purple-8)/.3)}.bg-purple-8\/40{background-color:rgb(var(--purple-8)/.4)}.bg-purple-8\/5{background-color:rgb(var(--purple-8)/.05)}.bg-purple-8\/50{background-color:rgb(var(--purple-8)/.5)}.bg-purple-8\/60{background-color:rgb(var(--purple-8)/.6)}.bg-purple-8\/70{background-color:rgb(var(--purple-8)/.7)}.bg-purple-8\/75{background-color:rgb(var(--purple-8)/.75)}.bg-purple-8\/80{background-color:rgb(var(--purple-8)/.8)}.bg-purple-8\/90{background-color:rgb(var(--purple-8)/.9)}.bg-purple-8\/95{background-color:rgb(var(--purple-8)/.95)}.bg-purple-9\/0{background-color:rgb(var(--purple-9)/0)}.bg-purple-9\/10{background-color:rgb(var(--purple-9)/.1)}.bg-purple-9\/100{background-color:rgb(var(--purple-9)/1)}.bg-purple-9\/20{background-color:rgb(var(--purple-9)/.2)}.bg-purple-9\/25{background-color:rgb(var(--purple-9)/.25)}.bg-purple-9\/30{background-color:rgb(var(--purple-9)/.3)}.bg-purple-9\/40{background-color:rgb(var(--purple-9)/.4)}.bg-purple-9\/5{background-color:rgb(var(--purple-9)/.05)}.bg-purple-9\/50{background-color:rgb(var(--purple-9)/.5)}.bg-purple-9\/60{background-color:rgb(var(--purple-9)/.6)}.bg-purple-9\/70{background-color:rgb(var(--purple-9)/.7)}.bg-purple-9\/75{background-color:rgb(var(--purple-9)/.75)}.bg-purple-9\/80{background-color:rgb(var(--purple-9)/.8)}.bg-purple-9\/90{background-color:rgb(var(--purple-9)/.9)}.bg-purple-9\/95{background-color:rgb(var(--purple-9)/.95)}.bg-red-1\/0{background-color:rgb(var(--red-1)/0)}.bg-red-1\/10{background-color:rgb(var(--red-1)/.1)}.bg-red-1\/100{background-color:rgb(var(--red-1)/1)}.bg-red-1\/20{background-color:rgb(var(--red-1)/.2)}.bg-red-1\/25{background-color:rgb(var(--red-1)/.25)}.bg-red-1\/30{background-color:rgb(var(--red-1)/.3)}.bg-red-1\/40{background-color:rgb(var(--red-1)/.4)}.bg-red-1\/5{background-color:rgb(var(--red-1)/.05)}.bg-red-1\/50{background-color:rgb(var(--red-1)/.5)}.bg-red-1\/60{background-color:rgb(var(--red-1)/.6)}.bg-red-1\/70{background-color:rgb(var(--red-1)/.7)}.bg-red-1\/75{background-color:rgb(var(--red-1)/.75)}.bg-red-1\/80{background-color:rgb(var(--red-1)/.8)}.bg-red-1\/90{background-color:rgb(var(--red-1)/.9)}.bg-red-1\/95{background-color:rgb(var(--red-1)/.95)}.bg-red-10\/0{background-color:rgb(var(--red-10)/0)}.bg-red-10\/10{background-color:rgb(var(--red-10)/.1)}.bg-red-10\/100{background-color:rgb(var(--red-10)/1)}.bg-red-10\/20{background-color:rgb(var(--red-10)/.2)}.bg-red-10\/25{background-color:rgb(var(--red-10)/.25)}.bg-red-10\/30{background-color:rgb(var(--red-10)/.3)}.bg-red-10\/40{background-color:rgb(var(--red-10)/.4)}.bg-red-10\/5{background-color:rgb(var(--red-10)/.05)}.bg-red-10\/50{background-color:rgb(var(--red-10)/.5)}.bg-red-10\/60{background-color:rgb(var(--red-10)/.6)}.bg-red-10\/70{background-color:rgb(var(--red-10)/.7)}.bg-red-10\/75{background-color:rgb(var(--red-10)/.75)}.bg-red-10\/80{background-color:rgb(var(--red-10)/.8)}.bg-red-10\/90{background-color:rgb(var(--red-10)/.9)}.bg-red-10\/95{background-color:rgb(var(--red-10)/.95)}.bg-red-2\/0{background-color:rgb(var(--red-2)/0)}.bg-red-2\/10{background-color:rgb(var(--red-2)/.1)}.bg-red-2\/100{background-color:rgb(var(--red-2)/1)}.bg-red-2\/20{background-color:rgb(var(--red-2)/.2)}.bg-red-2\/25{background-color:rgb(var(--red-2)/.25)}.bg-red-2\/30{background-color:rgb(var(--red-2)/.3)}.bg-red-2\/40{background-color:rgb(var(--red-2)/.4)}.bg-red-2\/5{background-color:rgb(var(--red-2)/.05)}.bg-red-2\/50{background-color:rgb(var(--red-2)/.5)}.bg-red-2\/60{background-color:rgb(var(--red-2)/.6)}.bg-red-2\/70{background-color:rgb(var(--red-2)/.7)}.bg-red-2\/75{background-color:rgb(var(--red-2)/.75)}.bg-red-2\/80{background-color:rgb(var(--red-2)/.8)}.bg-red-2\/90{background-color:rgb(var(--red-2)/.9)}.bg-red-2\/95{background-color:rgb(var(--red-2)/.95)}.bg-red-3\/0{background-color:rgb(var(--red-3)/0)}.bg-red-3\/10{background-color:rgb(var(--red-3)/.1)}.bg-red-3\/100{background-color:rgb(var(--red-3)/1)}.bg-red-3\/20{background-color:rgb(var(--red-3)/.2)}.bg-red-3\/25{background-color:rgb(var(--red-3)/.25)}.bg-red-3\/30{background-color:rgb(var(--red-3)/.3)}.bg-red-3\/40{background-color:rgb(var(--red-3)/.4)}.bg-red-3\/5{background-color:rgb(var(--red-3)/.05)}.bg-red-3\/50{background-color:rgb(var(--red-3)/.5)}.bg-red-3\/60{background-color:rgb(var(--red-3)/.6)}.bg-red-3\/70{background-color:rgb(var(--red-3)/.7)}.bg-red-3\/75{background-color:rgb(var(--red-3)/.75)}.bg-red-3\/80{background-color:rgb(var(--red-3)/.8)}.bg-red-3\/90{background-color:rgb(var(--red-3)/.9)}.bg-red-3\/95{background-color:rgb(var(--red-3)/.95)}.bg-red-4\/0{background-color:rgb(var(--red-4)/0)}.bg-red-4\/10{background-color:rgb(var(--red-4)/.1)}.bg-red-4\/100{background-color:rgb(var(--red-4)/1)}.bg-red-4\/20{background-color:rgb(var(--red-4)/.2)}.bg-red-4\/25{background-color:rgb(var(--red-4)/.25)}.bg-red-4\/30{background-color:rgb(var(--red-4)/.3)}.bg-red-4\/40{background-color:rgb(var(--red-4)/.4)}.bg-red-4\/5{background-color:rgb(var(--red-4)/.05)}.bg-red-4\/50{background-color:rgb(var(--red-4)/.5)}.bg-red-4\/60{background-color:rgb(var(--red-4)/.6)}.bg-red-4\/70{background-color:rgb(var(--red-4)/.7)}.bg-red-4\/75{background-color:rgb(var(--red-4)/.75)}.bg-red-4\/80{background-color:rgb(var(--red-4)/.8)}.bg-red-4\/90{background-color:rgb(var(--red-4)/.9)}.bg-red-4\/95{background-color:rgb(var(--red-4)/.95)}.bg-red-5\/0{background-color:rgb(var(--red-5)/0)}.bg-red-5\/10{background-color:rgb(var(--red-5)/.1)}.bg-red-5\/100{background-color:rgb(var(--red-5)/1)}.bg-red-5\/20{background-color:rgb(var(--red-5)/.2)}.bg-red-5\/25{background-color:rgb(var(--red-5)/.25)}.bg-red-5\/30{background-color:rgb(var(--red-5)/.3)}.bg-red-5\/40{background-color:rgb(var(--red-5)/.4)}.bg-red-5\/5{background-color:rgb(var(--red-5)/.05)}.bg-red-5\/50{background-color:rgb(var(--red-5)/.5)}.bg-red-5\/60{background-color:rgb(var(--red-5)/.6)}.bg-red-5\/70{background-color:rgb(var(--red-5)/.7)}.bg-red-5\/75{background-color:rgb(var(--red-5)/.75)}.bg-red-5\/80{background-color:rgb(var(--red-5)/.8)}.bg-red-5\/90{background-color:rgb(var(--red-5)/.9)}.bg-red-5\/95{background-color:rgb(var(--red-5)/.95)}.bg-red-6\/0{background-color:rgb(var(--red-6)/0)}.bg-red-6\/10{background-color:rgb(var(--red-6)/.1)}.bg-red-6\/100{background-color:rgb(var(--red-6)/1)}.bg-red-6\/20{background-color:rgb(var(--red-6)/.2)}.bg-red-6\/25{background-color:rgb(var(--red-6)/.25)}.bg-red-6\/30{background-color:rgb(var(--red-6)/.3)}.bg-red-6\/40{background-color:rgb(var(--red-6)/.4)}.bg-red-6\/5{background-color:rgb(var(--red-6)/.05)}.bg-red-6\/50{background-color:rgb(var(--red-6)/.5)}.bg-red-6\/60{background-color:rgb(var(--red-6)/.6)}.bg-red-6\/70{background-color:rgb(var(--red-6)/.7)}.bg-red-6\/75{background-color:rgb(var(--red-6)/.75)}.bg-red-6\/80{background-color:rgb(var(--red-6)/.8)}.bg-red-6\/90{background-color:rgb(var(--red-6)/.9)}.bg-red-6\/95{background-color:rgb(var(--red-6)/.95)}.bg-red-7\/0{background-color:rgb(var(--red-7)/0)}.bg-red-7\/10{background-color:rgb(var(--red-7)/.1)}.bg-red-7\/100{background-color:rgb(var(--red-7)/1)}.bg-red-7\/20{background-color:rgb(var(--red-7)/.2)}.bg-red-7\/25{background-color:rgb(var(--red-7)/.25)}.bg-red-7\/30{background-color:rgb(var(--red-7)/.3)}.bg-red-7\/40{background-color:rgb(var(--red-7)/.4)}.bg-red-7\/5{background-color:rgb(var(--red-7)/.05)}.bg-red-7\/50{background-color:rgb(var(--red-7)/.5)}.bg-red-7\/60{background-color:rgb(var(--red-7)/.6)}.bg-red-7\/70{background-color:rgb(var(--red-7)/.7)}.bg-red-7\/75{background-color:rgb(var(--red-7)/.75)}.bg-red-7\/80{background-color:rgb(var(--red-7)/.8)}.bg-red-7\/90{background-color:rgb(var(--red-7)/.9)}.bg-red-7\/95{background-color:rgb(var(--red-7)/.95)}.bg-red-8\/0{background-color:rgb(var(--red-8)/0)}.bg-red-8\/10{background-color:rgb(var(--red-8)/.1)}.bg-red-8\/100{background-color:rgb(var(--red-8)/1)}.bg-red-8\/20{background-color:rgb(var(--red-8)/.2)}.bg-red-8\/25{background-color:rgb(var(--red-8)/.25)}.bg-red-8\/30{background-color:rgb(var(--red-8)/.3)}.bg-red-8\/40{background-color:rgb(var(--red-8)/.4)}.bg-red-8\/5{background-color:rgb(var(--red-8)/.05)}.bg-red-8\/50{background-color:rgb(var(--red-8)/.5)}.bg-red-8\/60{background-color:rgb(var(--red-8)/.6)}.bg-red-8\/70{background-color:rgb(var(--red-8)/.7)}.bg-red-8\/75{background-color:rgb(var(--red-8)/.75)}.bg-red-8\/80{background-color:rgb(var(--red-8)/.8)}.bg-red-8\/90{background-color:rgb(var(--red-8)/.9)}.bg-red-8\/95{background-color:rgb(var(--red-8)/.95)}.bg-red-9\/0{background-color:rgb(var(--red-9)/0)}.bg-red-9\/10{background-color:rgb(var(--red-9)/.1)}.bg-red-9\/100{background-color:rgb(var(--red-9)/1)}.bg-red-9\/20{background-color:rgb(var(--red-9)/.2)}.bg-red-9\/25{background-color:rgb(var(--red-9)/.25)}.bg-red-9\/30{background-color:rgb(var(--red-9)/.3)}.bg-red-9\/40{background-color:rgb(var(--red-9)/.4)}.bg-red-9\/5{background-color:rgb(var(--red-9)/.05)}.bg-red-9\/50{background-color:rgb(var(--red-9)/.5)}.bg-red-9\/60{background-color:rgb(var(--red-9)/.6)}.bg-red-9\/70{background-color:rgb(var(--red-9)/.7)}.bg-red-9\/75{background-color:rgb(var(--red-9)/.75)}.bg-red-9\/80{background-color:rgb(var(--red-9)/.8)}.bg-red-9\/90{background-color:rgb(var(--red-9)/.9)}.bg-red-9\/95{background-color:rgb(var(--red-9)/.95)}.bg-secondary{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.bg-secondary\/0{background-color:rgb(var(--secondary)/0)}.bg-secondary\/10{background-color:rgb(var(--secondary)/.1)}.bg-secondary\/100{background-color:rgb(var(--secondary)/1)}.bg-secondary\/20{background-color:rgb(var(--secondary)/.2)}.bg-secondary\/25{background-color:rgb(var(--secondary)/.25)}.bg-secondary\/30{background-color:rgb(var(--secondary)/.3)}.bg-secondary\/40{background-color:rgb(var(--secondary)/.4)}.bg-secondary\/5{background-color:rgb(var(--secondary)/.05)}.bg-secondary\/50{background-color:rgb(var(--secondary)/.5)}.bg-secondary\/60{background-color:rgb(var(--secondary)/.6)}.bg-secondary\/70{background-color:rgb(var(--secondary)/.7)}.bg-secondary\/75{background-color:rgb(var(--secondary)/.75)}.bg-secondary\/80{background-color:rgb(var(--secondary)/.8)}.bg-secondary\/90{background-color:rgb(var(--secondary)/.9)}.bg-secondary\/95{background-color:rgb(var(--secondary)/.95)}.bg-slate-1\/0{background-color:rgb(var(--slate-1)/0)}.bg-slate-1\/10{background-color:rgb(var(--slate-1)/.1)}.bg-slate-1\/100{background-color:rgb(var(--slate-1)/1)}.bg-slate-1\/20{background-color:rgb(var(--slate-1)/.2)}.bg-slate-1\/25{background-color:rgb(var(--slate-1)/.25)}.bg-slate-1\/30{background-color:rgb(var(--slate-1)/.3)}.bg-slate-1\/40{background-color:rgb(var(--slate-1)/.4)}.bg-slate-1\/5{background-color:rgb(var(--slate-1)/.05)}.bg-slate-1\/50{background-color:rgb(var(--slate-1)/.5)}.bg-slate-1\/60{background-color:rgb(var(--slate-1)/.6)}.bg-slate-1\/70{background-color:rgb(var(--slate-1)/.7)}.bg-slate-1\/75{background-color:rgb(var(--slate-1)/.75)}.bg-slate-1\/80{background-color:rgb(var(--slate-1)/.8)}.bg-slate-1\/90{background-color:rgb(var(--slate-1)/.9)}.bg-slate-1\/95{background-color:rgb(var(--slate-1)/.95)}.bg-slate-10\/0{background-color:rgb(var(--slate-10)/0)}.bg-slate-10\/10{background-color:rgb(var(--slate-10)/.1)}.bg-slate-10\/100{background-color:rgb(var(--slate-10)/1)}.bg-slate-10\/20{background-color:rgb(var(--slate-10)/.2)}.bg-slate-10\/25{background-color:rgb(var(--slate-10)/.25)}.bg-slate-10\/30{background-color:rgb(var(--slate-10)/.3)}.bg-slate-10\/40{background-color:rgb(var(--slate-10)/.4)}.bg-slate-10\/5{background-color:rgb(var(--slate-10)/.05)}.bg-slate-10\/50{background-color:rgb(var(--slate-10)/.5)}.bg-slate-10\/60{background-color:rgb(var(--slate-10)/.6)}.bg-slate-10\/70{background-color:rgb(var(--slate-10)/.7)}.bg-slate-10\/75{background-color:rgb(var(--slate-10)/.75)}.bg-slate-10\/80{background-color:rgb(var(--slate-10)/.8)}.bg-slate-10\/90{background-color:rgb(var(--slate-10)/.9)}.bg-slate-10\/95{background-color:rgb(var(--slate-10)/.95)}.bg-slate-2\/0{background-color:rgb(var(--slate-2)/0)}.bg-slate-2\/10{background-color:rgb(var(--slate-2)/.1)}.bg-slate-2\/100{background-color:rgb(var(--slate-2)/1)}.bg-slate-2\/20{background-color:rgb(var(--slate-2)/.2)}.bg-slate-2\/25{background-color:rgb(var(--slate-2)/.25)}.bg-slate-2\/30{background-color:rgb(var(--slate-2)/.3)}.bg-slate-2\/40{background-color:rgb(var(--slate-2)/.4)}.bg-slate-2\/5{background-color:rgb(var(--slate-2)/.05)}.bg-slate-2\/50{background-color:rgb(var(--slate-2)/.5)}.bg-slate-2\/60{background-color:rgb(var(--slate-2)/.6)}.bg-slate-2\/70{background-color:rgb(var(--slate-2)/.7)}.bg-slate-2\/75{background-color:rgb(var(--slate-2)/.75)}.bg-slate-2\/80{background-color:rgb(var(--slate-2)/.8)}.bg-slate-2\/90{background-color:rgb(var(--slate-2)/.9)}.bg-slate-2\/95{background-color:rgb(var(--slate-2)/.95)}.bg-slate-3\/0{background-color:rgb(var(--slate-3)/0)}.bg-slate-3\/10{background-color:rgb(var(--slate-3)/.1)}.bg-slate-3\/100{background-color:rgb(var(--slate-3)/1)}.bg-slate-3\/20{background-color:rgb(var(--slate-3)/.2)}.bg-slate-3\/25{background-color:rgb(var(--slate-3)/.25)}.bg-slate-3\/30{background-color:rgb(var(--slate-3)/.3)}.bg-slate-3\/40{background-color:rgb(var(--slate-3)/.4)}.bg-slate-3\/5{background-color:rgb(var(--slate-3)/.05)}.bg-slate-3\/50{background-color:rgb(var(--slate-3)/.5)}.bg-slate-3\/60{background-color:rgb(var(--slate-3)/.6)}.bg-slate-3\/70{background-color:rgb(var(--slate-3)/.7)}.bg-slate-3\/75{background-color:rgb(var(--slate-3)/.75)}.bg-slate-3\/80{background-color:rgb(var(--slate-3)/.8)}.bg-slate-3\/90{background-color:rgb(var(--slate-3)/.9)}.bg-slate-3\/95{background-color:rgb(var(--slate-3)/.95)}.bg-slate-4\/0{background-color:rgb(var(--slate-4)/0)}.bg-slate-4\/10{background-color:rgb(var(--slate-4)/.1)}.bg-slate-4\/100{background-color:rgb(var(--slate-4)/1)}.bg-slate-4\/20{background-color:rgb(var(--slate-4)/.2)}.bg-slate-4\/25{background-color:rgb(var(--slate-4)/.25)}.bg-slate-4\/30{background-color:rgb(var(--slate-4)/.3)}.bg-slate-4\/40{background-color:rgb(var(--slate-4)/.4)}.bg-slate-4\/5{background-color:rgb(var(--slate-4)/.05)}.bg-slate-4\/50{background-color:rgb(var(--slate-4)/.5)}.bg-slate-4\/60{background-color:rgb(var(--slate-4)/.6)}.bg-slate-4\/70{background-color:rgb(var(--slate-4)/.7)}.bg-slate-4\/75{background-color:rgb(var(--slate-4)/.75)}.bg-slate-4\/80{background-color:rgb(var(--slate-4)/.8)}.bg-slate-4\/90{background-color:rgb(var(--slate-4)/.9)}.bg-slate-4\/95{background-color:rgb(var(--slate-4)/.95)}.bg-slate-5\/0{background-color:rgb(var(--slate-5)/0)}.bg-slate-5\/10{background-color:rgb(var(--slate-5)/.1)}.bg-slate-5\/100{background-color:rgb(var(--slate-5)/1)}.bg-slate-5\/20{background-color:rgb(var(--slate-5)/.2)}.bg-slate-5\/25{background-color:rgb(var(--slate-5)/.25)}.bg-slate-5\/30{background-color:rgb(var(--slate-5)/.3)}.bg-slate-5\/40{background-color:rgb(var(--slate-5)/.4)}.bg-slate-5\/5{background-color:rgb(var(--slate-5)/.05)}.bg-slate-5\/50{background-color:rgb(var(--slate-5)/.5)}.bg-slate-5\/60{background-color:rgb(var(--slate-5)/.6)}.bg-slate-5\/70{background-color:rgb(var(--slate-5)/.7)}.bg-slate-5\/75{background-color:rgb(var(--slate-5)/.75)}.bg-slate-5\/80{background-color:rgb(var(--slate-5)/.8)}.bg-slate-5\/90{background-color:rgb(var(--slate-5)/.9)}.bg-slate-5\/95{background-color:rgb(var(--slate-5)/.95)}.bg-slate-6\/0{background-color:rgb(var(--slate-6)/0)}.bg-slate-6\/10{background-color:rgb(var(--slate-6)/.1)}.bg-slate-6\/100{background-color:rgb(var(--slate-6)/1)}.bg-slate-6\/20{background-color:rgb(var(--slate-6)/.2)}.bg-slate-6\/25{background-color:rgb(var(--slate-6)/.25)}.bg-slate-6\/30{background-color:rgb(var(--slate-6)/.3)}.bg-slate-6\/40{background-color:rgb(var(--slate-6)/.4)}.bg-slate-6\/5{background-color:rgb(var(--slate-6)/.05)}.bg-slate-6\/50{background-color:rgb(var(--slate-6)/.5)}.bg-slate-6\/60{background-color:rgb(var(--slate-6)/.6)}.bg-slate-6\/70{background-color:rgb(var(--slate-6)/.7)}.bg-slate-6\/75{background-color:rgb(var(--slate-6)/.75)}.bg-slate-6\/80{background-color:rgb(var(--slate-6)/.8)}.bg-slate-6\/90{background-color:rgb(var(--slate-6)/.9)}.bg-slate-6\/95{background-color:rgb(var(--slate-6)/.95)}.bg-slate-7\/0{background-color:rgb(var(--slate-7)/0)}.bg-slate-7\/10{background-color:rgb(var(--slate-7)/.1)}.bg-slate-7\/100{background-color:rgb(var(--slate-7)/1)}.bg-slate-7\/20{background-color:rgb(var(--slate-7)/.2)}.bg-slate-7\/25{background-color:rgb(var(--slate-7)/.25)}.bg-slate-7\/30{background-color:rgb(var(--slate-7)/.3)}.bg-slate-7\/40{background-color:rgb(var(--slate-7)/.4)}.bg-slate-7\/5{background-color:rgb(var(--slate-7)/.05)}.bg-slate-7\/50{background-color:rgb(var(--slate-7)/.5)}.bg-slate-7\/60{background-color:rgb(var(--slate-7)/.6)}.bg-slate-7\/70{background-color:rgb(var(--slate-7)/.7)}.bg-slate-7\/75{background-color:rgb(var(--slate-7)/.75)}.bg-slate-7\/80{background-color:rgb(var(--slate-7)/.8)}.bg-slate-7\/90{background-color:rgb(var(--slate-7)/.9)}.bg-slate-7\/95{background-color:rgb(var(--slate-7)/.95)}.bg-slate-8\/0{background-color:rgb(var(--slate-8)/0)}.bg-slate-8\/10{background-color:rgb(var(--slate-8)/.1)}.bg-slate-8\/100{background-color:rgb(var(--slate-8)/1)}.bg-slate-8\/20{background-color:rgb(var(--slate-8)/.2)}.bg-slate-8\/25{background-color:rgb(var(--slate-8)/.25)}.bg-slate-8\/30{background-color:rgb(var(--slate-8)/.3)}.bg-slate-8\/40{background-color:rgb(var(--slate-8)/.4)}.bg-slate-8\/5{background-color:rgb(var(--slate-8)/.05)}.bg-slate-8\/50{background-color:rgb(var(--slate-8)/.5)}.bg-slate-8\/60{background-color:rgb(var(--slate-8)/.6)}.bg-slate-8\/70{background-color:rgb(var(--slate-8)/.7)}.bg-slate-8\/75{background-color:rgb(var(--slate-8)/.75)}.bg-slate-8\/80{background-color:rgb(var(--slate-8)/.8)}.bg-slate-8\/90{background-color:rgb(var(--slate-8)/.9)}.bg-slate-8\/95{background-color:rgb(var(--slate-8)/.95)}.bg-slate-9\/0{background-color:rgb(var(--slate-9)/0)}.bg-slate-9\/10{background-color:rgb(var(--slate-9)/.1)}.bg-slate-9\/100{background-color:rgb(var(--slate-9)/1)}.bg-slate-9\/20{background-color:rgb(var(--slate-9)/.2)}.bg-slate-9\/25{background-color:rgb(var(--slate-9)/.25)}.bg-slate-9\/30{background-color:rgb(var(--slate-9)/.3)}.bg-slate-9\/40{background-color:rgb(var(--slate-9)/.4)}.bg-slate-9\/5{background-color:rgb(var(--slate-9)/.05)}.bg-slate-9\/50{background-color:rgb(var(--slate-9)/.5)}.bg-slate-9\/60{background-color:rgb(var(--slate-9)/.6)}.bg-slate-9\/70{background-color:rgb(var(--slate-9)/.7)}.bg-slate-9\/75{background-color:rgb(var(--slate-9)/.75)}.bg-slate-9\/80{background-color:rgb(var(--slate-9)/.8)}.bg-slate-9\/90{background-color:rgb(var(--slate-9)/.9)}.bg-slate-9\/95{background-color:rgb(var(--slate-9)/.95)}.bg-success{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.bg-success\/0{background-color:rgb(var(--success)/0)}.bg-success\/10{background-color:rgb(var(--success)/.1)}.bg-success\/100{background-color:rgb(var(--success)/1)}.bg-success\/20{background-color:rgb(var(--success)/.2)}.bg-success\/25{background-color:rgb(var(--success)/.25)}.bg-success\/30{background-color:rgb(var(--success)/.3)}.bg-success\/40{background-color:rgb(var(--success)/.4)}.bg-success\/5{background-color:rgb(var(--success)/.05)}.bg-success\/50{background-color:rgb(var(--success)/.5)}.bg-success\/60{background-color:rgb(var(--success)/.6)}.bg-success\/70{background-color:rgb(var(--success)/.7)}.bg-success\/75{background-color:rgb(var(--success)/.75)}.bg-success\/80{background-color:rgb(var(--success)/.8)}.bg-success\/90{background-color:rgb(var(--success)/.9)}.bg-success\/95{background-color:rgb(var(--success)/.95)}.bg-warning{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.bg-warning\/0{background-color:rgb(var(--warning)/0)}.bg-warning\/10{background-color:rgb(var(--warning)/.1)}.bg-warning\/100{background-color:rgb(var(--warning)/1)}.bg-warning\/20{background-color:rgb(var(--warning)/.2)}.bg-warning\/25{background-color:rgb(var(--warning)/.25)}.bg-warning\/30{background-color:rgb(var(--warning)/.3)}.bg-warning\/40{background-color:rgb(var(--warning)/.4)}.bg-warning\/5{background-color:rgb(var(--warning)/.05)}.bg-warning\/50{background-color:rgb(var(--warning)/.5)}.bg-warning\/60{background-color:rgb(var(--warning)/.6)}.bg-warning\/70{background-color:rgb(var(--warning)/.7)}.bg-warning\/75{background-color:rgb(var(--warning)/.75)}.bg-warning\/80{background-color:rgb(var(--warning)/.8)}.bg-warning\/90{background-color:rgb(var(--warning)/.9)}.bg-warning\/95{background-color:rgb(var(--warning)/.95)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-white\/0{background-color:hsla(0,0%,100%,0)}.bg-white\/10{background-color:hsla(0,0%,100%,.1)}.bg-white\/100{background-color:#fff}.bg-white\/20{background-color:hsla(0,0%,100%,.2)}.bg-white\/25{background-color:hsla(0,0%,100%,.25)}.bg-white\/30{background-color:hsla(0,0%,100%,.3)}.bg-white\/40{background-color:hsla(0,0%,100%,.4)}.bg-white\/5{background-color:hsla(0,0%,100%,.05)}.bg-white\/50{background-color:hsla(0,0%,100%,.5)}.bg-white\/60{background-color:hsla(0,0%,100%,.6)}.bg-white\/70{background-color:hsla(0,0%,100%,.7)}.bg-white\/75{background-color:hsla(0,0%,100%,.75)}.bg-white\/80{background-color:hsla(0,0%,100%,.8)}.bg-white\/90{background-color:hsla(0,0%,100%,.9)}.bg-white\/95{background-color:hsla(0,0%,100%,.95)}.bg-whiteInverted{--tw-bg-opacity:1;background-color:rgb(var(--whiteInverted)/var(--tw-bg-opacity))}.bg-whiteInverted\/0{background-color:rgb(var(--whiteInverted)/0)}.bg-whiteInverted\/10{background-color:rgb(var(--whiteInverted)/.1)}.bg-whiteInverted\/100{background-color:rgb(var(--whiteInverted)/1)}.bg-whiteInverted\/20{background-color:rgb(var(--whiteInverted)/.2)}.bg-whiteInverted\/25{background-color:rgb(var(--whiteInverted)/.25)}.bg-whiteInverted\/30{background-color:rgb(var(--whiteInverted)/.3)}.bg-whiteInverted\/40{background-color:rgb(var(--whiteInverted)/.4)}.bg-whiteInverted\/5{background-color:rgb(var(--whiteInverted)/.05)}.bg-whiteInverted\/50{background-color:rgb(var(--whiteInverted)/.5)}.bg-whiteInverted\/60{background-color:rgb(var(--whiteInverted)/.6)}.bg-whiteInverted\/70{background-color:rgb(var(--whiteInverted)/.7)}.bg-whiteInverted\/75{background-color:rgb(var(--whiteInverted)/.75)}.bg-whiteInverted\/80{background-color:rgb(var(--whiteInverted)/.8)}.bg-whiteInverted\/90{background-color:rgb(var(--whiteInverted)/.9)}.bg-whiteInverted\/95{background-color:rgb(var(--whiteInverted)/.95)}.from-backgroundPrimary{--tw-gradient-from:rgb(var(--backgroundPrimary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/0{--tw-gradient-from:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/10{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/100{--tw-gradient-from:rgb(var(--backgroundPrimary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/20{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/25{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/30{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/40{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/5{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/50{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/60{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/70{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/75{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/80{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/90{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundPrimary\/95{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary{--tw-gradient-from:rgb(var(--backgroundSecondary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/0{--tw-gradient-from:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/10{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/100{--tw-gradient-from:rgb(var(--backgroundSecondary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/20{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/25{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/30{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/40{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/5{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/50{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/60{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/70{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/75{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/80{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/90{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-backgroundSecondary\/95{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black{--tw-gradient-from:#000 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/0{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/10{--tw-gradient-from:rgba(0,0,0,.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/100{--tw-gradient-from:#000 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/20{--tw-gradient-from:rgba(0,0,0,.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/25{--tw-gradient-from:rgba(0,0,0,.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/30{--tw-gradient-from:rgba(0,0,0,.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/40{--tw-gradient-from:rgba(0,0,0,.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/5{--tw-gradient-from:rgba(0,0,0,.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/50{--tw-gradient-from:rgba(0,0,0,.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/60{--tw-gradient-from:rgba(0,0,0,.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/70{--tw-gradient-from:rgba(0,0,0,.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/75{--tw-gradient-from:rgba(0,0,0,.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/80{--tw-gradient-from:rgba(0,0,0,.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/90{--tw-gradient-from:rgba(0,0,0,.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black\/95{--tw-gradient-from:rgba(0,0,0,.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted{--tw-gradient-from:rgb(var(--blackInverted)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/0{--tw-gradient-from:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/10{--tw-gradient-from:rgb(var(--blackInverted)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/100{--tw-gradient-from:rgb(var(--blackInverted)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/20{--tw-gradient-from:rgb(var(--blackInverted)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/25{--tw-gradient-from:rgb(var(--blackInverted)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/30{--tw-gradient-from:rgb(var(--blackInverted)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/40{--tw-gradient-from:rgb(var(--blackInverted)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/5{--tw-gradient-from:rgb(var(--blackInverted)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/50{--tw-gradient-from:rgb(var(--blackInverted)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/60{--tw-gradient-from:rgb(var(--blackInverted)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/70{--tw-gradient-from:rgb(var(--blackInverted)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/75{--tw-gradient-from:rgb(var(--blackInverted)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/80{--tw-gradient-from:rgb(var(--blackInverted)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/90{--tw-gradient-from:rgb(var(--blackInverted)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blackInverted\/95{--tw-gradient-from:rgb(var(--blackInverted)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/0{--tw-gradient-from:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/10{--tw-gradient-from:rgb(var(--blue-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/100{--tw-gradient-from:rgb(var(--blue-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/20{--tw-gradient-from:rgb(var(--blue-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/25{--tw-gradient-from:rgb(var(--blue-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/30{--tw-gradient-from:rgb(var(--blue-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/40{--tw-gradient-from:rgb(var(--blue-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/5{--tw-gradient-from:rgb(var(--blue-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/50{--tw-gradient-from:rgb(var(--blue-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/60{--tw-gradient-from:rgb(var(--blue-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/70{--tw-gradient-from:rgb(var(--blue-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/75{--tw-gradient-from:rgb(var(--blue-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/80{--tw-gradient-from:rgb(var(--blue-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/90{--tw-gradient-from:rgb(var(--blue-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-1\/95{--tw-gradient-from:rgb(var(--blue-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/0{--tw-gradient-from:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/10{--tw-gradient-from:rgb(var(--blue-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/100{--tw-gradient-from:rgb(var(--blue-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/20{--tw-gradient-from:rgb(var(--blue-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/25{--tw-gradient-from:rgb(var(--blue-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/30{--tw-gradient-from:rgb(var(--blue-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/40{--tw-gradient-from:rgb(var(--blue-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/5{--tw-gradient-from:rgb(var(--blue-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/50{--tw-gradient-from:rgb(var(--blue-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/60{--tw-gradient-from:rgb(var(--blue-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/70{--tw-gradient-from:rgb(var(--blue-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/75{--tw-gradient-from:rgb(var(--blue-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/80{--tw-gradient-from:rgb(var(--blue-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/90{--tw-gradient-from:rgb(var(--blue-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-10\/95{--tw-gradient-from:rgb(var(--blue-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/0{--tw-gradient-from:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/10{--tw-gradient-from:rgb(var(--blue-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/100{--tw-gradient-from:rgb(var(--blue-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/20{--tw-gradient-from:rgb(var(--blue-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/25{--tw-gradient-from:rgb(var(--blue-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/30{--tw-gradient-from:rgb(var(--blue-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/40{--tw-gradient-from:rgb(var(--blue-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/5{--tw-gradient-from:rgb(var(--blue-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/50{--tw-gradient-from:rgb(var(--blue-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/60{--tw-gradient-from:rgb(var(--blue-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/70{--tw-gradient-from:rgb(var(--blue-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/75{--tw-gradient-from:rgb(var(--blue-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/80{--tw-gradient-from:rgb(var(--blue-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/90{--tw-gradient-from:rgb(var(--blue-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-2\/95{--tw-gradient-from:rgb(var(--blue-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/0{--tw-gradient-from:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/10{--tw-gradient-from:rgb(var(--blue-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/100{--tw-gradient-from:rgb(var(--blue-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/20{--tw-gradient-from:rgb(var(--blue-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/25{--tw-gradient-from:rgb(var(--blue-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/30{--tw-gradient-from:rgb(var(--blue-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/40{--tw-gradient-from:rgb(var(--blue-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/5{--tw-gradient-from:rgb(var(--blue-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/50{--tw-gradient-from:rgb(var(--blue-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/60{--tw-gradient-from:rgb(var(--blue-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/70{--tw-gradient-from:rgb(var(--blue-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/75{--tw-gradient-from:rgb(var(--blue-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/80{--tw-gradient-from:rgb(var(--blue-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/90{--tw-gradient-from:rgb(var(--blue-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-3\/95{--tw-gradient-from:rgb(var(--blue-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/0{--tw-gradient-from:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/10{--tw-gradient-from:rgb(var(--blue-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/100{--tw-gradient-from:rgb(var(--blue-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/20{--tw-gradient-from:rgb(var(--blue-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/25{--tw-gradient-from:rgb(var(--blue-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/30{--tw-gradient-from:rgb(var(--blue-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/40{--tw-gradient-from:rgb(var(--blue-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/5{--tw-gradient-from:rgb(var(--blue-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/50{--tw-gradient-from:rgb(var(--blue-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/60{--tw-gradient-from:rgb(var(--blue-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/70{--tw-gradient-from:rgb(var(--blue-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/75{--tw-gradient-from:rgb(var(--blue-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/80{--tw-gradient-from:rgb(var(--blue-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/90{--tw-gradient-from:rgb(var(--blue-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-4\/95{--tw-gradient-from:rgb(var(--blue-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/0{--tw-gradient-from:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/10{--tw-gradient-from:rgb(var(--blue-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/100{--tw-gradient-from:rgb(var(--blue-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/20{--tw-gradient-from:rgb(var(--blue-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/25{--tw-gradient-from:rgb(var(--blue-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/30{--tw-gradient-from:rgb(var(--blue-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/40{--tw-gradient-from:rgb(var(--blue-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/5{--tw-gradient-from:rgb(var(--blue-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/50{--tw-gradient-from:rgb(var(--blue-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/60{--tw-gradient-from:rgb(var(--blue-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/70{--tw-gradient-from:rgb(var(--blue-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/75{--tw-gradient-from:rgb(var(--blue-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/80{--tw-gradient-from:rgb(var(--blue-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/90{--tw-gradient-from:rgb(var(--blue-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-5\/95{--tw-gradient-from:rgb(var(--blue-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/0{--tw-gradient-from:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/10{--tw-gradient-from:rgb(var(--blue-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/100{--tw-gradient-from:rgb(var(--blue-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/20{--tw-gradient-from:rgb(var(--blue-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/25{--tw-gradient-from:rgb(var(--blue-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/30{--tw-gradient-from:rgb(var(--blue-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/40{--tw-gradient-from:rgb(var(--blue-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/5{--tw-gradient-from:rgb(var(--blue-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/50{--tw-gradient-from:rgb(var(--blue-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/60{--tw-gradient-from:rgb(var(--blue-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/70{--tw-gradient-from:rgb(var(--blue-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/75{--tw-gradient-from:rgb(var(--blue-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/80{--tw-gradient-from:rgb(var(--blue-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/90{--tw-gradient-from:rgb(var(--blue-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-6\/95{--tw-gradient-from:rgb(var(--blue-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/0{--tw-gradient-from:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/10{--tw-gradient-from:rgb(var(--blue-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/100{--tw-gradient-from:rgb(var(--blue-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/20{--tw-gradient-from:rgb(var(--blue-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/25{--tw-gradient-from:rgb(var(--blue-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/30{--tw-gradient-from:rgb(var(--blue-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/40{--tw-gradient-from:rgb(var(--blue-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/5{--tw-gradient-from:rgb(var(--blue-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/50{--tw-gradient-from:rgb(var(--blue-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/60{--tw-gradient-from:rgb(var(--blue-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/70{--tw-gradient-from:rgb(var(--blue-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/75{--tw-gradient-from:rgb(var(--blue-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/80{--tw-gradient-from:rgb(var(--blue-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/90{--tw-gradient-from:rgb(var(--blue-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-7\/95{--tw-gradient-from:rgb(var(--blue-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/0{--tw-gradient-from:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/10{--tw-gradient-from:rgb(var(--blue-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/100{--tw-gradient-from:rgb(var(--blue-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/20{--tw-gradient-from:rgb(var(--blue-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/25{--tw-gradient-from:rgb(var(--blue-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/30{--tw-gradient-from:rgb(var(--blue-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/40{--tw-gradient-from:rgb(var(--blue-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/5{--tw-gradient-from:rgb(var(--blue-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/50{--tw-gradient-from:rgb(var(--blue-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/60{--tw-gradient-from:rgb(var(--blue-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/70{--tw-gradient-from:rgb(var(--blue-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/75{--tw-gradient-from:rgb(var(--blue-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/80{--tw-gradient-from:rgb(var(--blue-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/90{--tw-gradient-from:rgb(var(--blue-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-8\/95{--tw-gradient-from:rgb(var(--blue-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/0{--tw-gradient-from:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/10{--tw-gradient-from:rgb(var(--blue-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/100{--tw-gradient-from:rgb(var(--blue-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/20{--tw-gradient-from:rgb(var(--blue-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/25{--tw-gradient-from:rgb(var(--blue-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/30{--tw-gradient-from:rgb(var(--blue-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/40{--tw-gradient-from:rgb(var(--blue-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/5{--tw-gradient-from:rgb(var(--blue-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/50{--tw-gradient-from:rgb(var(--blue-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/60{--tw-gradient-from:rgb(var(--blue-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/70{--tw-gradient-from:rgb(var(--blue-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/75{--tw-gradient-from:rgb(var(--blue-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/80{--tw-gradient-from:rgb(var(--blue-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/90{--tw-gradient-from:rgb(var(--blue-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-blue-9\/95{--tw-gradient-from:rgb(var(--blue-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border{--tw-gradient-from:rgb(var(--border)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/0{--tw-gradient-from:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/10{--tw-gradient-from:rgb(var(--border)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/100{--tw-gradient-from:rgb(var(--border)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/20{--tw-gradient-from:rgb(var(--border)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/25{--tw-gradient-from:rgb(var(--border)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/30{--tw-gradient-from:rgb(var(--border)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/40{--tw-gradient-from:rgb(var(--border)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/5{--tw-gradient-from:rgb(var(--border)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/50{--tw-gradient-from:rgb(var(--border)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/60{--tw-gradient-from:rgb(var(--border)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/70{--tw-gradient-from:rgb(var(--border)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/75{--tw-gradient-from:rgb(var(--border)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/80{--tw-gradient-from:rgb(var(--border)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/90{--tw-gradient-from:rgb(var(--border)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-border\/95{--tw-gradient-from:rgb(var(--border)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1{--tw-gradient-from:rgb(var(--content1)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/0{--tw-gradient-from:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/10{--tw-gradient-from:rgb(var(--content1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/100{--tw-gradient-from:rgb(var(--content1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/20{--tw-gradient-from:rgb(var(--content1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/25{--tw-gradient-from:rgb(var(--content1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/30{--tw-gradient-from:rgb(var(--content1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/40{--tw-gradient-from:rgb(var(--content1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/5{--tw-gradient-from:rgb(var(--content1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/50{--tw-gradient-from:rgb(var(--content1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/60{--tw-gradient-from:rgb(var(--content1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/70{--tw-gradient-from:rgb(var(--content1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/75{--tw-gradient-from:rgb(var(--content1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/80{--tw-gradient-from:rgb(var(--content1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/90{--tw-gradient-from:rgb(var(--content1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content1\/95{--tw-gradient-from:rgb(var(--content1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2{--tw-gradient-from:rgb(var(--content2)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/0{--tw-gradient-from:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/10{--tw-gradient-from:rgb(var(--content2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/100{--tw-gradient-from:rgb(var(--content2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/20{--tw-gradient-from:rgb(var(--content2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/25{--tw-gradient-from:rgb(var(--content2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/30{--tw-gradient-from:rgb(var(--content2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/40{--tw-gradient-from:rgb(var(--content2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/5{--tw-gradient-from:rgb(var(--content2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/50{--tw-gradient-from:rgb(var(--content2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/60{--tw-gradient-from:rgb(var(--content2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/70{--tw-gradient-from:rgb(var(--content2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/75{--tw-gradient-from:rgb(var(--content2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/80{--tw-gradient-from:rgb(var(--content2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/90{--tw-gradient-from:rgb(var(--content2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content2\/95{--tw-gradient-from:rgb(var(--content2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3{--tw-gradient-from:rgb(var(--content3)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/0{--tw-gradient-from:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/10{--tw-gradient-from:rgb(var(--content3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/100{--tw-gradient-from:rgb(var(--content3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/20{--tw-gradient-from:rgb(var(--content3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/25{--tw-gradient-from:rgb(var(--content3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/30{--tw-gradient-from:rgb(var(--content3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/40{--tw-gradient-from:rgb(var(--content3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/5{--tw-gradient-from:rgb(var(--content3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/50{--tw-gradient-from:rgb(var(--content3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/60{--tw-gradient-from:rgb(var(--content3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/70{--tw-gradient-from:rgb(var(--content3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/75{--tw-gradient-from:rgb(var(--content3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/80{--tw-gradient-from:rgb(var(--content3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/90{--tw-gradient-from:rgb(var(--content3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-content3\/95{--tw-gradient-from:rgb(var(--content3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/0{--tw-gradient-from:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/10{--tw-gradient-from:rgb(var(--cyan-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/100{--tw-gradient-from:rgb(var(--cyan-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/20{--tw-gradient-from:rgb(var(--cyan-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/25{--tw-gradient-from:rgb(var(--cyan-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/30{--tw-gradient-from:rgb(var(--cyan-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/40{--tw-gradient-from:rgb(var(--cyan-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/5{--tw-gradient-from:rgb(var(--cyan-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/50{--tw-gradient-from:rgb(var(--cyan-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/60{--tw-gradient-from:rgb(var(--cyan-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/70{--tw-gradient-from:rgb(var(--cyan-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/75{--tw-gradient-from:rgb(var(--cyan-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/80{--tw-gradient-from:rgb(var(--cyan-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/90{--tw-gradient-from:rgb(var(--cyan-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-1\/95{--tw-gradient-from:rgb(var(--cyan-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/0{--tw-gradient-from:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/10{--tw-gradient-from:rgb(var(--cyan-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/100{--tw-gradient-from:rgb(var(--cyan-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/20{--tw-gradient-from:rgb(var(--cyan-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/25{--tw-gradient-from:rgb(var(--cyan-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/30{--tw-gradient-from:rgb(var(--cyan-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/40{--tw-gradient-from:rgb(var(--cyan-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/5{--tw-gradient-from:rgb(var(--cyan-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/50{--tw-gradient-from:rgb(var(--cyan-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/60{--tw-gradient-from:rgb(var(--cyan-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/70{--tw-gradient-from:rgb(var(--cyan-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/75{--tw-gradient-from:rgb(var(--cyan-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/80{--tw-gradient-from:rgb(var(--cyan-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/90{--tw-gradient-from:rgb(var(--cyan-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-10\/95{--tw-gradient-from:rgb(var(--cyan-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/0{--tw-gradient-from:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/10{--tw-gradient-from:rgb(var(--cyan-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/100{--tw-gradient-from:rgb(var(--cyan-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/20{--tw-gradient-from:rgb(var(--cyan-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/25{--tw-gradient-from:rgb(var(--cyan-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/30{--tw-gradient-from:rgb(var(--cyan-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/40{--tw-gradient-from:rgb(var(--cyan-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/5{--tw-gradient-from:rgb(var(--cyan-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/50{--tw-gradient-from:rgb(var(--cyan-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/60{--tw-gradient-from:rgb(var(--cyan-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/70{--tw-gradient-from:rgb(var(--cyan-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/75{--tw-gradient-from:rgb(var(--cyan-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/80{--tw-gradient-from:rgb(var(--cyan-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/90{--tw-gradient-from:rgb(var(--cyan-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-2\/95{--tw-gradient-from:rgb(var(--cyan-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/0{--tw-gradient-from:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/10{--tw-gradient-from:rgb(var(--cyan-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/100{--tw-gradient-from:rgb(var(--cyan-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/20{--tw-gradient-from:rgb(var(--cyan-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/25{--tw-gradient-from:rgb(var(--cyan-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/30{--tw-gradient-from:rgb(var(--cyan-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/40{--tw-gradient-from:rgb(var(--cyan-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/5{--tw-gradient-from:rgb(var(--cyan-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/50{--tw-gradient-from:rgb(var(--cyan-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/60{--tw-gradient-from:rgb(var(--cyan-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/70{--tw-gradient-from:rgb(var(--cyan-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/75{--tw-gradient-from:rgb(var(--cyan-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/80{--tw-gradient-from:rgb(var(--cyan-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/90{--tw-gradient-from:rgb(var(--cyan-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-3\/95{--tw-gradient-from:rgb(var(--cyan-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/0{--tw-gradient-from:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/10{--tw-gradient-from:rgb(var(--cyan-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/100{--tw-gradient-from:rgb(var(--cyan-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/20{--tw-gradient-from:rgb(var(--cyan-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/25{--tw-gradient-from:rgb(var(--cyan-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/30{--tw-gradient-from:rgb(var(--cyan-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/40{--tw-gradient-from:rgb(var(--cyan-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/5{--tw-gradient-from:rgb(var(--cyan-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/50{--tw-gradient-from:rgb(var(--cyan-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/60{--tw-gradient-from:rgb(var(--cyan-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/70{--tw-gradient-from:rgb(var(--cyan-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/75{--tw-gradient-from:rgb(var(--cyan-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/80{--tw-gradient-from:rgb(var(--cyan-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/90{--tw-gradient-from:rgb(var(--cyan-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-4\/95{--tw-gradient-from:rgb(var(--cyan-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/0{--tw-gradient-from:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/10{--tw-gradient-from:rgb(var(--cyan-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/100{--tw-gradient-from:rgb(var(--cyan-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/20{--tw-gradient-from:rgb(var(--cyan-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/25{--tw-gradient-from:rgb(var(--cyan-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/30{--tw-gradient-from:rgb(var(--cyan-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/40{--tw-gradient-from:rgb(var(--cyan-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/5{--tw-gradient-from:rgb(var(--cyan-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/50{--tw-gradient-from:rgb(var(--cyan-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/60{--tw-gradient-from:rgb(var(--cyan-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/70{--tw-gradient-from:rgb(var(--cyan-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/75{--tw-gradient-from:rgb(var(--cyan-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/80{--tw-gradient-from:rgb(var(--cyan-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/90{--tw-gradient-from:rgb(var(--cyan-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-5\/95{--tw-gradient-from:rgb(var(--cyan-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/0{--tw-gradient-from:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/10{--tw-gradient-from:rgb(var(--cyan-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/100{--tw-gradient-from:rgb(var(--cyan-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/20{--tw-gradient-from:rgb(var(--cyan-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/25{--tw-gradient-from:rgb(var(--cyan-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/30{--tw-gradient-from:rgb(var(--cyan-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/40{--tw-gradient-from:rgb(var(--cyan-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/5{--tw-gradient-from:rgb(var(--cyan-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/50{--tw-gradient-from:rgb(var(--cyan-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/60{--tw-gradient-from:rgb(var(--cyan-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/70{--tw-gradient-from:rgb(var(--cyan-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/75{--tw-gradient-from:rgb(var(--cyan-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/80{--tw-gradient-from:rgb(var(--cyan-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/90{--tw-gradient-from:rgb(var(--cyan-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-6\/95{--tw-gradient-from:rgb(var(--cyan-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/0{--tw-gradient-from:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/10{--tw-gradient-from:rgb(var(--cyan-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/100{--tw-gradient-from:rgb(var(--cyan-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/20{--tw-gradient-from:rgb(var(--cyan-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/25{--tw-gradient-from:rgb(var(--cyan-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/30{--tw-gradient-from:rgb(var(--cyan-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/40{--tw-gradient-from:rgb(var(--cyan-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/5{--tw-gradient-from:rgb(var(--cyan-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/50{--tw-gradient-from:rgb(var(--cyan-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/60{--tw-gradient-from:rgb(var(--cyan-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/70{--tw-gradient-from:rgb(var(--cyan-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/75{--tw-gradient-from:rgb(var(--cyan-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/80{--tw-gradient-from:rgb(var(--cyan-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/90{--tw-gradient-from:rgb(var(--cyan-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-7\/95{--tw-gradient-from:rgb(var(--cyan-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/0{--tw-gradient-from:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/10{--tw-gradient-from:rgb(var(--cyan-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/100{--tw-gradient-from:rgb(var(--cyan-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/20{--tw-gradient-from:rgb(var(--cyan-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/25{--tw-gradient-from:rgb(var(--cyan-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/30{--tw-gradient-from:rgb(var(--cyan-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/40{--tw-gradient-from:rgb(var(--cyan-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/5{--tw-gradient-from:rgb(var(--cyan-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/50{--tw-gradient-from:rgb(var(--cyan-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/60{--tw-gradient-from:rgb(var(--cyan-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/70{--tw-gradient-from:rgb(var(--cyan-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/75{--tw-gradient-from:rgb(var(--cyan-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/80{--tw-gradient-from:rgb(var(--cyan-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/90{--tw-gradient-from:rgb(var(--cyan-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-8\/95{--tw-gradient-from:rgb(var(--cyan-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/0{--tw-gradient-from:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/10{--tw-gradient-from:rgb(var(--cyan-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/100{--tw-gradient-from:rgb(var(--cyan-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/20{--tw-gradient-from:rgb(var(--cyan-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/25{--tw-gradient-from:rgb(var(--cyan-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/30{--tw-gradient-from:rgb(var(--cyan-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/40{--tw-gradient-from:rgb(var(--cyan-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/5{--tw-gradient-from:rgb(var(--cyan-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/50{--tw-gradient-from:rgb(var(--cyan-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/60{--tw-gradient-from:rgb(var(--cyan-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/70{--tw-gradient-from:rgb(var(--cyan-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/75{--tw-gradient-from:rgb(var(--cyan-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/80{--tw-gradient-from:rgb(var(--cyan-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/90{--tw-gradient-from:rgb(var(--cyan-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-cyan-9\/95{--tw-gradient-from:rgb(var(--cyan-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error{--tw-gradient-from:rgb(var(--error)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/0{--tw-gradient-from:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/10{--tw-gradient-from:rgb(var(--error)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/100{--tw-gradient-from:rgb(var(--error)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/20{--tw-gradient-from:rgb(var(--error)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/25{--tw-gradient-from:rgb(var(--error)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/30{--tw-gradient-from:rgb(var(--error)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/40{--tw-gradient-from:rgb(var(--error)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/5{--tw-gradient-from:rgb(var(--error)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/50{--tw-gradient-from:rgb(var(--error)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/60{--tw-gradient-from:rgb(var(--error)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/70{--tw-gradient-from:rgb(var(--error)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/75{--tw-gradient-from:rgb(var(--error)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/80{--tw-gradient-from:rgb(var(--error)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/90{--tw-gradient-from:rgb(var(--error)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/95{--tw-gradient-from:rgb(var(--error)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/0{--tw-gradient-from:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/10{--tw-gradient-from:rgb(var(--gray-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/100{--tw-gradient-from:rgb(var(--gray-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/20{--tw-gradient-from:rgb(var(--gray-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/25{--tw-gradient-from:rgb(var(--gray-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/30{--tw-gradient-from:rgb(var(--gray-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/40{--tw-gradient-from:rgb(var(--gray-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/5{--tw-gradient-from:rgb(var(--gray-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/50{--tw-gradient-from:rgb(var(--gray-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/60{--tw-gradient-from:rgb(var(--gray-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/70{--tw-gradient-from:rgb(var(--gray-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/75{--tw-gradient-from:rgb(var(--gray-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/80{--tw-gradient-from:rgb(var(--gray-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/90{--tw-gradient-from:rgb(var(--gray-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-1\/95{--tw-gradient-from:rgb(var(--gray-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/0{--tw-gradient-from:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/10{--tw-gradient-from:rgb(var(--gray-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/100{--tw-gradient-from:rgb(var(--gray-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/20{--tw-gradient-from:rgb(var(--gray-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/25{--tw-gradient-from:rgb(var(--gray-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/30{--tw-gradient-from:rgb(var(--gray-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/40{--tw-gradient-from:rgb(var(--gray-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/5{--tw-gradient-from:rgb(var(--gray-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/50{--tw-gradient-from:rgb(var(--gray-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/60{--tw-gradient-from:rgb(var(--gray-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/70{--tw-gradient-from:rgb(var(--gray-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/75{--tw-gradient-from:rgb(var(--gray-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/80{--tw-gradient-from:rgb(var(--gray-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/90{--tw-gradient-from:rgb(var(--gray-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-10\/95{--tw-gradient-from:rgb(var(--gray-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/0{--tw-gradient-from:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/10{--tw-gradient-from:rgb(var(--gray-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/100{--tw-gradient-from:rgb(var(--gray-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/20{--tw-gradient-from:rgb(var(--gray-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/25{--tw-gradient-from:rgb(var(--gray-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/30{--tw-gradient-from:rgb(var(--gray-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/40{--tw-gradient-from:rgb(var(--gray-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/5{--tw-gradient-from:rgb(var(--gray-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/50{--tw-gradient-from:rgb(var(--gray-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/60{--tw-gradient-from:rgb(var(--gray-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/70{--tw-gradient-from:rgb(var(--gray-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/75{--tw-gradient-from:rgb(var(--gray-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/80{--tw-gradient-from:rgb(var(--gray-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/90{--tw-gradient-from:rgb(var(--gray-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-2\/95{--tw-gradient-from:rgb(var(--gray-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/0{--tw-gradient-from:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/10{--tw-gradient-from:rgb(var(--gray-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/100{--tw-gradient-from:rgb(var(--gray-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/20{--tw-gradient-from:rgb(var(--gray-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/25{--tw-gradient-from:rgb(var(--gray-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/30{--tw-gradient-from:rgb(var(--gray-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/40{--tw-gradient-from:rgb(var(--gray-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/5{--tw-gradient-from:rgb(var(--gray-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/50{--tw-gradient-from:rgb(var(--gray-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/60{--tw-gradient-from:rgb(var(--gray-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/70{--tw-gradient-from:rgb(var(--gray-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/75{--tw-gradient-from:rgb(var(--gray-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/80{--tw-gradient-from:rgb(var(--gray-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/90{--tw-gradient-from:rgb(var(--gray-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-3\/95{--tw-gradient-from:rgb(var(--gray-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/0{--tw-gradient-from:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/10{--tw-gradient-from:rgb(var(--gray-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/100{--tw-gradient-from:rgb(var(--gray-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/20{--tw-gradient-from:rgb(var(--gray-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/25{--tw-gradient-from:rgb(var(--gray-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/30{--tw-gradient-from:rgb(var(--gray-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/40{--tw-gradient-from:rgb(var(--gray-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/5{--tw-gradient-from:rgb(var(--gray-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/50{--tw-gradient-from:rgb(var(--gray-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/60{--tw-gradient-from:rgb(var(--gray-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/70{--tw-gradient-from:rgb(var(--gray-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/75{--tw-gradient-from:rgb(var(--gray-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/80{--tw-gradient-from:rgb(var(--gray-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/90{--tw-gradient-from:rgb(var(--gray-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-4\/95{--tw-gradient-from:rgb(var(--gray-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/0{--tw-gradient-from:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/10{--tw-gradient-from:rgb(var(--gray-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/100{--tw-gradient-from:rgb(var(--gray-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/20{--tw-gradient-from:rgb(var(--gray-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/25{--tw-gradient-from:rgb(var(--gray-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/30{--tw-gradient-from:rgb(var(--gray-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/40{--tw-gradient-from:rgb(var(--gray-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/5{--tw-gradient-from:rgb(var(--gray-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/50{--tw-gradient-from:rgb(var(--gray-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/60{--tw-gradient-from:rgb(var(--gray-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/70{--tw-gradient-from:rgb(var(--gray-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/75{--tw-gradient-from:rgb(var(--gray-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/80{--tw-gradient-from:rgb(var(--gray-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/90{--tw-gradient-from:rgb(var(--gray-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-5\/95{--tw-gradient-from:rgb(var(--gray-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/0{--tw-gradient-from:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/10{--tw-gradient-from:rgb(var(--gray-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/100{--tw-gradient-from:rgb(var(--gray-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/20{--tw-gradient-from:rgb(var(--gray-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/25{--tw-gradient-from:rgb(var(--gray-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/30{--tw-gradient-from:rgb(var(--gray-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/40{--tw-gradient-from:rgb(var(--gray-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/5{--tw-gradient-from:rgb(var(--gray-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/50{--tw-gradient-from:rgb(var(--gray-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/60{--tw-gradient-from:rgb(var(--gray-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/70{--tw-gradient-from:rgb(var(--gray-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/75{--tw-gradient-from:rgb(var(--gray-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/80{--tw-gradient-from:rgb(var(--gray-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/90{--tw-gradient-from:rgb(var(--gray-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-6\/95{--tw-gradient-from:rgb(var(--gray-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/0{--tw-gradient-from:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/10{--tw-gradient-from:rgb(var(--gray-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/100{--tw-gradient-from:rgb(var(--gray-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/20{--tw-gradient-from:rgb(var(--gray-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/25{--tw-gradient-from:rgb(var(--gray-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/30{--tw-gradient-from:rgb(var(--gray-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/40{--tw-gradient-from:rgb(var(--gray-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/5{--tw-gradient-from:rgb(var(--gray-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/50{--tw-gradient-from:rgb(var(--gray-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/60{--tw-gradient-from:rgb(var(--gray-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/70{--tw-gradient-from:rgb(var(--gray-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/75{--tw-gradient-from:rgb(var(--gray-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/80{--tw-gradient-from:rgb(var(--gray-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/90{--tw-gradient-from:rgb(var(--gray-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-7\/95{--tw-gradient-from:rgb(var(--gray-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/0{--tw-gradient-from:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/10{--tw-gradient-from:rgb(var(--gray-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/100{--tw-gradient-from:rgb(var(--gray-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/20{--tw-gradient-from:rgb(var(--gray-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/25{--tw-gradient-from:rgb(var(--gray-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/30{--tw-gradient-from:rgb(var(--gray-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/40{--tw-gradient-from:rgb(var(--gray-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/5{--tw-gradient-from:rgb(var(--gray-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/50{--tw-gradient-from:rgb(var(--gray-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/60{--tw-gradient-from:rgb(var(--gray-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/70{--tw-gradient-from:rgb(var(--gray-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/75{--tw-gradient-from:rgb(var(--gray-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/80{--tw-gradient-from:rgb(var(--gray-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/90{--tw-gradient-from:rgb(var(--gray-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-8\/95{--tw-gradient-from:rgb(var(--gray-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/0{--tw-gradient-from:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/10{--tw-gradient-from:rgb(var(--gray-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/100{--tw-gradient-from:rgb(var(--gray-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/20{--tw-gradient-from:rgb(var(--gray-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/25{--tw-gradient-from:rgb(var(--gray-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/30{--tw-gradient-from:rgb(var(--gray-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/40{--tw-gradient-from:rgb(var(--gray-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/5{--tw-gradient-from:rgb(var(--gray-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/50{--tw-gradient-from:rgb(var(--gray-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/60{--tw-gradient-from:rgb(var(--gray-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/70{--tw-gradient-from:rgb(var(--gray-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/75{--tw-gradient-from:rgb(var(--gray-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/80{--tw-gradient-from:rgb(var(--gray-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/90{--tw-gradient-from:rgb(var(--gray-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-gray-9\/95{--tw-gradient-from:rgb(var(--gray-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/0{--tw-gradient-from:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/10{--tw-gradient-from:rgb(var(--green-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/100{--tw-gradient-from:rgb(var(--green-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/20{--tw-gradient-from:rgb(var(--green-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/25{--tw-gradient-from:rgb(var(--green-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/30{--tw-gradient-from:rgb(var(--green-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/40{--tw-gradient-from:rgb(var(--green-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/5{--tw-gradient-from:rgb(var(--green-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/50{--tw-gradient-from:rgb(var(--green-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/60{--tw-gradient-from:rgb(var(--green-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/70{--tw-gradient-from:rgb(var(--green-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/75{--tw-gradient-from:rgb(var(--green-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/80{--tw-gradient-from:rgb(var(--green-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/90{--tw-gradient-from:rgb(var(--green-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-1\/95{--tw-gradient-from:rgb(var(--green-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/0{--tw-gradient-from:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/10{--tw-gradient-from:rgb(var(--green-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/100{--tw-gradient-from:rgb(var(--green-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/20{--tw-gradient-from:rgb(var(--green-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/25{--tw-gradient-from:rgb(var(--green-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/30{--tw-gradient-from:rgb(var(--green-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/40{--tw-gradient-from:rgb(var(--green-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/5{--tw-gradient-from:rgb(var(--green-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/50{--tw-gradient-from:rgb(var(--green-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/60{--tw-gradient-from:rgb(var(--green-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/70{--tw-gradient-from:rgb(var(--green-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/75{--tw-gradient-from:rgb(var(--green-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/80{--tw-gradient-from:rgb(var(--green-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/90{--tw-gradient-from:rgb(var(--green-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-10\/95{--tw-gradient-from:rgb(var(--green-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/0{--tw-gradient-from:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/10{--tw-gradient-from:rgb(var(--green-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/100{--tw-gradient-from:rgb(var(--green-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/20{--tw-gradient-from:rgb(var(--green-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/25{--tw-gradient-from:rgb(var(--green-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/30{--tw-gradient-from:rgb(var(--green-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/40{--tw-gradient-from:rgb(var(--green-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/5{--tw-gradient-from:rgb(var(--green-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/50{--tw-gradient-from:rgb(var(--green-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/60{--tw-gradient-from:rgb(var(--green-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/70{--tw-gradient-from:rgb(var(--green-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/75{--tw-gradient-from:rgb(var(--green-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/80{--tw-gradient-from:rgb(var(--green-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/90{--tw-gradient-from:rgb(var(--green-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-2\/95{--tw-gradient-from:rgb(var(--green-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/0{--tw-gradient-from:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/10{--tw-gradient-from:rgb(var(--green-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/100{--tw-gradient-from:rgb(var(--green-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/20{--tw-gradient-from:rgb(var(--green-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/25{--tw-gradient-from:rgb(var(--green-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/30{--tw-gradient-from:rgb(var(--green-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/40{--tw-gradient-from:rgb(var(--green-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/5{--tw-gradient-from:rgb(var(--green-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/50{--tw-gradient-from:rgb(var(--green-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/60{--tw-gradient-from:rgb(var(--green-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/70{--tw-gradient-from:rgb(var(--green-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/75{--tw-gradient-from:rgb(var(--green-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/80{--tw-gradient-from:rgb(var(--green-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/90{--tw-gradient-from:rgb(var(--green-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-3\/95{--tw-gradient-from:rgb(var(--green-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/0{--tw-gradient-from:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/10{--tw-gradient-from:rgb(var(--green-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/100{--tw-gradient-from:rgb(var(--green-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/20{--tw-gradient-from:rgb(var(--green-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/25{--tw-gradient-from:rgb(var(--green-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/30{--tw-gradient-from:rgb(var(--green-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/40{--tw-gradient-from:rgb(var(--green-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/5{--tw-gradient-from:rgb(var(--green-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/50{--tw-gradient-from:rgb(var(--green-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/60{--tw-gradient-from:rgb(var(--green-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/70{--tw-gradient-from:rgb(var(--green-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/75{--tw-gradient-from:rgb(var(--green-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/80{--tw-gradient-from:rgb(var(--green-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/90{--tw-gradient-from:rgb(var(--green-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-4\/95{--tw-gradient-from:rgb(var(--green-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/0{--tw-gradient-from:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/10{--tw-gradient-from:rgb(var(--green-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/100{--tw-gradient-from:rgb(var(--green-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/20{--tw-gradient-from:rgb(var(--green-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/25{--tw-gradient-from:rgb(var(--green-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/30{--tw-gradient-from:rgb(var(--green-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/40{--tw-gradient-from:rgb(var(--green-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/5{--tw-gradient-from:rgb(var(--green-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/50{--tw-gradient-from:rgb(var(--green-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/60{--tw-gradient-from:rgb(var(--green-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/70{--tw-gradient-from:rgb(var(--green-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/75{--tw-gradient-from:rgb(var(--green-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/80{--tw-gradient-from:rgb(var(--green-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/90{--tw-gradient-from:rgb(var(--green-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-5\/95{--tw-gradient-from:rgb(var(--green-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/0{--tw-gradient-from:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/10{--tw-gradient-from:rgb(var(--green-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/100{--tw-gradient-from:rgb(var(--green-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/20{--tw-gradient-from:rgb(var(--green-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/25{--tw-gradient-from:rgb(var(--green-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/30{--tw-gradient-from:rgb(var(--green-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/40{--tw-gradient-from:rgb(var(--green-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/5{--tw-gradient-from:rgb(var(--green-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/50{--tw-gradient-from:rgb(var(--green-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/60{--tw-gradient-from:rgb(var(--green-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/70{--tw-gradient-from:rgb(var(--green-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/75{--tw-gradient-from:rgb(var(--green-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/80{--tw-gradient-from:rgb(var(--green-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/90{--tw-gradient-from:rgb(var(--green-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-6\/95{--tw-gradient-from:rgb(var(--green-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/0{--tw-gradient-from:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/10{--tw-gradient-from:rgb(var(--green-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/100{--tw-gradient-from:rgb(var(--green-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/20{--tw-gradient-from:rgb(var(--green-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/25{--tw-gradient-from:rgb(var(--green-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/30{--tw-gradient-from:rgb(var(--green-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/40{--tw-gradient-from:rgb(var(--green-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/5{--tw-gradient-from:rgb(var(--green-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/50{--tw-gradient-from:rgb(var(--green-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/60{--tw-gradient-from:rgb(var(--green-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/70{--tw-gradient-from:rgb(var(--green-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/75{--tw-gradient-from:rgb(var(--green-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/80{--tw-gradient-from:rgb(var(--green-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/90{--tw-gradient-from:rgb(var(--green-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-7\/95{--tw-gradient-from:rgb(var(--green-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/0{--tw-gradient-from:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/10{--tw-gradient-from:rgb(var(--green-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/100{--tw-gradient-from:rgb(var(--green-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/20{--tw-gradient-from:rgb(var(--green-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/25{--tw-gradient-from:rgb(var(--green-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/30{--tw-gradient-from:rgb(var(--green-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/40{--tw-gradient-from:rgb(var(--green-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/5{--tw-gradient-from:rgb(var(--green-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/50{--tw-gradient-from:rgb(var(--green-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/60{--tw-gradient-from:rgb(var(--green-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/70{--tw-gradient-from:rgb(var(--green-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/75{--tw-gradient-from:rgb(var(--green-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/80{--tw-gradient-from:rgb(var(--green-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/90{--tw-gradient-from:rgb(var(--green-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-8\/95{--tw-gradient-from:rgb(var(--green-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/0{--tw-gradient-from:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/10{--tw-gradient-from:rgb(var(--green-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/100{--tw-gradient-from:rgb(var(--green-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/20{--tw-gradient-from:rgb(var(--green-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/25{--tw-gradient-from:rgb(var(--green-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/30{--tw-gradient-from:rgb(var(--green-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/40{--tw-gradient-from:rgb(var(--green-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/5{--tw-gradient-from:rgb(var(--green-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/50{--tw-gradient-from:rgb(var(--green-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/60{--tw-gradient-from:rgb(var(--green-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/70{--tw-gradient-from:rgb(var(--green-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/75{--tw-gradient-from:rgb(var(--green-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/80{--tw-gradient-from:rgb(var(--green-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/90{--tw-gradient-from:rgb(var(--green-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-9\/95{--tw-gradient-from:rgb(var(--green-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/0{--tw-gradient-from:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/10{--tw-gradient-from:rgb(var(--pink-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/100{--tw-gradient-from:rgb(var(--pink-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/20{--tw-gradient-from:rgb(var(--pink-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/25{--tw-gradient-from:rgb(var(--pink-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/30{--tw-gradient-from:rgb(var(--pink-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/40{--tw-gradient-from:rgb(var(--pink-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/5{--tw-gradient-from:rgb(var(--pink-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/50{--tw-gradient-from:rgb(var(--pink-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/60{--tw-gradient-from:rgb(var(--pink-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/70{--tw-gradient-from:rgb(var(--pink-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/75{--tw-gradient-from:rgb(var(--pink-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/80{--tw-gradient-from:rgb(var(--pink-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/90{--tw-gradient-from:rgb(var(--pink-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-1\/95{--tw-gradient-from:rgb(var(--pink-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/0{--tw-gradient-from:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/10{--tw-gradient-from:rgb(var(--pink-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/100{--tw-gradient-from:rgb(var(--pink-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/20{--tw-gradient-from:rgb(var(--pink-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/25{--tw-gradient-from:rgb(var(--pink-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/30{--tw-gradient-from:rgb(var(--pink-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/40{--tw-gradient-from:rgb(var(--pink-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/5{--tw-gradient-from:rgb(var(--pink-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/50{--tw-gradient-from:rgb(var(--pink-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/60{--tw-gradient-from:rgb(var(--pink-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/70{--tw-gradient-from:rgb(var(--pink-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/75{--tw-gradient-from:rgb(var(--pink-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/80{--tw-gradient-from:rgb(var(--pink-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/90{--tw-gradient-from:rgb(var(--pink-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-10\/95{--tw-gradient-from:rgb(var(--pink-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/0{--tw-gradient-from:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/10{--tw-gradient-from:rgb(var(--pink-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/100{--tw-gradient-from:rgb(var(--pink-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/20{--tw-gradient-from:rgb(var(--pink-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/25{--tw-gradient-from:rgb(var(--pink-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/30{--tw-gradient-from:rgb(var(--pink-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/40{--tw-gradient-from:rgb(var(--pink-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/5{--tw-gradient-from:rgb(var(--pink-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/50{--tw-gradient-from:rgb(var(--pink-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/60{--tw-gradient-from:rgb(var(--pink-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/70{--tw-gradient-from:rgb(var(--pink-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/75{--tw-gradient-from:rgb(var(--pink-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/80{--tw-gradient-from:rgb(var(--pink-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/90{--tw-gradient-from:rgb(var(--pink-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-2\/95{--tw-gradient-from:rgb(var(--pink-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/0{--tw-gradient-from:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/10{--tw-gradient-from:rgb(var(--pink-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/100{--tw-gradient-from:rgb(var(--pink-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/20{--tw-gradient-from:rgb(var(--pink-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/25{--tw-gradient-from:rgb(var(--pink-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/30{--tw-gradient-from:rgb(var(--pink-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/40{--tw-gradient-from:rgb(var(--pink-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/5{--tw-gradient-from:rgb(var(--pink-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/50{--tw-gradient-from:rgb(var(--pink-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/60{--tw-gradient-from:rgb(var(--pink-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/70{--tw-gradient-from:rgb(var(--pink-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/75{--tw-gradient-from:rgb(var(--pink-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/80{--tw-gradient-from:rgb(var(--pink-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/90{--tw-gradient-from:rgb(var(--pink-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-3\/95{--tw-gradient-from:rgb(var(--pink-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/0{--tw-gradient-from:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/10{--tw-gradient-from:rgb(var(--pink-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/100{--tw-gradient-from:rgb(var(--pink-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/20{--tw-gradient-from:rgb(var(--pink-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/25{--tw-gradient-from:rgb(var(--pink-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/30{--tw-gradient-from:rgb(var(--pink-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/40{--tw-gradient-from:rgb(var(--pink-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/5{--tw-gradient-from:rgb(var(--pink-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/50{--tw-gradient-from:rgb(var(--pink-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/60{--tw-gradient-from:rgb(var(--pink-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/70{--tw-gradient-from:rgb(var(--pink-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/75{--tw-gradient-from:rgb(var(--pink-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/80{--tw-gradient-from:rgb(var(--pink-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/90{--tw-gradient-from:rgb(var(--pink-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-4\/95{--tw-gradient-from:rgb(var(--pink-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/0{--tw-gradient-from:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/10{--tw-gradient-from:rgb(var(--pink-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/100{--tw-gradient-from:rgb(var(--pink-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/20{--tw-gradient-from:rgb(var(--pink-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/25{--tw-gradient-from:rgb(var(--pink-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/30{--tw-gradient-from:rgb(var(--pink-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/40{--tw-gradient-from:rgb(var(--pink-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/5{--tw-gradient-from:rgb(var(--pink-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/50{--tw-gradient-from:rgb(var(--pink-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/60{--tw-gradient-from:rgb(var(--pink-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/70{--tw-gradient-from:rgb(var(--pink-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/75{--tw-gradient-from:rgb(var(--pink-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/80{--tw-gradient-from:rgb(var(--pink-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/90{--tw-gradient-from:rgb(var(--pink-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-5\/95{--tw-gradient-from:rgb(var(--pink-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/0{--tw-gradient-from:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/10{--tw-gradient-from:rgb(var(--pink-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/100{--tw-gradient-from:rgb(var(--pink-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/20{--tw-gradient-from:rgb(var(--pink-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/25{--tw-gradient-from:rgb(var(--pink-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/30{--tw-gradient-from:rgb(var(--pink-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/40{--tw-gradient-from:rgb(var(--pink-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/5{--tw-gradient-from:rgb(var(--pink-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/50{--tw-gradient-from:rgb(var(--pink-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/60{--tw-gradient-from:rgb(var(--pink-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/70{--tw-gradient-from:rgb(var(--pink-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/75{--tw-gradient-from:rgb(var(--pink-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/80{--tw-gradient-from:rgb(var(--pink-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/90{--tw-gradient-from:rgb(var(--pink-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-6\/95{--tw-gradient-from:rgb(var(--pink-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/0{--tw-gradient-from:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/10{--tw-gradient-from:rgb(var(--pink-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/100{--tw-gradient-from:rgb(var(--pink-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/20{--tw-gradient-from:rgb(var(--pink-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/25{--tw-gradient-from:rgb(var(--pink-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/30{--tw-gradient-from:rgb(var(--pink-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/40{--tw-gradient-from:rgb(var(--pink-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/5{--tw-gradient-from:rgb(var(--pink-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/50{--tw-gradient-from:rgb(var(--pink-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/60{--tw-gradient-from:rgb(var(--pink-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/70{--tw-gradient-from:rgb(var(--pink-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/75{--tw-gradient-from:rgb(var(--pink-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/80{--tw-gradient-from:rgb(var(--pink-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/90{--tw-gradient-from:rgb(var(--pink-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-7\/95{--tw-gradient-from:rgb(var(--pink-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/0{--tw-gradient-from:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/10{--tw-gradient-from:rgb(var(--pink-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/100{--tw-gradient-from:rgb(var(--pink-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/20{--tw-gradient-from:rgb(var(--pink-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/25{--tw-gradient-from:rgb(var(--pink-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/30{--tw-gradient-from:rgb(var(--pink-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/40{--tw-gradient-from:rgb(var(--pink-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/5{--tw-gradient-from:rgb(var(--pink-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/50{--tw-gradient-from:rgb(var(--pink-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/60{--tw-gradient-from:rgb(var(--pink-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/70{--tw-gradient-from:rgb(var(--pink-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/75{--tw-gradient-from:rgb(var(--pink-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/80{--tw-gradient-from:rgb(var(--pink-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/90{--tw-gradient-from:rgb(var(--pink-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-8\/95{--tw-gradient-from:rgb(var(--pink-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/0{--tw-gradient-from:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/10{--tw-gradient-from:rgb(var(--pink-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/100{--tw-gradient-from:rgb(var(--pink-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/20{--tw-gradient-from:rgb(var(--pink-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/25{--tw-gradient-from:rgb(var(--pink-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/30{--tw-gradient-from:rgb(var(--pink-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/40{--tw-gradient-from:rgb(var(--pink-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/5{--tw-gradient-from:rgb(var(--pink-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/50{--tw-gradient-from:rgb(var(--pink-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/60{--tw-gradient-from:rgb(var(--pink-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/70{--tw-gradient-from:rgb(var(--pink-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/75{--tw-gradient-from:rgb(var(--pink-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/80{--tw-gradient-from:rgb(var(--pink-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/90{--tw-gradient-from:rgb(var(--pink-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-pink-9\/95{--tw-gradient-from:rgb(var(--pink-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary{--tw-gradient-from:rgb(var(--primary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/0{--tw-gradient-from:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/10{--tw-gradient-from:rgb(var(--primary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/100{--tw-gradient-from:rgb(var(--primary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/20{--tw-gradient-from:rgb(var(--primary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/25{--tw-gradient-from:rgb(var(--primary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/30{--tw-gradient-from:rgb(var(--primary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/40{--tw-gradient-from:rgb(var(--primary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/5{--tw-gradient-from:rgb(var(--primary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/50{--tw-gradient-from:rgb(var(--primary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/60{--tw-gradient-from:rgb(var(--primary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/70{--tw-gradient-from:rgb(var(--primary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/75{--tw-gradient-from:rgb(var(--primary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/80{--tw-gradient-from:rgb(var(--primary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/90{--tw-gradient-from:rgb(var(--primary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/95{--tw-gradient-from:rgb(var(--primary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/0{--tw-gradient-from:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/10{--tw-gradient-from:rgb(var(--purple-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/100{--tw-gradient-from:rgb(var(--purple-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/20{--tw-gradient-from:rgb(var(--purple-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/25{--tw-gradient-from:rgb(var(--purple-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/30{--tw-gradient-from:rgb(var(--purple-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/40{--tw-gradient-from:rgb(var(--purple-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/5{--tw-gradient-from:rgb(var(--purple-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/50{--tw-gradient-from:rgb(var(--purple-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/60{--tw-gradient-from:rgb(var(--purple-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/70{--tw-gradient-from:rgb(var(--purple-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/75{--tw-gradient-from:rgb(var(--purple-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/80{--tw-gradient-from:rgb(var(--purple-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/90{--tw-gradient-from:rgb(var(--purple-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-1\/95{--tw-gradient-from:rgb(var(--purple-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/0{--tw-gradient-from:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/10{--tw-gradient-from:rgb(var(--purple-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/100{--tw-gradient-from:rgb(var(--purple-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/20{--tw-gradient-from:rgb(var(--purple-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/25{--tw-gradient-from:rgb(var(--purple-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/30{--tw-gradient-from:rgb(var(--purple-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/40{--tw-gradient-from:rgb(var(--purple-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/5{--tw-gradient-from:rgb(var(--purple-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/50{--tw-gradient-from:rgb(var(--purple-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/60{--tw-gradient-from:rgb(var(--purple-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/70{--tw-gradient-from:rgb(var(--purple-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/75{--tw-gradient-from:rgb(var(--purple-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/80{--tw-gradient-from:rgb(var(--purple-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/90{--tw-gradient-from:rgb(var(--purple-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-10\/95{--tw-gradient-from:rgb(var(--purple-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/0{--tw-gradient-from:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/10{--tw-gradient-from:rgb(var(--purple-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/100{--tw-gradient-from:rgb(var(--purple-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/20{--tw-gradient-from:rgb(var(--purple-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/25{--tw-gradient-from:rgb(var(--purple-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/30{--tw-gradient-from:rgb(var(--purple-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/40{--tw-gradient-from:rgb(var(--purple-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/5{--tw-gradient-from:rgb(var(--purple-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/50{--tw-gradient-from:rgb(var(--purple-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/60{--tw-gradient-from:rgb(var(--purple-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/70{--tw-gradient-from:rgb(var(--purple-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/75{--tw-gradient-from:rgb(var(--purple-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/80{--tw-gradient-from:rgb(var(--purple-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/90{--tw-gradient-from:rgb(var(--purple-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-2\/95{--tw-gradient-from:rgb(var(--purple-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/0{--tw-gradient-from:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/10{--tw-gradient-from:rgb(var(--purple-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/100{--tw-gradient-from:rgb(var(--purple-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/20{--tw-gradient-from:rgb(var(--purple-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/25{--tw-gradient-from:rgb(var(--purple-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/30{--tw-gradient-from:rgb(var(--purple-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/40{--tw-gradient-from:rgb(var(--purple-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/5{--tw-gradient-from:rgb(var(--purple-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/50{--tw-gradient-from:rgb(var(--purple-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/60{--tw-gradient-from:rgb(var(--purple-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/70{--tw-gradient-from:rgb(var(--purple-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/75{--tw-gradient-from:rgb(var(--purple-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/80{--tw-gradient-from:rgb(var(--purple-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/90{--tw-gradient-from:rgb(var(--purple-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-3\/95{--tw-gradient-from:rgb(var(--purple-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/0{--tw-gradient-from:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/10{--tw-gradient-from:rgb(var(--purple-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/100{--tw-gradient-from:rgb(var(--purple-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/20{--tw-gradient-from:rgb(var(--purple-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/25{--tw-gradient-from:rgb(var(--purple-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/30{--tw-gradient-from:rgb(var(--purple-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/40{--tw-gradient-from:rgb(var(--purple-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/5{--tw-gradient-from:rgb(var(--purple-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/50{--tw-gradient-from:rgb(var(--purple-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/60{--tw-gradient-from:rgb(var(--purple-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/70{--tw-gradient-from:rgb(var(--purple-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/75{--tw-gradient-from:rgb(var(--purple-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/80{--tw-gradient-from:rgb(var(--purple-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/90{--tw-gradient-from:rgb(var(--purple-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-4\/95{--tw-gradient-from:rgb(var(--purple-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/0{--tw-gradient-from:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/10{--tw-gradient-from:rgb(var(--purple-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/100{--tw-gradient-from:rgb(var(--purple-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/20{--tw-gradient-from:rgb(var(--purple-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/25{--tw-gradient-from:rgb(var(--purple-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/30{--tw-gradient-from:rgb(var(--purple-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/40{--tw-gradient-from:rgb(var(--purple-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/5{--tw-gradient-from:rgb(var(--purple-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/50{--tw-gradient-from:rgb(var(--purple-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/60{--tw-gradient-from:rgb(var(--purple-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/70{--tw-gradient-from:rgb(var(--purple-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/75{--tw-gradient-from:rgb(var(--purple-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/80{--tw-gradient-from:rgb(var(--purple-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/90{--tw-gradient-from:rgb(var(--purple-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-5\/95{--tw-gradient-from:rgb(var(--purple-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/0{--tw-gradient-from:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/10{--tw-gradient-from:rgb(var(--purple-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/100{--tw-gradient-from:rgb(var(--purple-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/20{--tw-gradient-from:rgb(var(--purple-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/25{--tw-gradient-from:rgb(var(--purple-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/30{--tw-gradient-from:rgb(var(--purple-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/40{--tw-gradient-from:rgb(var(--purple-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/5{--tw-gradient-from:rgb(var(--purple-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/50{--tw-gradient-from:rgb(var(--purple-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/60{--tw-gradient-from:rgb(var(--purple-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/70{--tw-gradient-from:rgb(var(--purple-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/75{--tw-gradient-from:rgb(var(--purple-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/80{--tw-gradient-from:rgb(var(--purple-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/90{--tw-gradient-from:rgb(var(--purple-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-6\/95{--tw-gradient-from:rgb(var(--purple-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/0{--tw-gradient-from:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/10{--tw-gradient-from:rgb(var(--purple-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/100{--tw-gradient-from:rgb(var(--purple-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/20{--tw-gradient-from:rgb(var(--purple-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/25{--tw-gradient-from:rgb(var(--purple-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/30{--tw-gradient-from:rgb(var(--purple-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/40{--tw-gradient-from:rgb(var(--purple-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/5{--tw-gradient-from:rgb(var(--purple-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/50{--tw-gradient-from:rgb(var(--purple-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/60{--tw-gradient-from:rgb(var(--purple-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/70{--tw-gradient-from:rgb(var(--purple-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/75{--tw-gradient-from:rgb(var(--purple-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/80{--tw-gradient-from:rgb(var(--purple-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/90{--tw-gradient-from:rgb(var(--purple-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-7\/95{--tw-gradient-from:rgb(var(--purple-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/0{--tw-gradient-from:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/10{--tw-gradient-from:rgb(var(--purple-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/100{--tw-gradient-from:rgb(var(--purple-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/20{--tw-gradient-from:rgb(var(--purple-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/25{--tw-gradient-from:rgb(var(--purple-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/30{--tw-gradient-from:rgb(var(--purple-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/40{--tw-gradient-from:rgb(var(--purple-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/5{--tw-gradient-from:rgb(var(--purple-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/50{--tw-gradient-from:rgb(var(--purple-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/60{--tw-gradient-from:rgb(var(--purple-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/70{--tw-gradient-from:rgb(var(--purple-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/75{--tw-gradient-from:rgb(var(--purple-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/80{--tw-gradient-from:rgb(var(--purple-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/90{--tw-gradient-from:rgb(var(--purple-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-8\/95{--tw-gradient-from:rgb(var(--purple-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/0{--tw-gradient-from:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/10{--tw-gradient-from:rgb(var(--purple-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/100{--tw-gradient-from:rgb(var(--purple-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/20{--tw-gradient-from:rgb(var(--purple-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/25{--tw-gradient-from:rgb(var(--purple-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/30{--tw-gradient-from:rgb(var(--purple-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/40{--tw-gradient-from:rgb(var(--purple-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/5{--tw-gradient-from:rgb(var(--purple-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/50{--tw-gradient-from:rgb(var(--purple-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/60{--tw-gradient-from:rgb(var(--purple-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/70{--tw-gradient-from:rgb(var(--purple-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/75{--tw-gradient-from:rgb(var(--purple-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/80{--tw-gradient-from:rgb(var(--purple-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/90{--tw-gradient-from:rgb(var(--purple-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-purple-9\/95{--tw-gradient-from:rgb(var(--purple-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/0{--tw-gradient-from:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/10{--tw-gradient-from:rgb(var(--red-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/100{--tw-gradient-from:rgb(var(--red-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/20{--tw-gradient-from:rgb(var(--red-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/25{--tw-gradient-from:rgb(var(--red-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/30{--tw-gradient-from:rgb(var(--red-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/40{--tw-gradient-from:rgb(var(--red-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/5{--tw-gradient-from:rgb(var(--red-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/50{--tw-gradient-from:rgb(var(--red-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/60{--tw-gradient-from:rgb(var(--red-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/70{--tw-gradient-from:rgb(var(--red-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/75{--tw-gradient-from:rgb(var(--red-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/80{--tw-gradient-from:rgb(var(--red-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/90{--tw-gradient-from:rgb(var(--red-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-1\/95{--tw-gradient-from:rgb(var(--red-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/0{--tw-gradient-from:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/10{--tw-gradient-from:rgb(var(--red-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/100{--tw-gradient-from:rgb(var(--red-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/20{--tw-gradient-from:rgb(var(--red-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/25{--tw-gradient-from:rgb(var(--red-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/30{--tw-gradient-from:rgb(var(--red-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/40{--tw-gradient-from:rgb(var(--red-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/5{--tw-gradient-from:rgb(var(--red-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/50{--tw-gradient-from:rgb(var(--red-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/60{--tw-gradient-from:rgb(var(--red-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/70{--tw-gradient-from:rgb(var(--red-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/75{--tw-gradient-from:rgb(var(--red-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/80{--tw-gradient-from:rgb(var(--red-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/90{--tw-gradient-from:rgb(var(--red-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-10\/95{--tw-gradient-from:rgb(var(--red-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/0{--tw-gradient-from:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/10{--tw-gradient-from:rgb(var(--red-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/100{--tw-gradient-from:rgb(var(--red-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/20{--tw-gradient-from:rgb(var(--red-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/25{--tw-gradient-from:rgb(var(--red-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/30{--tw-gradient-from:rgb(var(--red-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/40{--tw-gradient-from:rgb(var(--red-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/5{--tw-gradient-from:rgb(var(--red-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/50{--tw-gradient-from:rgb(var(--red-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/60{--tw-gradient-from:rgb(var(--red-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/70{--tw-gradient-from:rgb(var(--red-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/75{--tw-gradient-from:rgb(var(--red-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/80{--tw-gradient-from:rgb(var(--red-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/90{--tw-gradient-from:rgb(var(--red-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-2\/95{--tw-gradient-from:rgb(var(--red-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/0{--tw-gradient-from:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/10{--tw-gradient-from:rgb(var(--red-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/100{--tw-gradient-from:rgb(var(--red-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/20{--tw-gradient-from:rgb(var(--red-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/25{--tw-gradient-from:rgb(var(--red-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/30{--tw-gradient-from:rgb(var(--red-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/40{--tw-gradient-from:rgb(var(--red-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/5{--tw-gradient-from:rgb(var(--red-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/50{--tw-gradient-from:rgb(var(--red-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/60{--tw-gradient-from:rgb(var(--red-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/70{--tw-gradient-from:rgb(var(--red-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/75{--tw-gradient-from:rgb(var(--red-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/80{--tw-gradient-from:rgb(var(--red-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/90{--tw-gradient-from:rgb(var(--red-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-3\/95{--tw-gradient-from:rgb(var(--red-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/0{--tw-gradient-from:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/10{--tw-gradient-from:rgb(var(--red-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/100{--tw-gradient-from:rgb(var(--red-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/20{--tw-gradient-from:rgb(var(--red-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/25{--tw-gradient-from:rgb(var(--red-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/30{--tw-gradient-from:rgb(var(--red-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/40{--tw-gradient-from:rgb(var(--red-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/5{--tw-gradient-from:rgb(var(--red-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/50{--tw-gradient-from:rgb(var(--red-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/60{--tw-gradient-from:rgb(var(--red-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/70{--tw-gradient-from:rgb(var(--red-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/75{--tw-gradient-from:rgb(var(--red-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/80{--tw-gradient-from:rgb(var(--red-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/90{--tw-gradient-from:rgb(var(--red-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-4\/95{--tw-gradient-from:rgb(var(--red-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/0{--tw-gradient-from:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/10{--tw-gradient-from:rgb(var(--red-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/100{--tw-gradient-from:rgb(var(--red-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/20{--tw-gradient-from:rgb(var(--red-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/25{--tw-gradient-from:rgb(var(--red-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/30{--tw-gradient-from:rgb(var(--red-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/40{--tw-gradient-from:rgb(var(--red-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/5{--tw-gradient-from:rgb(var(--red-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/50{--tw-gradient-from:rgb(var(--red-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/60{--tw-gradient-from:rgb(var(--red-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/70{--tw-gradient-from:rgb(var(--red-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/75{--tw-gradient-from:rgb(var(--red-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/80{--tw-gradient-from:rgb(var(--red-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/90{--tw-gradient-from:rgb(var(--red-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-5\/95{--tw-gradient-from:rgb(var(--red-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/0{--tw-gradient-from:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/10{--tw-gradient-from:rgb(var(--red-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/100{--tw-gradient-from:rgb(var(--red-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/20{--tw-gradient-from:rgb(var(--red-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/25{--tw-gradient-from:rgb(var(--red-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/30{--tw-gradient-from:rgb(var(--red-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/40{--tw-gradient-from:rgb(var(--red-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/5{--tw-gradient-from:rgb(var(--red-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/50{--tw-gradient-from:rgb(var(--red-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/60{--tw-gradient-from:rgb(var(--red-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/70{--tw-gradient-from:rgb(var(--red-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/75{--tw-gradient-from:rgb(var(--red-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/80{--tw-gradient-from:rgb(var(--red-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/90{--tw-gradient-from:rgb(var(--red-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-6\/95{--tw-gradient-from:rgb(var(--red-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/0{--tw-gradient-from:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/10{--tw-gradient-from:rgb(var(--red-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/100{--tw-gradient-from:rgb(var(--red-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/20{--tw-gradient-from:rgb(var(--red-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/25{--tw-gradient-from:rgb(var(--red-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/30{--tw-gradient-from:rgb(var(--red-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/40{--tw-gradient-from:rgb(var(--red-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/5{--tw-gradient-from:rgb(var(--red-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/50{--tw-gradient-from:rgb(var(--red-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/60{--tw-gradient-from:rgb(var(--red-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/70{--tw-gradient-from:rgb(var(--red-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/75{--tw-gradient-from:rgb(var(--red-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/80{--tw-gradient-from:rgb(var(--red-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/90{--tw-gradient-from:rgb(var(--red-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-7\/95{--tw-gradient-from:rgb(var(--red-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/0{--tw-gradient-from:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/10{--tw-gradient-from:rgb(var(--red-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/100{--tw-gradient-from:rgb(var(--red-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/20{--tw-gradient-from:rgb(var(--red-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/25{--tw-gradient-from:rgb(var(--red-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/30{--tw-gradient-from:rgb(var(--red-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/40{--tw-gradient-from:rgb(var(--red-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/5{--tw-gradient-from:rgb(var(--red-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/50{--tw-gradient-from:rgb(var(--red-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/60{--tw-gradient-from:rgb(var(--red-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/70{--tw-gradient-from:rgb(var(--red-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/75{--tw-gradient-from:rgb(var(--red-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/80{--tw-gradient-from:rgb(var(--red-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/90{--tw-gradient-from:rgb(var(--red-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-8\/95{--tw-gradient-from:rgb(var(--red-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/0{--tw-gradient-from:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/10{--tw-gradient-from:rgb(var(--red-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/100{--tw-gradient-from:rgb(var(--red-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/20{--tw-gradient-from:rgb(var(--red-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/25{--tw-gradient-from:rgb(var(--red-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/30{--tw-gradient-from:rgb(var(--red-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/40{--tw-gradient-from:rgb(var(--red-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/5{--tw-gradient-from:rgb(var(--red-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/50{--tw-gradient-from:rgb(var(--red-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/60{--tw-gradient-from:rgb(var(--red-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/70{--tw-gradient-from:rgb(var(--red-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/75{--tw-gradient-from:rgb(var(--red-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/80{--tw-gradient-from:rgb(var(--red-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/90{--tw-gradient-from:rgb(var(--red-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-red-9\/95{--tw-gradient-from:rgb(var(--red-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary{--tw-gradient-from:rgb(var(--secondary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/0{--tw-gradient-from:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/10{--tw-gradient-from:rgb(var(--secondary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/100{--tw-gradient-from:rgb(var(--secondary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/20{--tw-gradient-from:rgb(var(--secondary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/25{--tw-gradient-from:rgb(var(--secondary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/30{--tw-gradient-from:rgb(var(--secondary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/40{--tw-gradient-from:rgb(var(--secondary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/5{--tw-gradient-from:rgb(var(--secondary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/50{--tw-gradient-from:rgb(var(--secondary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/60{--tw-gradient-from:rgb(var(--secondary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/70{--tw-gradient-from:rgb(var(--secondary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/75{--tw-gradient-from:rgb(var(--secondary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/80{--tw-gradient-from:rgb(var(--secondary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/90{--tw-gradient-from:rgb(var(--secondary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/95{--tw-gradient-from:rgb(var(--secondary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/0{--tw-gradient-from:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/10{--tw-gradient-from:rgb(var(--slate-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/100{--tw-gradient-from:rgb(var(--slate-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/20{--tw-gradient-from:rgb(var(--slate-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/25{--tw-gradient-from:rgb(var(--slate-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/30{--tw-gradient-from:rgb(var(--slate-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/40{--tw-gradient-from:rgb(var(--slate-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/5{--tw-gradient-from:rgb(var(--slate-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/50{--tw-gradient-from:rgb(var(--slate-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/60{--tw-gradient-from:rgb(var(--slate-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/70{--tw-gradient-from:rgb(var(--slate-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/75{--tw-gradient-from:rgb(var(--slate-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/80{--tw-gradient-from:rgb(var(--slate-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/90{--tw-gradient-from:rgb(var(--slate-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-1\/95{--tw-gradient-from:rgb(var(--slate-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/0{--tw-gradient-from:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/10{--tw-gradient-from:rgb(var(--slate-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/100{--tw-gradient-from:rgb(var(--slate-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/20{--tw-gradient-from:rgb(var(--slate-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/25{--tw-gradient-from:rgb(var(--slate-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/30{--tw-gradient-from:rgb(var(--slate-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/40{--tw-gradient-from:rgb(var(--slate-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/5{--tw-gradient-from:rgb(var(--slate-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/50{--tw-gradient-from:rgb(var(--slate-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/60{--tw-gradient-from:rgb(var(--slate-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/70{--tw-gradient-from:rgb(var(--slate-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/75{--tw-gradient-from:rgb(var(--slate-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/80{--tw-gradient-from:rgb(var(--slate-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/90{--tw-gradient-from:rgb(var(--slate-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-10\/95{--tw-gradient-from:rgb(var(--slate-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/0{--tw-gradient-from:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/10{--tw-gradient-from:rgb(var(--slate-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/100{--tw-gradient-from:rgb(var(--slate-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/20{--tw-gradient-from:rgb(var(--slate-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/25{--tw-gradient-from:rgb(var(--slate-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/30{--tw-gradient-from:rgb(var(--slate-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/40{--tw-gradient-from:rgb(var(--slate-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/5{--tw-gradient-from:rgb(var(--slate-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/50{--tw-gradient-from:rgb(var(--slate-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/60{--tw-gradient-from:rgb(var(--slate-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/70{--tw-gradient-from:rgb(var(--slate-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/75{--tw-gradient-from:rgb(var(--slate-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/80{--tw-gradient-from:rgb(var(--slate-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/90{--tw-gradient-from:rgb(var(--slate-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-2\/95{--tw-gradient-from:rgb(var(--slate-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/0{--tw-gradient-from:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/10{--tw-gradient-from:rgb(var(--slate-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/100{--tw-gradient-from:rgb(var(--slate-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/20{--tw-gradient-from:rgb(var(--slate-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/25{--tw-gradient-from:rgb(var(--slate-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/30{--tw-gradient-from:rgb(var(--slate-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/40{--tw-gradient-from:rgb(var(--slate-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/5{--tw-gradient-from:rgb(var(--slate-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/50{--tw-gradient-from:rgb(var(--slate-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/60{--tw-gradient-from:rgb(var(--slate-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/70{--tw-gradient-from:rgb(var(--slate-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/75{--tw-gradient-from:rgb(var(--slate-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/80{--tw-gradient-from:rgb(var(--slate-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/90{--tw-gradient-from:rgb(var(--slate-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-3\/95{--tw-gradient-from:rgb(var(--slate-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/0{--tw-gradient-from:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/10{--tw-gradient-from:rgb(var(--slate-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/100{--tw-gradient-from:rgb(var(--slate-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/20{--tw-gradient-from:rgb(var(--slate-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/25{--tw-gradient-from:rgb(var(--slate-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/30{--tw-gradient-from:rgb(var(--slate-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/40{--tw-gradient-from:rgb(var(--slate-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/5{--tw-gradient-from:rgb(var(--slate-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/50{--tw-gradient-from:rgb(var(--slate-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/60{--tw-gradient-from:rgb(var(--slate-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/70{--tw-gradient-from:rgb(var(--slate-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/75{--tw-gradient-from:rgb(var(--slate-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/80{--tw-gradient-from:rgb(var(--slate-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/90{--tw-gradient-from:rgb(var(--slate-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-4\/95{--tw-gradient-from:rgb(var(--slate-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/0{--tw-gradient-from:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/10{--tw-gradient-from:rgb(var(--slate-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/100{--tw-gradient-from:rgb(var(--slate-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/20{--tw-gradient-from:rgb(var(--slate-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/25{--tw-gradient-from:rgb(var(--slate-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/30{--tw-gradient-from:rgb(var(--slate-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/40{--tw-gradient-from:rgb(var(--slate-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/5{--tw-gradient-from:rgb(var(--slate-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/50{--tw-gradient-from:rgb(var(--slate-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/60{--tw-gradient-from:rgb(var(--slate-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/70{--tw-gradient-from:rgb(var(--slate-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/75{--tw-gradient-from:rgb(var(--slate-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/80{--tw-gradient-from:rgb(var(--slate-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/90{--tw-gradient-from:rgb(var(--slate-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-5\/95{--tw-gradient-from:rgb(var(--slate-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/0{--tw-gradient-from:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/10{--tw-gradient-from:rgb(var(--slate-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/100{--tw-gradient-from:rgb(var(--slate-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/20{--tw-gradient-from:rgb(var(--slate-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/25{--tw-gradient-from:rgb(var(--slate-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/30{--tw-gradient-from:rgb(var(--slate-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/40{--tw-gradient-from:rgb(var(--slate-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/5{--tw-gradient-from:rgb(var(--slate-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/50{--tw-gradient-from:rgb(var(--slate-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/60{--tw-gradient-from:rgb(var(--slate-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/70{--tw-gradient-from:rgb(var(--slate-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/75{--tw-gradient-from:rgb(var(--slate-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/80{--tw-gradient-from:rgb(var(--slate-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/90{--tw-gradient-from:rgb(var(--slate-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-6\/95{--tw-gradient-from:rgb(var(--slate-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/0{--tw-gradient-from:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/10{--tw-gradient-from:rgb(var(--slate-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/100{--tw-gradient-from:rgb(var(--slate-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/20{--tw-gradient-from:rgb(var(--slate-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/25{--tw-gradient-from:rgb(var(--slate-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/30{--tw-gradient-from:rgb(var(--slate-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/40{--tw-gradient-from:rgb(var(--slate-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/5{--tw-gradient-from:rgb(var(--slate-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/50{--tw-gradient-from:rgb(var(--slate-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/60{--tw-gradient-from:rgb(var(--slate-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/70{--tw-gradient-from:rgb(var(--slate-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/75{--tw-gradient-from:rgb(var(--slate-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/80{--tw-gradient-from:rgb(var(--slate-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/90{--tw-gradient-from:rgb(var(--slate-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-7\/95{--tw-gradient-from:rgb(var(--slate-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/0{--tw-gradient-from:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/10{--tw-gradient-from:rgb(var(--slate-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/100{--tw-gradient-from:rgb(var(--slate-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/20{--tw-gradient-from:rgb(var(--slate-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/25{--tw-gradient-from:rgb(var(--slate-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/30{--tw-gradient-from:rgb(var(--slate-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/40{--tw-gradient-from:rgb(var(--slate-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/5{--tw-gradient-from:rgb(var(--slate-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/50{--tw-gradient-from:rgb(var(--slate-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/60{--tw-gradient-from:rgb(var(--slate-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/70{--tw-gradient-from:rgb(var(--slate-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/75{--tw-gradient-from:rgb(var(--slate-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/80{--tw-gradient-from:rgb(var(--slate-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/90{--tw-gradient-from:rgb(var(--slate-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-8\/95{--tw-gradient-from:rgb(var(--slate-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/0{--tw-gradient-from:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/10{--tw-gradient-from:rgb(var(--slate-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/100{--tw-gradient-from:rgb(var(--slate-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/20{--tw-gradient-from:rgb(var(--slate-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/25{--tw-gradient-from:rgb(var(--slate-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/30{--tw-gradient-from:rgb(var(--slate-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/40{--tw-gradient-from:rgb(var(--slate-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/5{--tw-gradient-from:rgb(var(--slate-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/50{--tw-gradient-from:rgb(var(--slate-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/60{--tw-gradient-from:rgb(var(--slate-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/70{--tw-gradient-from:rgb(var(--slate-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/75{--tw-gradient-from:rgb(var(--slate-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/80{--tw-gradient-from:rgb(var(--slate-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/90{--tw-gradient-from:rgb(var(--slate-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-slate-9\/95{--tw-gradient-from:rgb(var(--slate-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success{--tw-gradient-from:rgb(var(--success)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/0{--tw-gradient-from:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/10{--tw-gradient-from:rgb(var(--success)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/100{--tw-gradient-from:rgb(var(--success)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/20{--tw-gradient-from:rgb(var(--success)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/25{--tw-gradient-from:rgb(var(--success)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/30{--tw-gradient-from:rgb(var(--success)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/40{--tw-gradient-from:rgb(var(--success)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/5{--tw-gradient-from:rgb(var(--success)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/50{--tw-gradient-from:rgb(var(--success)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/60{--tw-gradient-from:rgb(var(--success)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/70{--tw-gradient-from:rgb(var(--success)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/75{--tw-gradient-from:rgb(var(--success)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/80{--tw-gradient-from:rgb(var(--success)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/90{--tw-gradient-from:rgb(var(--success)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/95{--tw-gradient-from:rgb(var(--success)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning{--tw-gradient-from:rgb(var(--warning)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/0{--tw-gradient-from:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/10{--tw-gradient-from:rgb(var(--warning)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/100{--tw-gradient-from:rgb(var(--warning)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/20{--tw-gradient-from:rgb(var(--warning)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/25{--tw-gradient-from:rgb(var(--warning)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/30{--tw-gradient-from:rgb(var(--warning)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/40{--tw-gradient-from:rgb(var(--warning)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/5{--tw-gradient-from:rgb(var(--warning)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/50{--tw-gradient-from:rgb(var(--warning)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/60{--tw-gradient-from:rgb(var(--warning)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/70{--tw-gradient-from:rgb(var(--warning)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/75{--tw-gradient-from:rgb(var(--warning)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/80{--tw-gradient-from:rgb(var(--warning)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/90{--tw-gradient-from:rgb(var(--warning)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/95{--tw-gradient-from:rgb(var(--warning)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/0{--tw-gradient-from:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/10{--tw-gradient-from:hsla(0,0%,100%,.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/100{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/20{--tw-gradient-from:hsla(0,0%,100%,.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/25{--tw-gradient-from:hsla(0,0%,100%,.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/30{--tw-gradient-from:hsla(0,0%,100%,.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/40{--tw-gradient-from:hsla(0,0%,100%,.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/5{--tw-gradient-from:hsla(0,0%,100%,.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/50{--tw-gradient-from:hsla(0,0%,100%,.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/60{--tw-gradient-from:hsla(0,0%,100%,.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/70{--tw-gradient-from:hsla(0,0%,100%,.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/75{--tw-gradient-from:hsla(0,0%,100%,.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/80{--tw-gradient-from:hsla(0,0%,100%,.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/90{--tw-gradient-from:hsla(0,0%,100%,.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white\/95{--tw-gradient-from:hsla(0,0%,100%,.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted{--tw-gradient-from:rgb(var(--whiteInverted)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/0{--tw-gradient-from:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/10{--tw-gradient-from:rgb(var(--whiteInverted)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/100{--tw-gradient-from:rgb(var(--whiteInverted)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/20{--tw-gradient-from:rgb(var(--whiteInverted)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/25{--tw-gradient-from:rgb(var(--whiteInverted)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/30{--tw-gradient-from:rgb(var(--whiteInverted)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/40{--tw-gradient-from:rgb(var(--whiteInverted)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/5{--tw-gradient-from:rgb(var(--whiteInverted)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/50{--tw-gradient-from:rgb(var(--whiteInverted)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/60{--tw-gradient-from:rgb(var(--whiteInverted)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/70{--tw-gradient-from:rgb(var(--whiteInverted)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/75{--tw-gradient-from:rgb(var(--whiteInverted)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/80{--tw-gradient-from:rgb(var(--whiteInverted)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/90{--tw-gradient-from:rgb(var(--whiteInverted)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-whiteInverted\/95{--tw-gradient-from:rgb(var(--whiteInverted)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.via-backgroundPrimary{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundPrimary\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-backgroundSecondary\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#000 var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/0{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),transparent var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/10{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/100{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#000 var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/20{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/25{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/30{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/40{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/5{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/50{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/60{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/70{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/75{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/80{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/90{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-black\/95{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blackInverted\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-blue-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-border\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-content3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-cyan-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-gray-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-green-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-pink-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-purple-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-red-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-1\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-10\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-2\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-3\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-4\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-5\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-6\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-7\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-8\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-slate-9\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#fff var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/0{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/10{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/100{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#fff var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/20{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/25{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/30{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/40{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/5{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/50{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/60{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/70{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/75{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/80{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/90{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-white\/95{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/0{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/10{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/100{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/20{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/25{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/30{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/40{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/5{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/50{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/60{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/70{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/75{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/80{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/90{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-whiteInverted\/95{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.to-backgroundPrimary{--tw-gradient-to:rgb(var(--backgroundPrimary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/0{--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/10{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/100{--tw-gradient-to:rgb(var(--backgroundPrimary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/20{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/25{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/30{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/40{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/5{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/50{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/60{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/70{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/75{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/80{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/90{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundPrimary\/95{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary{--tw-gradient-to:rgb(var(--backgroundSecondary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/0{--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/10{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/100{--tw-gradient-to:rgb(var(--backgroundSecondary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/20{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/25{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/30{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/40{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/5{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/50{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/60{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/70{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/75{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/80{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/90{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-backgroundSecondary\/95{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black{--tw-gradient-to:#000 var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/0{--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/10{--tw-gradient-to:rgba(0,0,0,.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/100{--tw-gradient-to:#000 var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/20{--tw-gradient-to:rgba(0,0,0,.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/25{--tw-gradient-to:rgba(0,0,0,.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/30{--tw-gradient-to:rgba(0,0,0,.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/40{--tw-gradient-to:rgba(0,0,0,.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/5{--tw-gradient-to:rgba(0,0,0,.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/50{--tw-gradient-to:rgba(0,0,0,.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/60{--tw-gradient-to:rgba(0,0,0,.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/70{--tw-gradient-to:rgba(0,0,0,.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/75{--tw-gradient-to:rgba(0,0,0,.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/80{--tw-gradient-to:rgba(0,0,0,.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/90{--tw-gradient-to:rgba(0,0,0,.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-black\/95{--tw-gradient-to:rgba(0,0,0,.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted{--tw-gradient-to:rgb(var(--blackInverted)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/0{--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/10{--tw-gradient-to:rgb(var(--blackInverted)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/100{--tw-gradient-to:rgb(var(--blackInverted)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/20{--tw-gradient-to:rgb(var(--blackInverted)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/25{--tw-gradient-to:rgb(var(--blackInverted)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/30{--tw-gradient-to:rgb(var(--blackInverted)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/40{--tw-gradient-to:rgb(var(--blackInverted)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/5{--tw-gradient-to:rgb(var(--blackInverted)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/50{--tw-gradient-to:rgb(var(--blackInverted)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/60{--tw-gradient-to:rgb(var(--blackInverted)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/70{--tw-gradient-to:rgb(var(--blackInverted)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/75{--tw-gradient-to:rgb(var(--blackInverted)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/80{--tw-gradient-to:rgb(var(--blackInverted)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/90{--tw-gradient-to:rgb(var(--blackInverted)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blackInverted\/95{--tw-gradient-to:rgb(var(--blackInverted)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/0{--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/10{--tw-gradient-to:rgb(var(--blue-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/100{--tw-gradient-to:rgb(var(--blue-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/20{--tw-gradient-to:rgb(var(--blue-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/25{--tw-gradient-to:rgb(var(--blue-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/30{--tw-gradient-to:rgb(var(--blue-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/40{--tw-gradient-to:rgb(var(--blue-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/5{--tw-gradient-to:rgb(var(--blue-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/50{--tw-gradient-to:rgb(var(--blue-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/60{--tw-gradient-to:rgb(var(--blue-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/70{--tw-gradient-to:rgb(var(--blue-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/75{--tw-gradient-to:rgb(var(--blue-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/80{--tw-gradient-to:rgb(var(--blue-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/90{--tw-gradient-to:rgb(var(--blue-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-1\/95{--tw-gradient-to:rgb(var(--blue-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/0{--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/10{--tw-gradient-to:rgb(var(--blue-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/100{--tw-gradient-to:rgb(var(--blue-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/20{--tw-gradient-to:rgb(var(--blue-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/25{--tw-gradient-to:rgb(var(--blue-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/30{--tw-gradient-to:rgb(var(--blue-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/40{--tw-gradient-to:rgb(var(--blue-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/5{--tw-gradient-to:rgb(var(--blue-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/50{--tw-gradient-to:rgb(var(--blue-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/60{--tw-gradient-to:rgb(var(--blue-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/70{--tw-gradient-to:rgb(var(--blue-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/75{--tw-gradient-to:rgb(var(--blue-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/80{--tw-gradient-to:rgb(var(--blue-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/90{--tw-gradient-to:rgb(var(--blue-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-10\/95{--tw-gradient-to:rgb(var(--blue-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/0{--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/10{--tw-gradient-to:rgb(var(--blue-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/100{--tw-gradient-to:rgb(var(--blue-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/20{--tw-gradient-to:rgb(var(--blue-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/25{--tw-gradient-to:rgb(var(--blue-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/30{--tw-gradient-to:rgb(var(--blue-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/40{--tw-gradient-to:rgb(var(--blue-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/5{--tw-gradient-to:rgb(var(--blue-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/50{--tw-gradient-to:rgb(var(--blue-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/60{--tw-gradient-to:rgb(var(--blue-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/70{--tw-gradient-to:rgb(var(--blue-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/75{--tw-gradient-to:rgb(var(--blue-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/80{--tw-gradient-to:rgb(var(--blue-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/90{--tw-gradient-to:rgb(var(--blue-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-2\/95{--tw-gradient-to:rgb(var(--blue-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/0{--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/10{--tw-gradient-to:rgb(var(--blue-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/100{--tw-gradient-to:rgb(var(--blue-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/20{--tw-gradient-to:rgb(var(--blue-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/25{--tw-gradient-to:rgb(var(--blue-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/30{--tw-gradient-to:rgb(var(--blue-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/40{--tw-gradient-to:rgb(var(--blue-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/5{--tw-gradient-to:rgb(var(--blue-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/50{--tw-gradient-to:rgb(var(--blue-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/60{--tw-gradient-to:rgb(var(--blue-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/70{--tw-gradient-to:rgb(var(--blue-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/75{--tw-gradient-to:rgb(var(--blue-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/80{--tw-gradient-to:rgb(var(--blue-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/90{--tw-gradient-to:rgb(var(--blue-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-3\/95{--tw-gradient-to:rgb(var(--blue-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/0{--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/10{--tw-gradient-to:rgb(var(--blue-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/100{--tw-gradient-to:rgb(var(--blue-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/20{--tw-gradient-to:rgb(var(--blue-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/25{--tw-gradient-to:rgb(var(--blue-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/30{--tw-gradient-to:rgb(var(--blue-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/40{--tw-gradient-to:rgb(var(--blue-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/5{--tw-gradient-to:rgb(var(--blue-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/50{--tw-gradient-to:rgb(var(--blue-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/60{--tw-gradient-to:rgb(var(--blue-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/70{--tw-gradient-to:rgb(var(--blue-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/75{--tw-gradient-to:rgb(var(--blue-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/80{--tw-gradient-to:rgb(var(--blue-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/90{--tw-gradient-to:rgb(var(--blue-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-4\/95{--tw-gradient-to:rgb(var(--blue-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/0{--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/10{--tw-gradient-to:rgb(var(--blue-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/100{--tw-gradient-to:rgb(var(--blue-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/20{--tw-gradient-to:rgb(var(--blue-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/25{--tw-gradient-to:rgb(var(--blue-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/30{--tw-gradient-to:rgb(var(--blue-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/40{--tw-gradient-to:rgb(var(--blue-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/5{--tw-gradient-to:rgb(var(--blue-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/50{--tw-gradient-to:rgb(var(--blue-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/60{--tw-gradient-to:rgb(var(--blue-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/70{--tw-gradient-to:rgb(var(--blue-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/75{--tw-gradient-to:rgb(var(--blue-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/80{--tw-gradient-to:rgb(var(--blue-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/90{--tw-gradient-to:rgb(var(--blue-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-5\/95{--tw-gradient-to:rgb(var(--blue-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/0{--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/10{--tw-gradient-to:rgb(var(--blue-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/100{--tw-gradient-to:rgb(var(--blue-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/20{--tw-gradient-to:rgb(var(--blue-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/25{--tw-gradient-to:rgb(var(--blue-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/30{--tw-gradient-to:rgb(var(--blue-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/40{--tw-gradient-to:rgb(var(--blue-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/5{--tw-gradient-to:rgb(var(--blue-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/50{--tw-gradient-to:rgb(var(--blue-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/60{--tw-gradient-to:rgb(var(--blue-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/70{--tw-gradient-to:rgb(var(--blue-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/75{--tw-gradient-to:rgb(var(--blue-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/80{--tw-gradient-to:rgb(var(--blue-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/90{--tw-gradient-to:rgb(var(--blue-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-6\/95{--tw-gradient-to:rgb(var(--blue-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/0{--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/10{--tw-gradient-to:rgb(var(--blue-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/100{--tw-gradient-to:rgb(var(--blue-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/20{--tw-gradient-to:rgb(var(--blue-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/25{--tw-gradient-to:rgb(var(--blue-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/30{--tw-gradient-to:rgb(var(--blue-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/40{--tw-gradient-to:rgb(var(--blue-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/5{--tw-gradient-to:rgb(var(--blue-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/50{--tw-gradient-to:rgb(var(--blue-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/60{--tw-gradient-to:rgb(var(--blue-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/70{--tw-gradient-to:rgb(var(--blue-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/75{--tw-gradient-to:rgb(var(--blue-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/80{--tw-gradient-to:rgb(var(--blue-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/90{--tw-gradient-to:rgb(var(--blue-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-7\/95{--tw-gradient-to:rgb(var(--blue-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/0{--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/10{--tw-gradient-to:rgb(var(--blue-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/100{--tw-gradient-to:rgb(var(--blue-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/20{--tw-gradient-to:rgb(var(--blue-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/25{--tw-gradient-to:rgb(var(--blue-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/30{--tw-gradient-to:rgb(var(--blue-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/40{--tw-gradient-to:rgb(var(--blue-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/5{--tw-gradient-to:rgb(var(--blue-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/50{--tw-gradient-to:rgb(var(--blue-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/60{--tw-gradient-to:rgb(var(--blue-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/70{--tw-gradient-to:rgb(var(--blue-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/75{--tw-gradient-to:rgb(var(--blue-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/80{--tw-gradient-to:rgb(var(--blue-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/90{--tw-gradient-to:rgb(var(--blue-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-8\/95{--tw-gradient-to:rgb(var(--blue-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/0{--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/10{--tw-gradient-to:rgb(var(--blue-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/100{--tw-gradient-to:rgb(var(--blue-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/20{--tw-gradient-to:rgb(var(--blue-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/25{--tw-gradient-to:rgb(var(--blue-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/30{--tw-gradient-to:rgb(var(--blue-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/40{--tw-gradient-to:rgb(var(--blue-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/5{--tw-gradient-to:rgb(var(--blue-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/50{--tw-gradient-to:rgb(var(--blue-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/60{--tw-gradient-to:rgb(var(--blue-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/70{--tw-gradient-to:rgb(var(--blue-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/75{--tw-gradient-to:rgb(var(--blue-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/80{--tw-gradient-to:rgb(var(--blue-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/90{--tw-gradient-to:rgb(var(--blue-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-blue-9\/95{--tw-gradient-to:rgb(var(--blue-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border{--tw-gradient-to:rgb(var(--border)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/0{--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/10{--tw-gradient-to:rgb(var(--border)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/100{--tw-gradient-to:rgb(var(--border)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/20{--tw-gradient-to:rgb(var(--border)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/25{--tw-gradient-to:rgb(var(--border)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/30{--tw-gradient-to:rgb(var(--border)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/40{--tw-gradient-to:rgb(var(--border)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/5{--tw-gradient-to:rgb(var(--border)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/50{--tw-gradient-to:rgb(var(--border)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/60{--tw-gradient-to:rgb(var(--border)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/70{--tw-gradient-to:rgb(var(--border)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/75{--tw-gradient-to:rgb(var(--border)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/80{--tw-gradient-to:rgb(var(--border)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/90{--tw-gradient-to:rgb(var(--border)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-border\/95{--tw-gradient-to:rgb(var(--border)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1{--tw-gradient-to:rgb(var(--content1)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/0{--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/10{--tw-gradient-to:rgb(var(--content1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/100{--tw-gradient-to:rgb(var(--content1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/20{--tw-gradient-to:rgb(var(--content1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/25{--tw-gradient-to:rgb(var(--content1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/30{--tw-gradient-to:rgb(var(--content1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/40{--tw-gradient-to:rgb(var(--content1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/5{--tw-gradient-to:rgb(var(--content1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/50{--tw-gradient-to:rgb(var(--content1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/60{--tw-gradient-to:rgb(var(--content1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/70{--tw-gradient-to:rgb(var(--content1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/75{--tw-gradient-to:rgb(var(--content1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/80{--tw-gradient-to:rgb(var(--content1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/90{--tw-gradient-to:rgb(var(--content1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content1\/95{--tw-gradient-to:rgb(var(--content1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2{--tw-gradient-to:rgb(var(--content2)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/0{--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/10{--tw-gradient-to:rgb(var(--content2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/100{--tw-gradient-to:rgb(var(--content2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/20{--tw-gradient-to:rgb(var(--content2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/25{--tw-gradient-to:rgb(var(--content2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/30{--tw-gradient-to:rgb(var(--content2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/40{--tw-gradient-to:rgb(var(--content2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/5{--tw-gradient-to:rgb(var(--content2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/50{--tw-gradient-to:rgb(var(--content2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/60{--tw-gradient-to:rgb(var(--content2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/70{--tw-gradient-to:rgb(var(--content2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/75{--tw-gradient-to:rgb(var(--content2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/80{--tw-gradient-to:rgb(var(--content2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/90{--tw-gradient-to:rgb(var(--content2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content2\/95{--tw-gradient-to:rgb(var(--content2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3{--tw-gradient-to:rgb(var(--content3)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/0{--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/10{--tw-gradient-to:rgb(var(--content3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/100{--tw-gradient-to:rgb(var(--content3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/20{--tw-gradient-to:rgb(var(--content3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/25{--tw-gradient-to:rgb(var(--content3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/30{--tw-gradient-to:rgb(var(--content3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/40{--tw-gradient-to:rgb(var(--content3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/5{--tw-gradient-to:rgb(var(--content3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/50{--tw-gradient-to:rgb(var(--content3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/60{--tw-gradient-to:rgb(var(--content3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/70{--tw-gradient-to:rgb(var(--content3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/75{--tw-gradient-to:rgb(var(--content3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/80{--tw-gradient-to:rgb(var(--content3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/90{--tw-gradient-to:rgb(var(--content3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-content3\/95{--tw-gradient-to:rgb(var(--content3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/0{--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/10{--tw-gradient-to:rgb(var(--cyan-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/100{--tw-gradient-to:rgb(var(--cyan-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/20{--tw-gradient-to:rgb(var(--cyan-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/25{--tw-gradient-to:rgb(var(--cyan-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/30{--tw-gradient-to:rgb(var(--cyan-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/40{--tw-gradient-to:rgb(var(--cyan-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/5{--tw-gradient-to:rgb(var(--cyan-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/50{--tw-gradient-to:rgb(var(--cyan-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/60{--tw-gradient-to:rgb(var(--cyan-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/70{--tw-gradient-to:rgb(var(--cyan-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/75{--tw-gradient-to:rgb(var(--cyan-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/80{--tw-gradient-to:rgb(var(--cyan-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/90{--tw-gradient-to:rgb(var(--cyan-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-1\/95{--tw-gradient-to:rgb(var(--cyan-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/0{--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/10{--tw-gradient-to:rgb(var(--cyan-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/100{--tw-gradient-to:rgb(var(--cyan-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/20{--tw-gradient-to:rgb(var(--cyan-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/25{--tw-gradient-to:rgb(var(--cyan-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/30{--tw-gradient-to:rgb(var(--cyan-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/40{--tw-gradient-to:rgb(var(--cyan-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/5{--tw-gradient-to:rgb(var(--cyan-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/50{--tw-gradient-to:rgb(var(--cyan-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/60{--tw-gradient-to:rgb(var(--cyan-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/70{--tw-gradient-to:rgb(var(--cyan-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/75{--tw-gradient-to:rgb(var(--cyan-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/80{--tw-gradient-to:rgb(var(--cyan-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/90{--tw-gradient-to:rgb(var(--cyan-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-10\/95{--tw-gradient-to:rgb(var(--cyan-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/0{--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/10{--tw-gradient-to:rgb(var(--cyan-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/100{--tw-gradient-to:rgb(var(--cyan-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/20{--tw-gradient-to:rgb(var(--cyan-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/25{--tw-gradient-to:rgb(var(--cyan-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/30{--tw-gradient-to:rgb(var(--cyan-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/40{--tw-gradient-to:rgb(var(--cyan-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/5{--tw-gradient-to:rgb(var(--cyan-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/50{--tw-gradient-to:rgb(var(--cyan-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/60{--tw-gradient-to:rgb(var(--cyan-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/70{--tw-gradient-to:rgb(var(--cyan-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/75{--tw-gradient-to:rgb(var(--cyan-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/80{--tw-gradient-to:rgb(var(--cyan-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/90{--tw-gradient-to:rgb(var(--cyan-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-2\/95{--tw-gradient-to:rgb(var(--cyan-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/0{--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/10{--tw-gradient-to:rgb(var(--cyan-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/100{--tw-gradient-to:rgb(var(--cyan-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/20{--tw-gradient-to:rgb(var(--cyan-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/25{--tw-gradient-to:rgb(var(--cyan-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/30{--tw-gradient-to:rgb(var(--cyan-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/40{--tw-gradient-to:rgb(var(--cyan-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/5{--tw-gradient-to:rgb(var(--cyan-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/50{--tw-gradient-to:rgb(var(--cyan-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/60{--tw-gradient-to:rgb(var(--cyan-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/70{--tw-gradient-to:rgb(var(--cyan-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/75{--tw-gradient-to:rgb(var(--cyan-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/80{--tw-gradient-to:rgb(var(--cyan-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/90{--tw-gradient-to:rgb(var(--cyan-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-3\/95{--tw-gradient-to:rgb(var(--cyan-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/0{--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/10{--tw-gradient-to:rgb(var(--cyan-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/100{--tw-gradient-to:rgb(var(--cyan-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/20{--tw-gradient-to:rgb(var(--cyan-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/25{--tw-gradient-to:rgb(var(--cyan-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/30{--tw-gradient-to:rgb(var(--cyan-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/40{--tw-gradient-to:rgb(var(--cyan-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/5{--tw-gradient-to:rgb(var(--cyan-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/50{--tw-gradient-to:rgb(var(--cyan-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/60{--tw-gradient-to:rgb(var(--cyan-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/70{--tw-gradient-to:rgb(var(--cyan-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/75{--tw-gradient-to:rgb(var(--cyan-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/80{--tw-gradient-to:rgb(var(--cyan-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/90{--tw-gradient-to:rgb(var(--cyan-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-4\/95{--tw-gradient-to:rgb(var(--cyan-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/0{--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/10{--tw-gradient-to:rgb(var(--cyan-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/100{--tw-gradient-to:rgb(var(--cyan-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/20{--tw-gradient-to:rgb(var(--cyan-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/25{--tw-gradient-to:rgb(var(--cyan-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/30{--tw-gradient-to:rgb(var(--cyan-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/40{--tw-gradient-to:rgb(var(--cyan-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/5{--tw-gradient-to:rgb(var(--cyan-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/50{--tw-gradient-to:rgb(var(--cyan-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/60{--tw-gradient-to:rgb(var(--cyan-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/70{--tw-gradient-to:rgb(var(--cyan-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/75{--tw-gradient-to:rgb(var(--cyan-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/80{--tw-gradient-to:rgb(var(--cyan-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/90{--tw-gradient-to:rgb(var(--cyan-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-5\/95{--tw-gradient-to:rgb(var(--cyan-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/0{--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/10{--tw-gradient-to:rgb(var(--cyan-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/100{--tw-gradient-to:rgb(var(--cyan-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/20{--tw-gradient-to:rgb(var(--cyan-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/25{--tw-gradient-to:rgb(var(--cyan-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/30{--tw-gradient-to:rgb(var(--cyan-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/40{--tw-gradient-to:rgb(var(--cyan-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/5{--tw-gradient-to:rgb(var(--cyan-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/50{--tw-gradient-to:rgb(var(--cyan-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/60{--tw-gradient-to:rgb(var(--cyan-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/70{--tw-gradient-to:rgb(var(--cyan-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/75{--tw-gradient-to:rgb(var(--cyan-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/80{--tw-gradient-to:rgb(var(--cyan-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/90{--tw-gradient-to:rgb(var(--cyan-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-6\/95{--tw-gradient-to:rgb(var(--cyan-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/0{--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/10{--tw-gradient-to:rgb(var(--cyan-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/100{--tw-gradient-to:rgb(var(--cyan-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/20{--tw-gradient-to:rgb(var(--cyan-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/25{--tw-gradient-to:rgb(var(--cyan-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/30{--tw-gradient-to:rgb(var(--cyan-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/40{--tw-gradient-to:rgb(var(--cyan-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/5{--tw-gradient-to:rgb(var(--cyan-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/50{--tw-gradient-to:rgb(var(--cyan-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/60{--tw-gradient-to:rgb(var(--cyan-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/70{--tw-gradient-to:rgb(var(--cyan-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/75{--tw-gradient-to:rgb(var(--cyan-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/80{--tw-gradient-to:rgb(var(--cyan-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/90{--tw-gradient-to:rgb(var(--cyan-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-7\/95{--tw-gradient-to:rgb(var(--cyan-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/0{--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/10{--tw-gradient-to:rgb(var(--cyan-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/100{--tw-gradient-to:rgb(var(--cyan-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/20{--tw-gradient-to:rgb(var(--cyan-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/25{--tw-gradient-to:rgb(var(--cyan-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/30{--tw-gradient-to:rgb(var(--cyan-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/40{--tw-gradient-to:rgb(var(--cyan-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/5{--tw-gradient-to:rgb(var(--cyan-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/50{--tw-gradient-to:rgb(var(--cyan-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/60{--tw-gradient-to:rgb(var(--cyan-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/70{--tw-gradient-to:rgb(var(--cyan-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/75{--tw-gradient-to:rgb(var(--cyan-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/80{--tw-gradient-to:rgb(var(--cyan-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/90{--tw-gradient-to:rgb(var(--cyan-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-8\/95{--tw-gradient-to:rgb(var(--cyan-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/0{--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/10{--tw-gradient-to:rgb(var(--cyan-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/100{--tw-gradient-to:rgb(var(--cyan-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/20{--tw-gradient-to:rgb(var(--cyan-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/25{--tw-gradient-to:rgb(var(--cyan-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/30{--tw-gradient-to:rgb(var(--cyan-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/40{--tw-gradient-to:rgb(var(--cyan-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/5{--tw-gradient-to:rgb(var(--cyan-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/50{--tw-gradient-to:rgb(var(--cyan-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/60{--tw-gradient-to:rgb(var(--cyan-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/70{--tw-gradient-to:rgb(var(--cyan-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/75{--tw-gradient-to:rgb(var(--cyan-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/80{--tw-gradient-to:rgb(var(--cyan-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/90{--tw-gradient-to:rgb(var(--cyan-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-cyan-9\/95{--tw-gradient-to:rgb(var(--cyan-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error{--tw-gradient-to:rgb(var(--error)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/0{--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/10{--tw-gradient-to:rgb(var(--error)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/100{--tw-gradient-to:rgb(var(--error)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/20{--tw-gradient-to:rgb(var(--error)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/25{--tw-gradient-to:rgb(var(--error)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/30{--tw-gradient-to:rgb(var(--error)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/40{--tw-gradient-to:rgb(var(--error)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/5{--tw-gradient-to:rgb(var(--error)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/50{--tw-gradient-to:rgb(var(--error)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/60{--tw-gradient-to:rgb(var(--error)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/70{--tw-gradient-to:rgb(var(--error)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/75{--tw-gradient-to:rgb(var(--error)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/80{--tw-gradient-to:rgb(var(--error)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/90{--tw-gradient-to:rgb(var(--error)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-error\/95{--tw-gradient-to:rgb(var(--error)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/0{--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/10{--tw-gradient-to:rgb(var(--gray-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/100{--tw-gradient-to:rgb(var(--gray-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/20{--tw-gradient-to:rgb(var(--gray-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/25{--tw-gradient-to:rgb(var(--gray-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/30{--tw-gradient-to:rgb(var(--gray-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/40{--tw-gradient-to:rgb(var(--gray-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/5{--tw-gradient-to:rgb(var(--gray-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/50{--tw-gradient-to:rgb(var(--gray-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/60{--tw-gradient-to:rgb(var(--gray-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/70{--tw-gradient-to:rgb(var(--gray-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/75{--tw-gradient-to:rgb(var(--gray-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/80{--tw-gradient-to:rgb(var(--gray-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/90{--tw-gradient-to:rgb(var(--gray-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-1\/95{--tw-gradient-to:rgb(var(--gray-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/0{--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/10{--tw-gradient-to:rgb(var(--gray-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/100{--tw-gradient-to:rgb(var(--gray-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/20{--tw-gradient-to:rgb(var(--gray-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/25{--tw-gradient-to:rgb(var(--gray-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/30{--tw-gradient-to:rgb(var(--gray-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/40{--tw-gradient-to:rgb(var(--gray-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/5{--tw-gradient-to:rgb(var(--gray-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/50{--tw-gradient-to:rgb(var(--gray-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/60{--tw-gradient-to:rgb(var(--gray-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/70{--tw-gradient-to:rgb(var(--gray-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/75{--tw-gradient-to:rgb(var(--gray-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/80{--tw-gradient-to:rgb(var(--gray-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/90{--tw-gradient-to:rgb(var(--gray-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-10\/95{--tw-gradient-to:rgb(var(--gray-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/0{--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/10{--tw-gradient-to:rgb(var(--gray-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/100{--tw-gradient-to:rgb(var(--gray-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/20{--tw-gradient-to:rgb(var(--gray-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/25{--tw-gradient-to:rgb(var(--gray-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/30{--tw-gradient-to:rgb(var(--gray-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/40{--tw-gradient-to:rgb(var(--gray-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/5{--tw-gradient-to:rgb(var(--gray-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/50{--tw-gradient-to:rgb(var(--gray-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/60{--tw-gradient-to:rgb(var(--gray-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/70{--tw-gradient-to:rgb(var(--gray-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/75{--tw-gradient-to:rgb(var(--gray-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/80{--tw-gradient-to:rgb(var(--gray-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/90{--tw-gradient-to:rgb(var(--gray-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-2\/95{--tw-gradient-to:rgb(var(--gray-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/0{--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/10{--tw-gradient-to:rgb(var(--gray-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/100{--tw-gradient-to:rgb(var(--gray-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/20{--tw-gradient-to:rgb(var(--gray-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/25{--tw-gradient-to:rgb(var(--gray-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/30{--tw-gradient-to:rgb(var(--gray-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/40{--tw-gradient-to:rgb(var(--gray-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/5{--tw-gradient-to:rgb(var(--gray-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/50{--tw-gradient-to:rgb(var(--gray-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/60{--tw-gradient-to:rgb(var(--gray-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/70{--tw-gradient-to:rgb(var(--gray-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/75{--tw-gradient-to:rgb(var(--gray-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/80{--tw-gradient-to:rgb(var(--gray-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/90{--tw-gradient-to:rgb(var(--gray-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-3\/95{--tw-gradient-to:rgb(var(--gray-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/0{--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/10{--tw-gradient-to:rgb(var(--gray-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/100{--tw-gradient-to:rgb(var(--gray-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/20{--tw-gradient-to:rgb(var(--gray-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/25{--tw-gradient-to:rgb(var(--gray-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/30{--tw-gradient-to:rgb(var(--gray-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/40{--tw-gradient-to:rgb(var(--gray-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/5{--tw-gradient-to:rgb(var(--gray-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/50{--tw-gradient-to:rgb(var(--gray-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/60{--tw-gradient-to:rgb(var(--gray-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/70{--tw-gradient-to:rgb(var(--gray-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/75{--tw-gradient-to:rgb(var(--gray-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/80{--tw-gradient-to:rgb(var(--gray-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/90{--tw-gradient-to:rgb(var(--gray-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-4\/95{--tw-gradient-to:rgb(var(--gray-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/0{--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/10{--tw-gradient-to:rgb(var(--gray-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/100{--tw-gradient-to:rgb(var(--gray-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/20{--tw-gradient-to:rgb(var(--gray-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/25{--tw-gradient-to:rgb(var(--gray-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/30{--tw-gradient-to:rgb(var(--gray-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/40{--tw-gradient-to:rgb(var(--gray-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/5{--tw-gradient-to:rgb(var(--gray-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/50{--tw-gradient-to:rgb(var(--gray-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/60{--tw-gradient-to:rgb(var(--gray-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/70{--tw-gradient-to:rgb(var(--gray-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/75{--tw-gradient-to:rgb(var(--gray-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/80{--tw-gradient-to:rgb(var(--gray-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/90{--tw-gradient-to:rgb(var(--gray-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-5\/95{--tw-gradient-to:rgb(var(--gray-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/0{--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/10{--tw-gradient-to:rgb(var(--gray-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/100{--tw-gradient-to:rgb(var(--gray-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/20{--tw-gradient-to:rgb(var(--gray-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/25{--tw-gradient-to:rgb(var(--gray-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/30{--tw-gradient-to:rgb(var(--gray-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/40{--tw-gradient-to:rgb(var(--gray-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/5{--tw-gradient-to:rgb(var(--gray-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/50{--tw-gradient-to:rgb(var(--gray-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/60{--tw-gradient-to:rgb(var(--gray-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/70{--tw-gradient-to:rgb(var(--gray-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/75{--tw-gradient-to:rgb(var(--gray-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/80{--tw-gradient-to:rgb(var(--gray-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/90{--tw-gradient-to:rgb(var(--gray-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-6\/95{--tw-gradient-to:rgb(var(--gray-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/0{--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/10{--tw-gradient-to:rgb(var(--gray-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/100{--tw-gradient-to:rgb(var(--gray-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/20{--tw-gradient-to:rgb(var(--gray-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/25{--tw-gradient-to:rgb(var(--gray-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/30{--tw-gradient-to:rgb(var(--gray-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/40{--tw-gradient-to:rgb(var(--gray-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/5{--tw-gradient-to:rgb(var(--gray-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/50{--tw-gradient-to:rgb(var(--gray-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/60{--tw-gradient-to:rgb(var(--gray-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/70{--tw-gradient-to:rgb(var(--gray-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/75{--tw-gradient-to:rgb(var(--gray-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/80{--tw-gradient-to:rgb(var(--gray-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/90{--tw-gradient-to:rgb(var(--gray-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-7\/95{--tw-gradient-to:rgb(var(--gray-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/0{--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/10{--tw-gradient-to:rgb(var(--gray-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/100{--tw-gradient-to:rgb(var(--gray-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/20{--tw-gradient-to:rgb(var(--gray-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/25{--tw-gradient-to:rgb(var(--gray-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/30{--tw-gradient-to:rgb(var(--gray-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/40{--tw-gradient-to:rgb(var(--gray-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/5{--tw-gradient-to:rgb(var(--gray-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/50{--tw-gradient-to:rgb(var(--gray-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/60{--tw-gradient-to:rgb(var(--gray-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/70{--tw-gradient-to:rgb(var(--gray-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/75{--tw-gradient-to:rgb(var(--gray-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/80{--tw-gradient-to:rgb(var(--gray-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/90{--tw-gradient-to:rgb(var(--gray-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-8\/95{--tw-gradient-to:rgb(var(--gray-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/0{--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/10{--tw-gradient-to:rgb(var(--gray-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/100{--tw-gradient-to:rgb(var(--gray-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/20{--tw-gradient-to:rgb(var(--gray-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/25{--tw-gradient-to:rgb(var(--gray-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/30{--tw-gradient-to:rgb(var(--gray-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/40{--tw-gradient-to:rgb(var(--gray-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/5{--tw-gradient-to:rgb(var(--gray-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/50{--tw-gradient-to:rgb(var(--gray-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/60{--tw-gradient-to:rgb(var(--gray-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/70{--tw-gradient-to:rgb(var(--gray-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/75{--tw-gradient-to:rgb(var(--gray-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/80{--tw-gradient-to:rgb(var(--gray-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/90{--tw-gradient-to:rgb(var(--gray-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-gray-9\/95{--tw-gradient-to:rgb(var(--gray-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/0{--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/10{--tw-gradient-to:rgb(var(--green-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/100{--tw-gradient-to:rgb(var(--green-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/20{--tw-gradient-to:rgb(var(--green-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/25{--tw-gradient-to:rgb(var(--green-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/30{--tw-gradient-to:rgb(var(--green-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/40{--tw-gradient-to:rgb(var(--green-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/5{--tw-gradient-to:rgb(var(--green-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/50{--tw-gradient-to:rgb(var(--green-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/60{--tw-gradient-to:rgb(var(--green-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/70{--tw-gradient-to:rgb(var(--green-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/75{--tw-gradient-to:rgb(var(--green-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/80{--tw-gradient-to:rgb(var(--green-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/90{--tw-gradient-to:rgb(var(--green-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-1\/95{--tw-gradient-to:rgb(var(--green-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/0{--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/10{--tw-gradient-to:rgb(var(--green-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/100{--tw-gradient-to:rgb(var(--green-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/20{--tw-gradient-to:rgb(var(--green-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/25{--tw-gradient-to:rgb(var(--green-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/30{--tw-gradient-to:rgb(var(--green-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/40{--tw-gradient-to:rgb(var(--green-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/5{--tw-gradient-to:rgb(var(--green-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/50{--tw-gradient-to:rgb(var(--green-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/60{--tw-gradient-to:rgb(var(--green-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/70{--tw-gradient-to:rgb(var(--green-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/75{--tw-gradient-to:rgb(var(--green-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/80{--tw-gradient-to:rgb(var(--green-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/90{--tw-gradient-to:rgb(var(--green-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-10\/95{--tw-gradient-to:rgb(var(--green-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/0{--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/10{--tw-gradient-to:rgb(var(--green-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/100{--tw-gradient-to:rgb(var(--green-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/20{--tw-gradient-to:rgb(var(--green-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/25{--tw-gradient-to:rgb(var(--green-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/30{--tw-gradient-to:rgb(var(--green-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/40{--tw-gradient-to:rgb(var(--green-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/5{--tw-gradient-to:rgb(var(--green-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/50{--tw-gradient-to:rgb(var(--green-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/60{--tw-gradient-to:rgb(var(--green-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/70{--tw-gradient-to:rgb(var(--green-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/75{--tw-gradient-to:rgb(var(--green-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/80{--tw-gradient-to:rgb(var(--green-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/90{--tw-gradient-to:rgb(var(--green-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-2\/95{--tw-gradient-to:rgb(var(--green-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/0{--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/10{--tw-gradient-to:rgb(var(--green-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/100{--tw-gradient-to:rgb(var(--green-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/20{--tw-gradient-to:rgb(var(--green-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/25{--tw-gradient-to:rgb(var(--green-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/30{--tw-gradient-to:rgb(var(--green-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/40{--tw-gradient-to:rgb(var(--green-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/5{--tw-gradient-to:rgb(var(--green-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/50{--tw-gradient-to:rgb(var(--green-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/60{--tw-gradient-to:rgb(var(--green-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/70{--tw-gradient-to:rgb(var(--green-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/75{--tw-gradient-to:rgb(var(--green-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/80{--tw-gradient-to:rgb(var(--green-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/90{--tw-gradient-to:rgb(var(--green-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-3\/95{--tw-gradient-to:rgb(var(--green-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/0{--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/10{--tw-gradient-to:rgb(var(--green-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/100{--tw-gradient-to:rgb(var(--green-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/20{--tw-gradient-to:rgb(var(--green-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/25{--tw-gradient-to:rgb(var(--green-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/30{--tw-gradient-to:rgb(var(--green-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/40{--tw-gradient-to:rgb(var(--green-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/5{--tw-gradient-to:rgb(var(--green-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/50{--tw-gradient-to:rgb(var(--green-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/60{--tw-gradient-to:rgb(var(--green-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/70{--tw-gradient-to:rgb(var(--green-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/75{--tw-gradient-to:rgb(var(--green-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/80{--tw-gradient-to:rgb(var(--green-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/90{--tw-gradient-to:rgb(var(--green-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-4\/95{--tw-gradient-to:rgb(var(--green-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/0{--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/10{--tw-gradient-to:rgb(var(--green-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/100{--tw-gradient-to:rgb(var(--green-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/20{--tw-gradient-to:rgb(var(--green-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/25{--tw-gradient-to:rgb(var(--green-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/30{--tw-gradient-to:rgb(var(--green-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/40{--tw-gradient-to:rgb(var(--green-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/5{--tw-gradient-to:rgb(var(--green-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/50{--tw-gradient-to:rgb(var(--green-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/60{--tw-gradient-to:rgb(var(--green-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/70{--tw-gradient-to:rgb(var(--green-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/75{--tw-gradient-to:rgb(var(--green-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/80{--tw-gradient-to:rgb(var(--green-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/90{--tw-gradient-to:rgb(var(--green-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-5\/95{--tw-gradient-to:rgb(var(--green-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/0{--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/10{--tw-gradient-to:rgb(var(--green-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/100{--tw-gradient-to:rgb(var(--green-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/20{--tw-gradient-to:rgb(var(--green-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/25{--tw-gradient-to:rgb(var(--green-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/30{--tw-gradient-to:rgb(var(--green-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/40{--tw-gradient-to:rgb(var(--green-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/5{--tw-gradient-to:rgb(var(--green-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/50{--tw-gradient-to:rgb(var(--green-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/60{--tw-gradient-to:rgb(var(--green-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/70{--tw-gradient-to:rgb(var(--green-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/75{--tw-gradient-to:rgb(var(--green-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/80{--tw-gradient-to:rgb(var(--green-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/90{--tw-gradient-to:rgb(var(--green-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-6\/95{--tw-gradient-to:rgb(var(--green-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/0{--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/10{--tw-gradient-to:rgb(var(--green-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/100{--tw-gradient-to:rgb(var(--green-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/20{--tw-gradient-to:rgb(var(--green-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/25{--tw-gradient-to:rgb(var(--green-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/30{--tw-gradient-to:rgb(var(--green-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/40{--tw-gradient-to:rgb(var(--green-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/5{--tw-gradient-to:rgb(var(--green-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/50{--tw-gradient-to:rgb(var(--green-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/60{--tw-gradient-to:rgb(var(--green-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/70{--tw-gradient-to:rgb(var(--green-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/75{--tw-gradient-to:rgb(var(--green-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/80{--tw-gradient-to:rgb(var(--green-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/90{--tw-gradient-to:rgb(var(--green-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-7\/95{--tw-gradient-to:rgb(var(--green-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/0{--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/10{--tw-gradient-to:rgb(var(--green-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/100{--tw-gradient-to:rgb(var(--green-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/20{--tw-gradient-to:rgb(var(--green-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/25{--tw-gradient-to:rgb(var(--green-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/30{--tw-gradient-to:rgb(var(--green-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/40{--tw-gradient-to:rgb(var(--green-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/5{--tw-gradient-to:rgb(var(--green-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/50{--tw-gradient-to:rgb(var(--green-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/60{--tw-gradient-to:rgb(var(--green-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/70{--tw-gradient-to:rgb(var(--green-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/75{--tw-gradient-to:rgb(var(--green-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/80{--tw-gradient-to:rgb(var(--green-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/90{--tw-gradient-to:rgb(var(--green-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-8\/95{--tw-gradient-to:rgb(var(--green-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/0{--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/10{--tw-gradient-to:rgb(var(--green-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/100{--tw-gradient-to:rgb(var(--green-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/20{--tw-gradient-to:rgb(var(--green-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/25{--tw-gradient-to:rgb(var(--green-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/30{--tw-gradient-to:rgb(var(--green-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/40{--tw-gradient-to:rgb(var(--green-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/5{--tw-gradient-to:rgb(var(--green-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/50{--tw-gradient-to:rgb(var(--green-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/60{--tw-gradient-to:rgb(var(--green-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/70{--tw-gradient-to:rgb(var(--green-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/75{--tw-gradient-to:rgb(var(--green-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/80{--tw-gradient-to:rgb(var(--green-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/90{--tw-gradient-to:rgb(var(--green-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-green-9\/95{--tw-gradient-to:rgb(var(--green-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/0{--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/10{--tw-gradient-to:rgb(var(--pink-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/100{--tw-gradient-to:rgb(var(--pink-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/20{--tw-gradient-to:rgb(var(--pink-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/25{--tw-gradient-to:rgb(var(--pink-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/30{--tw-gradient-to:rgb(var(--pink-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/40{--tw-gradient-to:rgb(var(--pink-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/5{--tw-gradient-to:rgb(var(--pink-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/50{--tw-gradient-to:rgb(var(--pink-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/60{--tw-gradient-to:rgb(var(--pink-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/70{--tw-gradient-to:rgb(var(--pink-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/75{--tw-gradient-to:rgb(var(--pink-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/80{--tw-gradient-to:rgb(var(--pink-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/90{--tw-gradient-to:rgb(var(--pink-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-1\/95{--tw-gradient-to:rgb(var(--pink-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/0{--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/10{--tw-gradient-to:rgb(var(--pink-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/100{--tw-gradient-to:rgb(var(--pink-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/20{--tw-gradient-to:rgb(var(--pink-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/25{--tw-gradient-to:rgb(var(--pink-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/30{--tw-gradient-to:rgb(var(--pink-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/40{--tw-gradient-to:rgb(var(--pink-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/5{--tw-gradient-to:rgb(var(--pink-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/50{--tw-gradient-to:rgb(var(--pink-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/60{--tw-gradient-to:rgb(var(--pink-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/70{--tw-gradient-to:rgb(var(--pink-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/75{--tw-gradient-to:rgb(var(--pink-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/80{--tw-gradient-to:rgb(var(--pink-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/90{--tw-gradient-to:rgb(var(--pink-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-10\/95{--tw-gradient-to:rgb(var(--pink-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/0{--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/10{--tw-gradient-to:rgb(var(--pink-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/100{--tw-gradient-to:rgb(var(--pink-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/20{--tw-gradient-to:rgb(var(--pink-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/25{--tw-gradient-to:rgb(var(--pink-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/30{--tw-gradient-to:rgb(var(--pink-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/40{--tw-gradient-to:rgb(var(--pink-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/5{--tw-gradient-to:rgb(var(--pink-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/50{--tw-gradient-to:rgb(var(--pink-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/60{--tw-gradient-to:rgb(var(--pink-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/70{--tw-gradient-to:rgb(var(--pink-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/75{--tw-gradient-to:rgb(var(--pink-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/80{--tw-gradient-to:rgb(var(--pink-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/90{--tw-gradient-to:rgb(var(--pink-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-2\/95{--tw-gradient-to:rgb(var(--pink-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/0{--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/10{--tw-gradient-to:rgb(var(--pink-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/100{--tw-gradient-to:rgb(var(--pink-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/20{--tw-gradient-to:rgb(var(--pink-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/25{--tw-gradient-to:rgb(var(--pink-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/30{--tw-gradient-to:rgb(var(--pink-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/40{--tw-gradient-to:rgb(var(--pink-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/5{--tw-gradient-to:rgb(var(--pink-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/50{--tw-gradient-to:rgb(var(--pink-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/60{--tw-gradient-to:rgb(var(--pink-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/70{--tw-gradient-to:rgb(var(--pink-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/75{--tw-gradient-to:rgb(var(--pink-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/80{--tw-gradient-to:rgb(var(--pink-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/90{--tw-gradient-to:rgb(var(--pink-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-3\/95{--tw-gradient-to:rgb(var(--pink-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/0{--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/10{--tw-gradient-to:rgb(var(--pink-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/100{--tw-gradient-to:rgb(var(--pink-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/20{--tw-gradient-to:rgb(var(--pink-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/25{--tw-gradient-to:rgb(var(--pink-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/30{--tw-gradient-to:rgb(var(--pink-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/40{--tw-gradient-to:rgb(var(--pink-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/5{--tw-gradient-to:rgb(var(--pink-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/50{--tw-gradient-to:rgb(var(--pink-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/60{--tw-gradient-to:rgb(var(--pink-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/70{--tw-gradient-to:rgb(var(--pink-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/75{--tw-gradient-to:rgb(var(--pink-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/80{--tw-gradient-to:rgb(var(--pink-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/90{--tw-gradient-to:rgb(var(--pink-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-4\/95{--tw-gradient-to:rgb(var(--pink-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/0{--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/10{--tw-gradient-to:rgb(var(--pink-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/100{--tw-gradient-to:rgb(var(--pink-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/20{--tw-gradient-to:rgb(var(--pink-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/25{--tw-gradient-to:rgb(var(--pink-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/30{--tw-gradient-to:rgb(var(--pink-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/40{--tw-gradient-to:rgb(var(--pink-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/5{--tw-gradient-to:rgb(var(--pink-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/50{--tw-gradient-to:rgb(var(--pink-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/60{--tw-gradient-to:rgb(var(--pink-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/70{--tw-gradient-to:rgb(var(--pink-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/75{--tw-gradient-to:rgb(var(--pink-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/80{--tw-gradient-to:rgb(var(--pink-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/90{--tw-gradient-to:rgb(var(--pink-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-5\/95{--tw-gradient-to:rgb(var(--pink-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/0{--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/10{--tw-gradient-to:rgb(var(--pink-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/100{--tw-gradient-to:rgb(var(--pink-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/20{--tw-gradient-to:rgb(var(--pink-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/25{--tw-gradient-to:rgb(var(--pink-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/30{--tw-gradient-to:rgb(var(--pink-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/40{--tw-gradient-to:rgb(var(--pink-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/5{--tw-gradient-to:rgb(var(--pink-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/50{--tw-gradient-to:rgb(var(--pink-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/60{--tw-gradient-to:rgb(var(--pink-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/70{--tw-gradient-to:rgb(var(--pink-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/75{--tw-gradient-to:rgb(var(--pink-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/80{--tw-gradient-to:rgb(var(--pink-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/90{--tw-gradient-to:rgb(var(--pink-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-6\/95{--tw-gradient-to:rgb(var(--pink-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/0{--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/10{--tw-gradient-to:rgb(var(--pink-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/100{--tw-gradient-to:rgb(var(--pink-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/20{--tw-gradient-to:rgb(var(--pink-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/25{--tw-gradient-to:rgb(var(--pink-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/30{--tw-gradient-to:rgb(var(--pink-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/40{--tw-gradient-to:rgb(var(--pink-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/5{--tw-gradient-to:rgb(var(--pink-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/50{--tw-gradient-to:rgb(var(--pink-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/60{--tw-gradient-to:rgb(var(--pink-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/70{--tw-gradient-to:rgb(var(--pink-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/75{--tw-gradient-to:rgb(var(--pink-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/80{--tw-gradient-to:rgb(var(--pink-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/90{--tw-gradient-to:rgb(var(--pink-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-7\/95{--tw-gradient-to:rgb(var(--pink-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/0{--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/10{--tw-gradient-to:rgb(var(--pink-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/100{--tw-gradient-to:rgb(var(--pink-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/20{--tw-gradient-to:rgb(var(--pink-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/25{--tw-gradient-to:rgb(var(--pink-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/30{--tw-gradient-to:rgb(var(--pink-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/40{--tw-gradient-to:rgb(var(--pink-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/5{--tw-gradient-to:rgb(var(--pink-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/50{--tw-gradient-to:rgb(var(--pink-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/60{--tw-gradient-to:rgb(var(--pink-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/70{--tw-gradient-to:rgb(var(--pink-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/75{--tw-gradient-to:rgb(var(--pink-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/80{--tw-gradient-to:rgb(var(--pink-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/90{--tw-gradient-to:rgb(var(--pink-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-8\/95{--tw-gradient-to:rgb(var(--pink-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/0{--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/10{--tw-gradient-to:rgb(var(--pink-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/100{--tw-gradient-to:rgb(var(--pink-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/20{--tw-gradient-to:rgb(var(--pink-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/25{--tw-gradient-to:rgb(var(--pink-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/30{--tw-gradient-to:rgb(var(--pink-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/40{--tw-gradient-to:rgb(var(--pink-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/5{--tw-gradient-to:rgb(var(--pink-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/50{--tw-gradient-to:rgb(var(--pink-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/60{--tw-gradient-to:rgb(var(--pink-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/70{--tw-gradient-to:rgb(var(--pink-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/75{--tw-gradient-to:rgb(var(--pink-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/80{--tw-gradient-to:rgb(var(--pink-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/90{--tw-gradient-to:rgb(var(--pink-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-pink-9\/95{--tw-gradient-to:rgb(var(--pink-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary{--tw-gradient-to:rgb(var(--primary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/0{--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/10{--tw-gradient-to:rgb(var(--primary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/100{--tw-gradient-to:rgb(var(--primary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/20{--tw-gradient-to:rgb(var(--primary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/25{--tw-gradient-to:rgb(var(--primary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/30{--tw-gradient-to:rgb(var(--primary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/40{--tw-gradient-to:rgb(var(--primary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/5{--tw-gradient-to:rgb(var(--primary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/50{--tw-gradient-to:rgb(var(--primary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/60{--tw-gradient-to:rgb(var(--primary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/70{--tw-gradient-to:rgb(var(--primary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/75{--tw-gradient-to:rgb(var(--primary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/80{--tw-gradient-to:rgb(var(--primary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/90{--tw-gradient-to:rgb(var(--primary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-primary\/95{--tw-gradient-to:rgb(var(--primary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/0{--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/10{--tw-gradient-to:rgb(var(--purple-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/100{--tw-gradient-to:rgb(var(--purple-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/20{--tw-gradient-to:rgb(var(--purple-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/25{--tw-gradient-to:rgb(var(--purple-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/30{--tw-gradient-to:rgb(var(--purple-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/40{--tw-gradient-to:rgb(var(--purple-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/5{--tw-gradient-to:rgb(var(--purple-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/50{--tw-gradient-to:rgb(var(--purple-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/60{--tw-gradient-to:rgb(var(--purple-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/70{--tw-gradient-to:rgb(var(--purple-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/75{--tw-gradient-to:rgb(var(--purple-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/80{--tw-gradient-to:rgb(var(--purple-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/90{--tw-gradient-to:rgb(var(--purple-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-1\/95{--tw-gradient-to:rgb(var(--purple-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/0{--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/10{--tw-gradient-to:rgb(var(--purple-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/100{--tw-gradient-to:rgb(var(--purple-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/20{--tw-gradient-to:rgb(var(--purple-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/25{--tw-gradient-to:rgb(var(--purple-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/30{--tw-gradient-to:rgb(var(--purple-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/40{--tw-gradient-to:rgb(var(--purple-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/5{--tw-gradient-to:rgb(var(--purple-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/50{--tw-gradient-to:rgb(var(--purple-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/60{--tw-gradient-to:rgb(var(--purple-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/70{--tw-gradient-to:rgb(var(--purple-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/75{--tw-gradient-to:rgb(var(--purple-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/80{--tw-gradient-to:rgb(var(--purple-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/90{--tw-gradient-to:rgb(var(--purple-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-10\/95{--tw-gradient-to:rgb(var(--purple-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/0{--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/10{--tw-gradient-to:rgb(var(--purple-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/100{--tw-gradient-to:rgb(var(--purple-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/20{--tw-gradient-to:rgb(var(--purple-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/25{--tw-gradient-to:rgb(var(--purple-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/30{--tw-gradient-to:rgb(var(--purple-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/40{--tw-gradient-to:rgb(var(--purple-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/5{--tw-gradient-to:rgb(var(--purple-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/50{--tw-gradient-to:rgb(var(--purple-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/60{--tw-gradient-to:rgb(var(--purple-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/70{--tw-gradient-to:rgb(var(--purple-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/75{--tw-gradient-to:rgb(var(--purple-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/80{--tw-gradient-to:rgb(var(--purple-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/90{--tw-gradient-to:rgb(var(--purple-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-2\/95{--tw-gradient-to:rgb(var(--purple-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/0{--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/10{--tw-gradient-to:rgb(var(--purple-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/100{--tw-gradient-to:rgb(var(--purple-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/20{--tw-gradient-to:rgb(var(--purple-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/25{--tw-gradient-to:rgb(var(--purple-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/30{--tw-gradient-to:rgb(var(--purple-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/40{--tw-gradient-to:rgb(var(--purple-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/5{--tw-gradient-to:rgb(var(--purple-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/50{--tw-gradient-to:rgb(var(--purple-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/60{--tw-gradient-to:rgb(var(--purple-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/70{--tw-gradient-to:rgb(var(--purple-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/75{--tw-gradient-to:rgb(var(--purple-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/80{--tw-gradient-to:rgb(var(--purple-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/90{--tw-gradient-to:rgb(var(--purple-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-3\/95{--tw-gradient-to:rgb(var(--purple-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/0{--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/10{--tw-gradient-to:rgb(var(--purple-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/100{--tw-gradient-to:rgb(var(--purple-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/20{--tw-gradient-to:rgb(var(--purple-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/25{--tw-gradient-to:rgb(var(--purple-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/30{--tw-gradient-to:rgb(var(--purple-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/40{--tw-gradient-to:rgb(var(--purple-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/5{--tw-gradient-to:rgb(var(--purple-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/50{--tw-gradient-to:rgb(var(--purple-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/60{--tw-gradient-to:rgb(var(--purple-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/70{--tw-gradient-to:rgb(var(--purple-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/75{--tw-gradient-to:rgb(var(--purple-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/80{--tw-gradient-to:rgb(var(--purple-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/90{--tw-gradient-to:rgb(var(--purple-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-4\/95{--tw-gradient-to:rgb(var(--purple-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/0{--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/10{--tw-gradient-to:rgb(var(--purple-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/100{--tw-gradient-to:rgb(var(--purple-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/20{--tw-gradient-to:rgb(var(--purple-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/25{--tw-gradient-to:rgb(var(--purple-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/30{--tw-gradient-to:rgb(var(--purple-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/40{--tw-gradient-to:rgb(var(--purple-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/5{--tw-gradient-to:rgb(var(--purple-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/50{--tw-gradient-to:rgb(var(--purple-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/60{--tw-gradient-to:rgb(var(--purple-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/70{--tw-gradient-to:rgb(var(--purple-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/75{--tw-gradient-to:rgb(var(--purple-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/80{--tw-gradient-to:rgb(var(--purple-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/90{--tw-gradient-to:rgb(var(--purple-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-5\/95{--tw-gradient-to:rgb(var(--purple-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/0{--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/10{--tw-gradient-to:rgb(var(--purple-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/100{--tw-gradient-to:rgb(var(--purple-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/20{--tw-gradient-to:rgb(var(--purple-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/25{--tw-gradient-to:rgb(var(--purple-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/30{--tw-gradient-to:rgb(var(--purple-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/40{--tw-gradient-to:rgb(var(--purple-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/5{--tw-gradient-to:rgb(var(--purple-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/50{--tw-gradient-to:rgb(var(--purple-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/60{--tw-gradient-to:rgb(var(--purple-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/70{--tw-gradient-to:rgb(var(--purple-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/75{--tw-gradient-to:rgb(var(--purple-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/80{--tw-gradient-to:rgb(var(--purple-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/90{--tw-gradient-to:rgb(var(--purple-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-6\/95{--tw-gradient-to:rgb(var(--purple-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/0{--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/10{--tw-gradient-to:rgb(var(--purple-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/100{--tw-gradient-to:rgb(var(--purple-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/20{--tw-gradient-to:rgb(var(--purple-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/25{--tw-gradient-to:rgb(var(--purple-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/30{--tw-gradient-to:rgb(var(--purple-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/40{--tw-gradient-to:rgb(var(--purple-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/5{--tw-gradient-to:rgb(var(--purple-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/50{--tw-gradient-to:rgb(var(--purple-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/60{--tw-gradient-to:rgb(var(--purple-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/70{--tw-gradient-to:rgb(var(--purple-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/75{--tw-gradient-to:rgb(var(--purple-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/80{--tw-gradient-to:rgb(var(--purple-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/90{--tw-gradient-to:rgb(var(--purple-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-7\/95{--tw-gradient-to:rgb(var(--purple-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/0{--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/10{--tw-gradient-to:rgb(var(--purple-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/100{--tw-gradient-to:rgb(var(--purple-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/20{--tw-gradient-to:rgb(var(--purple-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/25{--tw-gradient-to:rgb(var(--purple-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/30{--tw-gradient-to:rgb(var(--purple-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/40{--tw-gradient-to:rgb(var(--purple-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/5{--tw-gradient-to:rgb(var(--purple-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/50{--tw-gradient-to:rgb(var(--purple-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/60{--tw-gradient-to:rgb(var(--purple-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/70{--tw-gradient-to:rgb(var(--purple-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/75{--tw-gradient-to:rgb(var(--purple-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/80{--tw-gradient-to:rgb(var(--purple-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/90{--tw-gradient-to:rgb(var(--purple-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-8\/95{--tw-gradient-to:rgb(var(--purple-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/0{--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/10{--tw-gradient-to:rgb(var(--purple-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/100{--tw-gradient-to:rgb(var(--purple-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/20{--tw-gradient-to:rgb(var(--purple-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/25{--tw-gradient-to:rgb(var(--purple-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/30{--tw-gradient-to:rgb(var(--purple-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/40{--tw-gradient-to:rgb(var(--purple-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/5{--tw-gradient-to:rgb(var(--purple-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/50{--tw-gradient-to:rgb(var(--purple-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/60{--tw-gradient-to:rgb(var(--purple-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/70{--tw-gradient-to:rgb(var(--purple-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/75{--tw-gradient-to:rgb(var(--purple-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/80{--tw-gradient-to:rgb(var(--purple-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/90{--tw-gradient-to:rgb(var(--purple-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-purple-9\/95{--tw-gradient-to:rgb(var(--purple-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/0{--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/10{--tw-gradient-to:rgb(var(--red-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/100{--tw-gradient-to:rgb(var(--red-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/20{--tw-gradient-to:rgb(var(--red-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/25{--tw-gradient-to:rgb(var(--red-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/30{--tw-gradient-to:rgb(var(--red-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/40{--tw-gradient-to:rgb(var(--red-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/5{--tw-gradient-to:rgb(var(--red-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/50{--tw-gradient-to:rgb(var(--red-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/60{--tw-gradient-to:rgb(var(--red-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/70{--tw-gradient-to:rgb(var(--red-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/75{--tw-gradient-to:rgb(var(--red-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/80{--tw-gradient-to:rgb(var(--red-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/90{--tw-gradient-to:rgb(var(--red-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-1\/95{--tw-gradient-to:rgb(var(--red-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/0{--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/10{--tw-gradient-to:rgb(var(--red-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/100{--tw-gradient-to:rgb(var(--red-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/20{--tw-gradient-to:rgb(var(--red-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/25{--tw-gradient-to:rgb(var(--red-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/30{--tw-gradient-to:rgb(var(--red-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/40{--tw-gradient-to:rgb(var(--red-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/5{--tw-gradient-to:rgb(var(--red-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/50{--tw-gradient-to:rgb(var(--red-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/60{--tw-gradient-to:rgb(var(--red-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/70{--tw-gradient-to:rgb(var(--red-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/75{--tw-gradient-to:rgb(var(--red-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/80{--tw-gradient-to:rgb(var(--red-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/90{--tw-gradient-to:rgb(var(--red-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-10\/95{--tw-gradient-to:rgb(var(--red-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/0{--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/10{--tw-gradient-to:rgb(var(--red-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/100{--tw-gradient-to:rgb(var(--red-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/20{--tw-gradient-to:rgb(var(--red-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/25{--tw-gradient-to:rgb(var(--red-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/30{--tw-gradient-to:rgb(var(--red-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/40{--tw-gradient-to:rgb(var(--red-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/5{--tw-gradient-to:rgb(var(--red-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/50{--tw-gradient-to:rgb(var(--red-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/60{--tw-gradient-to:rgb(var(--red-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/70{--tw-gradient-to:rgb(var(--red-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/75{--tw-gradient-to:rgb(var(--red-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/80{--tw-gradient-to:rgb(var(--red-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/90{--tw-gradient-to:rgb(var(--red-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-2\/95{--tw-gradient-to:rgb(var(--red-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/0{--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/10{--tw-gradient-to:rgb(var(--red-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/100{--tw-gradient-to:rgb(var(--red-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/20{--tw-gradient-to:rgb(var(--red-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/25{--tw-gradient-to:rgb(var(--red-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/30{--tw-gradient-to:rgb(var(--red-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/40{--tw-gradient-to:rgb(var(--red-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/5{--tw-gradient-to:rgb(var(--red-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/50{--tw-gradient-to:rgb(var(--red-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/60{--tw-gradient-to:rgb(var(--red-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/70{--tw-gradient-to:rgb(var(--red-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/75{--tw-gradient-to:rgb(var(--red-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/80{--tw-gradient-to:rgb(var(--red-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/90{--tw-gradient-to:rgb(var(--red-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-3\/95{--tw-gradient-to:rgb(var(--red-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/0{--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/10{--tw-gradient-to:rgb(var(--red-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/100{--tw-gradient-to:rgb(var(--red-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/20{--tw-gradient-to:rgb(var(--red-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/25{--tw-gradient-to:rgb(var(--red-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/30{--tw-gradient-to:rgb(var(--red-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/40{--tw-gradient-to:rgb(var(--red-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/5{--tw-gradient-to:rgb(var(--red-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/50{--tw-gradient-to:rgb(var(--red-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/60{--tw-gradient-to:rgb(var(--red-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/70{--tw-gradient-to:rgb(var(--red-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/75{--tw-gradient-to:rgb(var(--red-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/80{--tw-gradient-to:rgb(var(--red-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/90{--tw-gradient-to:rgb(var(--red-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-4\/95{--tw-gradient-to:rgb(var(--red-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/0{--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/10{--tw-gradient-to:rgb(var(--red-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/100{--tw-gradient-to:rgb(var(--red-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/20{--tw-gradient-to:rgb(var(--red-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/25{--tw-gradient-to:rgb(var(--red-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/30{--tw-gradient-to:rgb(var(--red-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/40{--tw-gradient-to:rgb(var(--red-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/5{--tw-gradient-to:rgb(var(--red-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/50{--tw-gradient-to:rgb(var(--red-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/60{--tw-gradient-to:rgb(var(--red-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/70{--tw-gradient-to:rgb(var(--red-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/75{--tw-gradient-to:rgb(var(--red-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/80{--tw-gradient-to:rgb(var(--red-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/90{--tw-gradient-to:rgb(var(--red-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-5\/95{--tw-gradient-to:rgb(var(--red-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/0{--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/10{--tw-gradient-to:rgb(var(--red-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/100{--tw-gradient-to:rgb(var(--red-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/20{--tw-gradient-to:rgb(var(--red-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/25{--tw-gradient-to:rgb(var(--red-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/30{--tw-gradient-to:rgb(var(--red-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/40{--tw-gradient-to:rgb(var(--red-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/5{--tw-gradient-to:rgb(var(--red-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/50{--tw-gradient-to:rgb(var(--red-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/60{--tw-gradient-to:rgb(var(--red-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/70{--tw-gradient-to:rgb(var(--red-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/75{--tw-gradient-to:rgb(var(--red-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/80{--tw-gradient-to:rgb(var(--red-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/90{--tw-gradient-to:rgb(var(--red-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-6\/95{--tw-gradient-to:rgb(var(--red-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/0{--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/10{--tw-gradient-to:rgb(var(--red-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/100{--tw-gradient-to:rgb(var(--red-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/20{--tw-gradient-to:rgb(var(--red-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/25{--tw-gradient-to:rgb(var(--red-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/30{--tw-gradient-to:rgb(var(--red-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/40{--tw-gradient-to:rgb(var(--red-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/5{--tw-gradient-to:rgb(var(--red-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/50{--tw-gradient-to:rgb(var(--red-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/60{--tw-gradient-to:rgb(var(--red-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/70{--tw-gradient-to:rgb(var(--red-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/75{--tw-gradient-to:rgb(var(--red-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/80{--tw-gradient-to:rgb(var(--red-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/90{--tw-gradient-to:rgb(var(--red-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-7\/95{--tw-gradient-to:rgb(var(--red-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/0{--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/10{--tw-gradient-to:rgb(var(--red-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/100{--tw-gradient-to:rgb(var(--red-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/20{--tw-gradient-to:rgb(var(--red-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/25{--tw-gradient-to:rgb(var(--red-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/30{--tw-gradient-to:rgb(var(--red-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/40{--tw-gradient-to:rgb(var(--red-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/5{--tw-gradient-to:rgb(var(--red-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/50{--tw-gradient-to:rgb(var(--red-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/60{--tw-gradient-to:rgb(var(--red-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/70{--tw-gradient-to:rgb(var(--red-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/75{--tw-gradient-to:rgb(var(--red-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/80{--tw-gradient-to:rgb(var(--red-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/90{--tw-gradient-to:rgb(var(--red-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-8\/95{--tw-gradient-to:rgb(var(--red-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/0{--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/10{--tw-gradient-to:rgb(var(--red-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/100{--tw-gradient-to:rgb(var(--red-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/20{--tw-gradient-to:rgb(var(--red-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/25{--tw-gradient-to:rgb(var(--red-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/30{--tw-gradient-to:rgb(var(--red-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/40{--tw-gradient-to:rgb(var(--red-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/5{--tw-gradient-to:rgb(var(--red-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/50{--tw-gradient-to:rgb(var(--red-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/60{--tw-gradient-to:rgb(var(--red-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/70{--tw-gradient-to:rgb(var(--red-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/75{--tw-gradient-to:rgb(var(--red-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/80{--tw-gradient-to:rgb(var(--red-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/90{--tw-gradient-to:rgb(var(--red-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-red-9\/95{--tw-gradient-to:rgb(var(--red-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary{--tw-gradient-to:rgb(var(--secondary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/0{--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/10{--tw-gradient-to:rgb(var(--secondary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/100{--tw-gradient-to:rgb(var(--secondary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/20{--tw-gradient-to:rgb(var(--secondary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/25{--tw-gradient-to:rgb(var(--secondary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/30{--tw-gradient-to:rgb(var(--secondary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/40{--tw-gradient-to:rgb(var(--secondary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/5{--tw-gradient-to:rgb(var(--secondary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/50{--tw-gradient-to:rgb(var(--secondary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/60{--tw-gradient-to:rgb(var(--secondary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/70{--tw-gradient-to:rgb(var(--secondary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/75{--tw-gradient-to:rgb(var(--secondary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/80{--tw-gradient-to:rgb(var(--secondary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/90{--tw-gradient-to:rgb(var(--secondary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-secondary\/95{--tw-gradient-to:rgb(var(--secondary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/0{--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/10{--tw-gradient-to:rgb(var(--slate-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/100{--tw-gradient-to:rgb(var(--slate-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/20{--tw-gradient-to:rgb(var(--slate-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/25{--tw-gradient-to:rgb(var(--slate-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/30{--tw-gradient-to:rgb(var(--slate-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/40{--tw-gradient-to:rgb(var(--slate-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/5{--tw-gradient-to:rgb(var(--slate-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/50{--tw-gradient-to:rgb(var(--slate-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/60{--tw-gradient-to:rgb(var(--slate-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/70{--tw-gradient-to:rgb(var(--slate-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/75{--tw-gradient-to:rgb(var(--slate-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/80{--tw-gradient-to:rgb(var(--slate-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/90{--tw-gradient-to:rgb(var(--slate-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-1\/95{--tw-gradient-to:rgb(var(--slate-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/0{--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/10{--tw-gradient-to:rgb(var(--slate-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/100{--tw-gradient-to:rgb(var(--slate-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/20{--tw-gradient-to:rgb(var(--slate-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/25{--tw-gradient-to:rgb(var(--slate-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/30{--tw-gradient-to:rgb(var(--slate-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/40{--tw-gradient-to:rgb(var(--slate-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/5{--tw-gradient-to:rgb(var(--slate-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/50{--tw-gradient-to:rgb(var(--slate-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/60{--tw-gradient-to:rgb(var(--slate-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/70{--tw-gradient-to:rgb(var(--slate-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/75{--tw-gradient-to:rgb(var(--slate-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/80{--tw-gradient-to:rgb(var(--slate-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/90{--tw-gradient-to:rgb(var(--slate-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-10\/95{--tw-gradient-to:rgb(var(--slate-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/0{--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/10{--tw-gradient-to:rgb(var(--slate-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/100{--tw-gradient-to:rgb(var(--slate-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/20{--tw-gradient-to:rgb(var(--slate-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/25{--tw-gradient-to:rgb(var(--slate-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/30{--tw-gradient-to:rgb(var(--slate-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/40{--tw-gradient-to:rgb(var(--slate-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/5{--tw-gradient-to:rgb(var(--slate-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/50{--tw-gradient-to:rgb(var(--slate-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/60{--tw-gradient-to:rgb(var(--slate-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/70{--tw-gradient-to:rgb(var(--slate-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/75{--tw-gradient-to:rgb(var(--slate-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/80{--tw-gradient-to:rgb(var(--slate-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/90{--tw-gradient-to:rgb(var(--slate-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-2\/95{--tw-gradient-to:rgb(var(--slate-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/0{--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/10{--tw-gradient-to:rgb(var(--slate-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/100{--tw-gradient-to:rgb(var(--slate-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/20{--tw-gradient-to:rgb(var(--slate-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/25{--tw-gradient-to:rgb(var(--slate-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/30{--tw-gradient-to:rgb(var(--slate-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/40{--tw-gradient-to:rgb(var(--slate-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/5{--tw-gradient-to:rgb(var(--slate-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/50{--tw-gradient-to:rgb(var(--slate-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/60{--tw-gradient-to:rgb(var(--slate-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/70{--tw-gradient-to:rgb(var(--slate-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/75{--tw-gradient-to:rgb(var(--slate-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/80{--tw-gradient-to:rgb(var(--slate-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/90{--tw-gradient-to:rgb(var(--slate-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-3\/95{--tw-gradient-to:rgb(var(--slate-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/0{--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/10{--tw-gradient-to:rgb(var(--slate-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/100{--tw-gradient-to:rgb(var(--slate-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/20{--tw-gradient-to:rgb(var(--slate-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/25{--tw-gradient-to:rgb(var(--slate-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/30{--tw-gradient-to:rgb(var(--slate-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/40{--tw-gradient-to:rgb(var(--slate-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/5{--tw-gradient-to:rgb(var(--slate-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/50{--tw-gradient-to:rgb(var(--slate-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/60{--tw-gradient-to:rgb(var(--slate-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/70{--tw-gradient-to:rgb(var(--slate-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/75{--tw-gradient-to:rgb(var(--slate-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/80{--tw-gradient-to:rgb(var(--slate-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/90{--tw-gradient-to:rgb(var(--slate-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-4\/95{--tw-gradient-to:rgb(var(--slate-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/0{--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/10{--tw-gradient-to:rgb(var(--slate-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/100{--tw-gradient-to:rgb(var(--slate-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/20{--tw-gradient-to:rgb(var(--slate-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/25{--tw-gradient-to:rgb(var(--slate-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/30{--tw-gradient-to:rgb(var(--slate-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/40{--tw-gradient-to:rgb(var(--slate-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/5{--tw-gradient-to:rgb(var(--slate-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/50{--tw-gradient-to:rgb(var(--slate-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/60{--tw-gradient-to:rgb(var(--slate-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/70{--tw-gradient-to:rgb(var(--slate-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/75{--tw-gradient-to:rgb(var(--slate-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/80{--tw-gradient-to:rgb(var(--slate-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/90{--tw-gradient-to:rgb(var(--slate-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-5\/95{--tw-gradient-to:rgb(var(--slate-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/0{--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/10{--tw-gradient-to:rgb(var(--slate-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/100{--tw-gradient-to:rgb(var(--slate-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/20{--tw-gradient-to:rgb(var(--slate-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/25{--tw-gradient-to:rgb(var(--slate-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/30{--tw-gradient-to:rgb(var(--slate-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/40{--tw-gradient-to:rgb(var(--slate-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/5{--tw-gradient-to:rgb(var(--slate-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/50{--tw-gradient-to:rgb(var(--slate-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/60{--tw-gradient-to:rgb(var(--slate-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/70{--tw-gradient-to:rgb(var(--slate-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/75{--tw-gradient-to:rgb(var(--slate-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/80{--tw-gradient-to:rgb(var(--slate-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/90{--tw-gradient-to:rgb(var(--slate-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-6\/95{--tw-gradient-to:rgb(var(--slate-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/0{--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/10{--tw-gradient-to:rgb(var(--slate-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/100{--tw-gradient-to:rgb(var(--slate-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/20{--tw-gradient-to:rgb(var(--slate-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/25{--tw-gradient-to:rgb(var(--slate-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/30{--tw-gradient-to:rgb(var(--slate-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/40{--tw-gradient-to:rgb(var(--slate-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/5{--tw-gradient-to:rgb(var(--slate-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/50{--tw-gradient-to:rgb(var(--slate-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/60{--tw-gradient-to:rgb(var(--slate-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/70{--tw-gradient-to:rgb(var(--slate-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/75{--tw-gradient-to:rgb(var(--slate-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/80{--tw-gradient-to:rgb(var(--slate-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/90{--tw-gradient-to:rgb(var(--slate-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-7\/95{--tw-gradient-to:rgb(var(--slate-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/0{--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/10{--tw-gradient-to:rgb(var(--slate-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/100{--tw-gradient-to:rgb(var(--slate-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/20{--tw-gradient-to:rgb(var(--slate-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/25{--tw-gradient-to:rgb(var(--slate-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/30{--tw-gradient-to:rgb(var(--slate-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/40{--tw-gradient-to:rgb(var(--slate-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/5{--tw-gradient-to:rgb(var(--slate-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/50{--tw-gradient-to:rgb(var(--slate-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/60{--tw-gradient-to:rgb(var(--slate-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/70{--tw-gradient-to:rgb(var(--slate-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/75{--tw-gradient-to:rgb(var(--slate-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/80{--tw-gradient-to:rgb(var(--slate-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/90{--tw-gradient-to:rgb(var(--slate-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-8\/95{--tw-gradient-to:rgb(var(--slate-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/0{--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/10{--tw-gradient-to:rgb(var(--slate-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/100{--tw-gradient-to:rgb(var(--slate-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/20{--tw-gradient-to:rgb(var(--slate-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/25{--tw-gradient-to:rgb(var(--slate-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/30{--tw-gradient-to:rgb(var(--slate-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/40{--tw-gradient-to:rgb(var(--slate-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/5{--tw-gradient-to:rgb(var(--slate-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/50{--tw-gradient-to:rgb(var(--slate-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/60{--tw-gradient-to:rgb(var(--slate-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/70{--tw-gradient-to:rgb(var(--slate-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/75{--tw-gradient-to:rgb(var(--slate-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/80{--tw-gradient-to:rgb(var(--slate-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/90{--tw-gradient-to:rgb(var(--slate-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-slate-9\/95{--tw-gradient-to:rgb(var(--slate-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success{--tw-gradient-to:rgb(var(--success)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/0{--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/10{--tw-gradient-to:rgb(var(--success)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/100{--tw-gradient-to:rgb(var(--success)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/20{--tw-gradient-to:rgb(var(--success)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/25{--tw-gradient-to:rgb(var(--success)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/30{--tw-gradient-to:rgb(var(--success)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/40{--tw-gradient-to:rgb(var(--success)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/5{--tw-gradient-to:rgb(var(--success)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/50{--tw-gradient-to:rgb(var(--success)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/60{--tw-gradient-to:rgb(var(--success)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/70{--tw-gradient-to:rgb(var(--success)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/75{--tw-gradient-to:rgb(var(--success)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/80{--tw-gradient-to:rgb(var(--success)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/90{--tw-gradient-to:rgb(var(--success)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-success\/95{--tw-gradient-to:rgb(var(--success)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning{--tw-gradient-to:rgb(var(--warning)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/0{--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/10{--tw-gradient-to:rgb(var(--warning)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/100{--tw-gradient-to:rgb(var(--warning)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/20{--tw-gradient-to:rgb(var(--warning)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/25{--tw-gradient-to:rgb(var(--warning)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/30{--tw-gradient-to:rgb(var(--warning)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/40{--tw-gradient-to:rgb(var(--warning)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/5{--tw-gradient-to:rgb(var(--warning)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/50{--tw-gradient-to:rgb(var(--warning)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/60{--tw-gradient-to:rgb(var(--warning)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/70{--tw-gradient-to:rgb(var(--warning)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/75{--tw-gradient-to:rgb(var(--warning)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/80{--tw-gradient-to:rgb(var(--warning)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/90{--tw-gradient-to:rgb(var(--warning)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-warning\/95{--tw-gradient-to:rgb(var(--warning)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white{--tw-gradient-to:#fff var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/0{--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/10{--tw-gradient-to:hsla(0,0%,100%,.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/100{--tw-gradient-to:#fff var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/20{--tw-gradient-to:hsla(0,0%,100%,.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/25{--tw-gradient-to:hsla(0,0%,100%,.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/30{--tw-gradient-to:hsla(0,0%,100%,.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/40{--tw-gradient-to:hsla(0,0%,100%,.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/5{--tw-gradient-to:hsla(0,0%,100%,.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/50{--tw-gradient-to:hsla(0,0%,100%,.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/60{--tw-gradient-to:hsla(0,0%,100%,.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/70{--tw-gradient-to:hsla(0,0%,100%,.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/75{--tw-gradient-to:hsla(0,0%,100%,.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/80{--tw-gradient-to:hsla(0,0%,100%,.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/90{--tw-gradient-to:hsla(0,0%,100%,.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-white\/95{--tw-gradient-to:hsla(0,0%,100%,.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted{--tw-gradient-to:rgb(var(--whiteInverted)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/0{--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/10{--tw-gradient-to:rgb(var(--whiteInverted)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/100{--tw-gradient-to:rgb(var(--whiteInverted)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/20{--tw-gradient-to:rgb(var(--whiteInverted)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/25{--tw-gradient-to:rgb(var(--whiteInverted)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/30{--tw-gradient-to:rgb(var(--whiteInverted)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/40{--tw-gradient-to:rgb(var(--whiteInverted)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/5{--tw-gradient-to:rgb(var(--whiteInverted)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/50{--tw-gradient-to:rgb(var(--whiteInverted)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/60{--tw-gradient-to:rgb(var(--whiteInverted)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/70{--tw-gradient-to:rgb(var(--whiteInverted)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/75{--tw-gradient-to:rgb(var(--whiteInverted)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/80{--tw-gradient-to:rgb(var(--whiteInverted)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/90{--tw-gradient-to:rgb(var(--whiteInverted)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.to-whiteInverted\/95{--tw-gradient-to:rgb(var(--whiteInverted)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.fill-backgroundPrimary{fill:rgb(var(--backgroundPrimary))}.fill-backgroundPrimary\/0{fill:rgb(var(--backgroundPrimary)/0)}.fill-backgroundPrimary\/10{fill:rgb(var(--backgroundPrimary)/.1)}.fill-backgroundPrimary\/100{fill:rgb(var(--backgroundPrimary)/1)}.fill-backgroundPrimary\/20{fill:rgb(var(--backgroundPrimary)/.2)}.fill-backgroundPrimary\/25{fill:rgb(var(--backgroundPrimary)/.25)}.fill-backgroundPrimary\/30{fill:rgb(var(--backgroundPrimary)/.3)}.fill-backgroundPrimary\/40{fill:rgb(var(--backgroundPrimary)/.4)}.fill-backgroundPrimary\/5{fill:rgb(var(--backgroundPrimary)/.05)}.fill-backgroundPrimary\/50{fill:rgb(var(--backgroundPrimary)/.5)}.fill-backgroundPrimary\/60{fill:rgb(var(--backgroundPrimary)/.6)}.fill-backgroundPrimary\/70{fill:rgb(var(--backgroundPrimary)/.7)}.fill-backgroundPrimary\/75{fill:rgb(var(--backgroundPrimary)/.75)}.fill-backgroundPrimary\/80{fill:rgb(var(--backgroundPrimary)/.8)}.fill-backgroundPrimary\/90{fill:rgb(var(--backgroundPrimary)/.9)}.fill-backgroundPrimary\/95{fill:rgb(var(--backgroundPrimary)/.95)}.fill-backgroundSecondary{fill:rgb(var(--backgroundSecondary))}.fill-backgroundSecondary\/0{fill:rgb(var(--backgroundSecondary)/0)}.fill-backgroundSecondary\/10{fill:rgb(var(--backgroundSecondary)/.1)}.fill-backgroundSecondary\/100{fill:rgb(var(--backgroundSecondary)/1)}.fill-backgroundSecondary\/20{fill:rgb(var(--backgroundSecondary)/.2)}.fill-backgroundSecondary\/25{fill:rgb(var(--backgroundSecondary)/.25)}.fill-backgroundSecondary\/30{fill:rgb(var(--backgroundSecondary)/.3)}.fill-backgroundSecondary\/40{fill:rgb(var(--backgroundSecondary)/.4)}.fill-backgroundSecondary\/5{fill:rgb(var(--backgroundSecondary)/.05)}.fill-backgroundSecondary\/50{fill:rgb(var(--backgroundSecondary)/.5)}.fill-backgroundSecondary\/60{fill:rgb(var(--backgroundSecondary)/.6)}.fill-backgroundSecondary\/70{fill:rgb(var(--backgroundSecondary)/.7)}.fill-backgroundSecondary\/75{fill:rgb(var(--backgroundSecondary)/.75)}.fill-backgroundSecondary\/80{fill:rgb(var(--backgroundSecondary)/.8)}.fill-backgroundSecondary\/90{fill:rgb(var(--backgroundSecondary)/.9)}.fill-backgroundSecondary\/95{fill:rgb(var(--backgroundSecondary)/.95)}.fill-black{fill:#000}.fill-black\/0{fill:transparent}.fill-black\/10{fill:rgba(0,0,0,.1)}.fill-black\/100{fill:#000}.fill-black\/20{fill:rgba(0,0,0,.2)}.fill-black\/25{fill:rgba(0,0,0,.25)}.fill-black\/30{fill:rgba(0,0,0,.3)}.fill-black\/40{fill:rgba(0,0,0,.4)}.fill-black\/5{fill:rgba(0,0,0,.05)}.fill-black\/50{fill:rgba(0,0,0,.5)}.fill-black\/60{fill:rgba(0,0,0,.6)}.fill-black\/70{fill:rgba(0,0,0,.7)}.fill-black\/75{fill:rgba(0,0,0,.75)}.fill-black\/80{fill:rgba(0,0,0,.8)}.fill-black\/90{fill:rgba(0,0,0,.9)}.fill-black\/95{fill:rgba(0,0,0,.95)}.fill-blackInverted{fill:rgb(var(--blackInverted))}.fill-blackInverted\/0{fill:rgb(var(--blackInverted)/0)}.fill-blackInverted\/10{fill:rgb(var(--blackInverted)/.1)}.fill-blackInverted\/100{fill:rgb(var(--blackInverted)/1)}.fill-blackInverted\/20{fill:rgb(var(--blackInverted)/.2)}.fill-blackInverted\/25{fill:rgb(var(--blackInverted)/.25)}.fill-blackInverted\/30{fill:rgb(var(--blackInverted)/.3)}.fill-blackInverted\/40{fill:rgb(var(--blackInverted)/.4)}.fill-blackInverted\/5{fill:rgb(var(--blackInverted)/.05)}.fill-blackInverted\/50{fill:rgb(var(--blackInverted)/.5)}.fill-blackInverted\/60{fill:rgb(var(--blackInverted)/.6)}.fill-blackInverted\/70{fill:rgb(var(--blackInverted)/.7)}.fill-blackInverted\/75{fill:rgb(var(--blackInverted)/.75)}.fill-blackInverted\/80{fill:rgb(var(--blackInverted)/.8)}.fill-blackInverted\/90{fill:rgb(var(--blackInverted)/.9)}.fill-blackInverted\/95{fill:rgb(var(--blackInverted)/.95)}.fill-blue-1\/0{fill:rgb(var(--blue-1)/0)}.fill-blue-1\/10{fill:rgb(var(--blue-1)/.1)}.fill-blue-1\/100{fill:rgb(var(--blue-1)/1)}.fill-blue-1\/20{fill:rgb(var(--blue-1)/.2)}.fill-blue-1\/25{fill:rgb(var(--blue-1)/.25)}.fill-blue-1\/30{fill:rgb(var(--blue-1)/.3)}.fill-blue-1\/40{fill:rgb(var(--blue-1)/.4)}.fill-blue-1\/5{fill:rgb(var(--blue-1)/.05)}.fill-blue-1\/50{fill:rgb(var(--blue-1)/.5)}.fill-blue-1\/60{fill:rgb(var(--blue-1)/.6)}.fill-blue-1\/70{fill:rgb(var(--blue-1)/.7)}.fill-blue-1\/75{fill:rgb(var(--blue-1)/.75)}.fill-blue-1\/80{fill:rgb(var(--blue-1)/.8)}.fill-blue-1\/90{fill:rgb(var(--blue-1)/.9)}.fill-blue-1\/95{fill:rgb(var(--blue-1)/.95)}.fill-blue-10\/0{fill:rgb(var(--blue-10)/0)}.fill-blue-10\/10{fill:rgb(var(--blue-10)/.1)}.fill-blue-10\/100{fill:rgb(var(--blue-10)/1)}.fill-blue-10\/20{fill:rgb(var(--blue-10)/.2)}.fill-blue-10\/25{fill:rgb(var(--blue-10)/.25)}.fill-blue-10\/30{fill:rgb(var(--blue-10)/.3)}.fill-blue-10\/40{fill:rgb(var(--blue-10)/.4)}.fill-blue-10\/5{fill:rgb(var(--blue-10)/.05)}.fill-blue-10\/50{fill:rgb(var(--blue-10)/.5)}.fill-blue-10\/60{fill:rgb(var(--blue-10)/.6)}.fill-blue-10\/70{fill:rgb(var(--blue-10)/.7)}.fill-blue-10\/75{fill:rgb(var(--blue-10)/.75)}.fill-blue-10\/80{fill:rgb(var(--blue-10)/.8)}.fill-blue-10\/90{fill:rgb(var(--blue-10)/.9)}.fill-blue-10\/95{fill:rgb(var(--blue-10)/.95)}.fill-blue-2\/0{fill:rgb(var(--blue-2)/0)}.fill-blue-2\/10{fill:rgb(var(--blue-2)/.1)}.fill-blue-2\/100{fill:rgb(var(--blue-2)/1)}.fill-blue-2\/20{fill:rgb(var(--blue-2)/.2)}.fill-blue-2\/25{fill:rgb(var(--blue-2)/.25)}.fill-blue-2\/30{fill:rgb(var(--blue-2)/.3)}.fill-blue-2\/40{fill:rgb(var(--blue-2)/.4)}.fill-blue-2\/5{fill:rgb(var(--blue-2)/.05)}.fill-blue-2\/50{fill:rgb(var(--blue-2)/.5)}.fill-blue-2\/60{fill:rgb(var(--blue-2)/.6)}.fill-blue-2\/70{fill:rgb(var(--blue-2)/.7)}.fill-blue-2\/75{fill:rgb(var(--blue-2)/.75)}.fill-blue-2\/80{fill:rgb(var(--blue-2)/.8)}.fill-blue-2\/90{fill:rgb(var(--blue-2)/.9)}.fill-blue-2\/95{fill:rgb(var(--blue-2)/.95)}.fill-blue-3\/0{fill:rgb(var(--blue-3)/0)}.fill-blue-3\/10{fill:rgb(var(--blue-3)/.1)}.fill-blue-3\/100{fill:rgb(var(--blue-3)/1)}.fill-blue-3\/20{fill:rgb(var(--blue-3)/.2)}.fill-blue-3\/25{fill:rgb(var(--blue-3)/.25)}.fill-blue-3\/30{fill:rgb(var(--blue-3)/.3)}.fill-blue-3\/40{fill:rgb(var(--blue-3)/.4)}.fill-blue-3\/5{fill:rgb(var(--blue-3)/.05)}.fill-blue-3\/50{fill:rgb(var(--blue-3)/.5)}.fill-blue-3\/60{fill:rgb(var(--blue-3)/.6)}.fill-blue-3\/70{fill:rgb(var(--blue-3)/.7)}.fill-blue-3\/75{fill:rgb(var(--blue-3)/.75)}.fill-blue-3\/80{fill:rgb(var(--blue-3)/.8)}.fill-blue-3\/90{fill:rgb(var(--blue-3)/.9)}.fill-blue-3\/95{fill:rgb(var(--blue-3)/.95)}.fill-blue-4\/0{fill:rgb(var(--blue-4)/0)}.fill-blue-4\/10{fill:rgb(var(--blue-4)/.1)}.fill-blue-4\/100{fill:rgb(var(--blue-4)/1)}.fill-blue-4\/20{fill:rgb(var(--blue-4)/.2)}.fill-blue-4\/25{fill:rgb(var(--blue-4)/.25)}.fill-blue-4\/30{fill:rgb(var(--blue-4)/.3)}.fill-blue-4\/40{fill:rgb(var(--blue-4)/.4)}.fill-blue-4\/5{fill:rgb(var(--blue-4)/.05)}.fill-blue-4\/50{fill:rgb(var(--blue-4)/.5)}.fill-blue-4\/60{fill:rgb(var(--blue-4)/.6)}.fill-blue-4\/70{fill:rgb(var(--blue-4)/.7)}.fill-blue-4\/75{fill:rgb(var(--blue-4)/.75)}.fill-blue-4\/80{fill:rgb(var(--blue-4)/.8)}.fill-blue-4\/90{fill:rgb(var(--blue-4)/.9)}.fill-blue-4\/95{fill:rgb(var(--blue-4)/.95)}.fill-blue-5\/0{fill:rgb(var(--blue-5)/0)}.fill-blue-5\/10{fill:rgb(var(--blue-5)/.1)}.fill-blue-5\/100{fill:rgb(var(--blue-5)/1)}.fill-blue-5\/20{fill:rgb(var(--blue-5)/.2)}.fill-blue-5\/25{fill:rgb(var(--blue-5)/.25)}.fill-blue-5\/30{fill:rgb(var(--blue-5)/.3)}.fill-blue-5\/40{fill:rgb(var(--blue-5)/.4)}.fill-blue-5\/5{fill:rgb(var(--blue-5)/.05)}.fill-blue-5\/50{fill:rgb(var(--blue-5)/.5)}.fill-blue-5\/60{fill:rgb(var(--blue-5)/.6)}.fill-blue-5\/70{fill:rgb(var(--blue-5)/.7)}.fill-blue-5\/75{fill:rgb(var(--blue-5)/.75)}.fill-blue-5\/80{fill:rgb(var(--blue-5)/.8)}.fill-blue-5\/90{fill:rgb(var(--blue-5)/.9)}.fill-blue-5\/95{fill:rgb(var(--blue-5)/.95)}.fill-blue-6\/0{fill:rgb(var(--blue-6)/0)}.fill-blue-6\/10{fill:rgb(var(--blue-6)/.1)}.fill-blue-6\/100{fill:rgb(var(--blue-6)/1)}.fill-blue-6\/20{fill:rgb(var(--blue-6)/.2)}.fill-blue-6\/25{fill:rgb(var(--blue-6)/.25)}.fill-blue-6\/30{fill:rgb(var(--blue-6)/.3)}.fill-blue-6\/40{fill:rgb(var(--blue-6)/.4)}.fill-blue-6\/5{fill:rgb(var(--blue-6)/.05)}.fill-blue-6\/50{fill:rgb(var(--blue-6)/.5)}.fill-blue-6\/60{fill:rgb(var(--blue-6)/.6)}.fill-blue-6\/70{fill:rgb(var(--blue-6)/.7)}.fill-blue-6\/75{fill:rgb(var(--blue-6)/.75)}.fill-blue-6\/80{fill:rgb(var(--blue-6)/.8)}.fill-blue-6\/90{fill:rgb(var(--blue-6)/.9)}.fill-blue-6\/95{fill:rgb(var(--blue-6)/.95)}.fill-blue-7\/0{fill:rgb(var(--blue-7)/0)}.fill-blue-7\/10{fill:rgb(var(--blue-7)/.1)}.fill-blue-7\/100{fill:rgb(var(--blue-7)/1)}.fill-blue-7\/20{fill:rgb(var(--blue-7)/.2)}.fill-blue-7\/25{fill:rgb(var(--blue-7)/.25)}.fill-blue-7\/30{fill:rgb(var(--blue-7)/.3)}.fill-blue-7\/40{fill:rgb(var(--blue-7)/.4)}.fill-blue-7\/5{fill:rgb(var(--blue-7)/.05)}.fill-blue-7\/50{fill:rgb(var(--blue-7)/.5)}.fill-blue-7\/60{fill:rgb(var(--blue-7)/.6)}.fill-blue-7\/70{fill:rgb(var(--blue-7)/.7)}.fill-blue-7\/75{fill:rgb(var(--blue-7)/.75)}.fill-blue-7\/80{fill:rgb(var(--blue-7)/.8)}.fill-blue-7\/90{fill:rgb(var(--blue-7)/.9)}.fill-blue-7\/95{fill:rgb(var(--blue-7)/.95)}.fill-blue-8\/0{fill:rgb(var(--blue-8)/0)}.fill-blue-8\/10{fill:rgb(var(--blue-8)/.1)}.fill-blue-8\/100{fill:rgb(var(--blue-8)/1)}.fill-blue-8\/20{fill:rgb(var(--blue-8)/.2)}.fill-blue-8\/25{fill:rgb(var(--blue-8)/.25)}.fill-blue-8\/30{fill:rgb(var(--blue-8)/.3)}.fill-blue-8\/40{fill:rgb(var(--blue-8)/.4)}.fill-blue-8\/5{fill:rgb(var(--blue-8)/.05)}.fill-blue-8\/50{fill:rgb(var(--blue-8)/.5)}.fill-blue-8\/60{fill:rgb(var(--blue-8)/.6)}.fill-blue-8\/70{fill:rgb(var(--blue-8)/.7)}.fill-blue-8\/75{fill:rgb(var(--blue-8)/.75)}.fill-blue-8\/80{fill:rgb(var(--blue-8)/.8)}.fill-blue-8\/90{fill:rgb(var(--blue-8)/.9)}.fill-blue-8\/95{fill:rgb(var(--blue-8)/.95)}.fill-blue-9\/0{fill:rgb(var(--blue-9)/0)}.fill-blue-9\/10{fill:rgb(var(--blue-9)/.1)}.fill-blue-9\/100{fill:rgb(var(--blue-9)/1)}.fill-blue-9\/20{fill:rgb(var(--blue-9)/.2)}.fill-blue-9\/25{fill:rgb(var(--blue-9)/.25)}.fill-blue-9\/30{fill:rgb(var(--blue-9)/.3)}.fill-blue-9\/40{fill:rgb(var(--blue-9)/.4)}.fill-blue-9\/5{fill:rgb(var(--blue-9)/.05)}.fill-blue-9\/50{fill:rgb(var(--blue-9)/.5)}.fill-blue-9\/60{fill:rgb(var(--blue-9)/.6)}.fill-blue-9\/70{fill:rgb(var(--blue-9)/.7)}.fill-blue-9\/75{fill:rgb(var(--blue-9)/.75)}.fill-blue-9\/80{fill:rgb(var(--blue-9)/.8)}.fill-blue-9\/90{fill:rgb(var(--blue-9)/.9)}.fill-blue-9\/95{fill:rgb(var(--blue-9)/.95)}.fill-border{fill:rgb(var(--border))}.fill-border\/0{fill:rgb(var(--border)/0)}.fill-border\/10{fill:rgb(var(--border)/.1)}.fill-border\/100{fill:rgb(var(--border)/1)}.fill-border\/20{fill:rgb(var(--border)/.2)}.fill-border\/25{fill:rgb(var(--border)/.25)}.fill-border\/30{fill:rgb(var(--border)/.3)}.fill-border\/40{fill:rgb(var(--border)/.4)}.fill-border\/5{fill:rgb(var(--border)/.05)}.fill-border\/50{fill:rgb(var(--border)/.5)}.fill-border\/60{fill:rgb(var(--border)/.6)}.fill-border\/70{fill:rgb(var(--border)/.7)}.fill-border\/75{fill:rgb(var(--border)/.75)}.fill-border\/80{fill:rgb(var(--border)/.8)}.fill-border\/90{fill:rgb(var(--border)/.9)}.fill-border\/95{fill:rgb(var(--border)/.95)}.fill-content1{fill:rgb(var(--content1))}.fill-content1\/0{fill:rgb(var(--content1)/0)}.fill-content1\/10{fill:rgb(var(--content1)/.1)}.fill-content1\/100{fill:rgb(var(--content1)/1)}.fill-content1\/20{fill:rgb(var(--content1)/.2)}.fill-content1\/25{fill:rgb(var(--content1)/.25)}.fill-content1\/30{fill:rgb(var(--content1)/.3)}.fill-content1\/40{fill:rgb(var(--content1)/.4)}.fill-content1\/5{fill:rgb(var(--content1)/.05)}.fill-content1\/50{fill:rgb(var(--content1)/.5)}.fill-content1\/60{fill:rgb(var(--content1)/.6)}.fill-content1\/70{fill:rgb(var(--content1)/.7)}.fill-content1\/75{fill:rgb(var(--content1)/.75)}.fill-content1\/80{fill:rgb(var(--content1)/.8)}.fill-content1\/90{fill:rgb(var(--content1)/.9)}.fill-content1\/95{fill:rgb(var(--content1)/.95)}.fill-content2{fill:rgb(var(--content2))}.fill-content2\/0{fill:rgb(var(--content2)/0)}.fill-content2\/10{fill:rgb(var(--content2)/.1)}.fill-content2\/100{fill:rgb(var(--content2)/1)}.fill-content2\/20{fill:rgb(var(--content2)/.2)}.fill-content2\/25{fill:rgb(var(--content2)/.25)}.fill-content2\/30{fill:rgb(var(--content2)/.3)}.fill-content2\/40{fill:rgb(var(--content2)/.4)}.fill-content2\/5{fill:rgb(var(--content2)/.05)}.fill-content2\/50{fill:rgb(var(--content2)/.5)}.fill-content2\/60{fill:rgb(var(--content2)/.6)}.fill-content2\/70{fill:rgb(var(--content2)/.7)}.fill-content2\/75{fill:rgb(var(--content2)/.75)}.fill-content2\/80{fill:rgb(var(--content2)/.8)}.fill-content2\/90{fill:rgb(var(--content2)/.9)}.fill-content2\/95{fill:rgb(var(--content2)/.95)}.fill-content3{fill:rgb(var(--content3))}.fill-content3\/0{fill:rgb(var(--content3)/0)}.fill-content3\/10{fill:rgb(var(--content3)/.1)}.fill-content3\/100{fill:rgb(var(--content3)/1)}.fill-content3\/20{fill:rgb(var(--content3)/.2)}.fill-content3\/25{fill:rgb(var(--content3)/.25)}.fill-content3\/30{fill:rgb(var(--content3)/.3)}.fill-content3\/40{fill:rgb(var(--content3)/.4)}.fill-content3\/5{fill:rgb(var(--content3)/.05)}.fill-content3\/50{fill:rgb(var(--content3)/.5)}.fill-content3\/60{fill:rgb(var(--content3)/.6)}.fill-content3\/70{fill:rgb(var(--content3)/.7)}.fill-content3\/75{fill:rgb(var(--content3)/.75)}.fill-content3\/80{fill:rgb(var(--content3)/.8)}.fill-content3\/90{fill:rgb(var(--content3)/.9)}.fill-content3\/95{fill:rgb(var(--content3)/.95)}.fill-cyan-1\/0{fill:rgb(var(--cyan-1)/0)}.fill-cyan-1\/10{fill:rgb(var(--cyan-1)/.1)}.fill-cyan-1\/100{fill:rgb(var(--cyan-1)/1)}.fill-cyan-1\/20{fill:rgb(var(--cyan-1)/.2)}.fill-cyan-1\/25{fill:rgb(var(--cyan-1)/.25)}.fill-cyan-1\/30{fill:rgb(var(--cyan-1)/.3)}.fill-cyan-1\/40{fill:rgb(var(--cyan-1)/.4)}.fill-cyan-1\/5{fill:rgb(var(--cyan-1)/.05)}.fill-cyan-1\/50{fill:rgb(var(--cyan-1)/.5)}.fill-cyan-1\/60{fill:rgb(var(--cyan-1)/.6)}.fill-cyan-1\/70{fill:rgb(var(--cyan-1)/.7)}.fill-cyan-1\/75{fill:rgb(var(--cyan-1)/.75)}.fill-cyan-1\/80{fill:rgb(var(--cyan-1)/.8)}.fill-cyan-1\/90{fill:rgb(var(--cyan-1)/.9)}.fill-cyan-1\/95{fill:rgb(var(--cyan-1)/.95)}.fill-cyan-10\/0{fill:rgb(var(--cyan-10)/0)}.fill-cyan-10\/10{fill:rgb(var(--cyan-10)/.1)}.fill-cyan-10\/100{fill:rgb(var(--cyan-10)/1)}.fill-cyan-10\/20{fill:rgb(var(--cyan-10)/.2)}.fill-cyan-10\/25{fill:rgb(var(--cyan-10)/.25)}.fill-cyan-10\/30{fill:rgb(var(--cyan-10)/.3)}.fill-cyan-10\/40{fill:rgb(var(--cyan-10)/.4)}.fill-cyan-10\/5{fill:rgb(var(--cyan-10)/.05)}.fill-cyan-10\/50{fill:rgb(var(--cyan-10)/.5)}.fill-cyan-10\/60{fill:rgb(var(--cyan-10)/.6)}.fill-cyan-10\/70{fill:rgb(var(--cyan-10)/.7)}.fill-cyan-10\/75{fill:rgb(var(--cyan-10)/.75)}.fill-cyan-10\/80{fill:rgb(var(--cyan-10)/.8)}.fill-cyan-10\/90{fill:rgb(var(--cyan-10)/.9)}.fill-cyan-10\/95{fill:rgb(var(--cyan-10)/.95)}.fill-cyan-2\/0{fill:rgb(var(--cyan-2)/0)}.fill-cyan-2\/10{fill:rgb(var(--cyan-2)/.1)}.fill-cyan-2\/100{fill:rgb(var(--cyan-2)/1)}.fill-cyan-2\/20{fill:rgb(var(--cyan-2)/.2)}.fill-cyan-2\/25{fill:rgb(var(--cyan-2)/.25)}.fill-cyan-2\/30{fill:rgb(var(--cyan-2)/.3)}.fill-cyan-2\/40{fill:rgb(var(--cyan-2)/.4)}.fill-cyan-2\/5{fill:rgb(var(--cyan-2)/.05)}.fill-cyan-2\/50{fill:rgb(var(--cyan-2)/.5)}.fill-cyan-2\/60{fill:rgb(var(--cyan-2)/.6)}.fill-cyan-2\/70{fill:rgb(var(--cyan-2)/.7)}.fill-cyan-2\/75{fill:rgb(var(--cyan-2)/.75)}.fill-cyan-2\/80{fill:rgb(var(--cyan-2)/.8)}.fill-cyan-2\/90{fill:rgb(var(--cyan-2)/.9)}.fill-cyan-2\/95{fill:rgb(var(--cyan-2)/.95)}.fill-cyan-3\/0{fill:rgb(var(--cyan-3)/0)}.fill-cyan-3\/10{fill:rgb(var(--cyan-3)/.1)}.fill-cyan-3\/100{fill:rgb(var(--cyan-3)/1)}.fill-cyan-3\/20{fill:rgb(var(--cyan-3)/.2)}.fill-cyan-3\/25{fill:rgb(var(--cyan-3)/.25)}.fill-cyan-3\/30{fill:rgb(var(--cyan-3)/.3)}.fill-cyan-3\/40{fill:rgb(var(--cyan-3)/.4)}.fill-cyan-3\/5{fill:rgb(var(--cyan-3)/.05)}.fill-cyan-3\/50{fill:rgb(var(--cyan-3)/.5)}.fill-cyan-3\/60{fill:rgb(var(--cyan-3)/.6)}.fill-cyan-3\/70{fill:rgb(var(--cyan-3)/.7)}.fill-cyan-3\/75{fill:rgb(var(--cyan-3)/.75)}.fill-cyan-3\/80{fill:rgb(var(--cyan-3)/.8)}.fill-cyan-3\/90{fill:rgb(var(--cyan-3)/.9)}.fill-cyan-3\/95{fill:rgb(var(--cyan-3)/.95)}.fill-cyan-4\/0{fill:rgb(var(--cyan-4)/0)}.fill-cyan-4\/10{fill:rgb(var(--cyan-4)/.1)}.fill-cyan-4\/100{fill:rgb(var(--cyan-4)/1)}.fill-cyan-4\/20{fill:rgb(var(--cyan-4)/.2)}.fill-cyan-4\/25{fill:rgb(var(--cyan-4)/.25)}.fill-cyan-4\/30{fill:rgb(var(--cyan-4)/.3)}.fill-cyan-4\/40{fill:rgb(var(--cyan-4)/.4)}.fill-cyan-4\/5{fill:rgb(var(--cyan-4)/.05)}.fill-cyan-4\/50{fill:rgb(var(--cyan-4)/.5)}.fill-cyan-4\/60{fill:rgb(var(--cyan-4)/.6)}.fill-cyan-4\/70{fill:rgb(var(--cyan-4)/.7)}.fill-cyan-4\/75{fill:rgb(var(--cyan-4)/.75)}.fill-cyan-4\/80{fill:rgb(var(--cyan-4)/.8)}.fill-cyan-4\/90{fill:rgb(var(--cyan-4)/.9)}.fill-cyan-4\/95{fill:rgb(var(--cyan-4)/.95)}.fill-cyan-5\/0{fill:rgb(var(--cyan-5)/0)}.fill-cyan-5\/10{fill:rgb(var(--cyan-5)/.1)}.fill-cyan-5\/100{fill:rgb(var(--cyan-5)/1)}.fill-cyan-5\/20{fill:rgb(var(--cyan-5)/.2)}.fill-cyan-5\/25{fill:rgb(var(--cyan-5)/.25)}.fill-cyan-5\/30{fill:rgb(var(--cyan-5)/.3)}.fill-cyan-5\/40{fill:rgb(var(--cyan-5)/.4)}.fill-cyan-5\/5{fill:rgb(var(--cyan-5)/.05)}.fill-cyan-5\/50{fill:rgb(var(--cyan-5)/.5)}.fill-cyan-5\/60{fill:rgb(var(--cyan-5)/.6)}.fill-cyan-5\/70{fill:rgb(var(--cyan-5)/.7)}.fill-cyan-5\/75{fill:rgb(var(--cyan-5)/.75)}.fill-cyan-5\/80{fill:rgb(var(--cyan-5)/.8)}.fill-cyan-5\/90{fill:rgb(var(--cyan-5)/.9)}.fill-cyan-5\/95{fill:rgb(var(--cyan-5)/.95)}.fill-cyan-6\/0{fill:rgb(var(--cyan-6)/0)}.fill-cyan-6\/10{fill:rgb(var(--cyan-6)/.1)}.fill-cyan-6\/100{fill:rgb(var(--cyan-6)/1)}.fill-cyan-6\/20{fill:rgb(var(--cyan-6)/.2)}.fill-cyan-6\/25{fill:rgb(var(--cyan-6)/.25)}.fill-cyan-6\/30{fill:rgb(var(--cyan-6)/.3)}.fill-cyan-6\/40{fill:rgb(var(--cyan-6)/.4)}.fill-cyan-6\/5{fill:rgb(var(--cyan-6)/.05)}.fill-cyan-6\/50{fill:rgb(var(--cyan-6)/.5)}.fill-cyan-6\/60{fill:rgb(var(--cyan-6)/.6)}.fill-cyan-6\/70{fill:rgb(var(--cyan-6)/.7)}.fill-cyan-6\/75{fill:rgb(var(--cyan-6)/.75)}.fill-cyan-6\/80{fill:rgb(var(--cyan-6)/.8)}.fill-cyan-6\/90{fill:rgb(var(--cyan-6)/.9)}.fill-cyan-6\/95{fill:rgb(var(--cyan-6)/.95)}.fill-cyan-7\/0{fill:rgb(var(--cyan-7)/0)}.fill-cyan-7\/10{fill:rgb(var(--cyan-7)/.1)}.fill-cyan-7\/100{fill:rgb(var(--cyan-7)/1)}.fill-cyan-7\/20{fill:rgb(var(--cyan-7)/.2)}.fill-cyan-7\/25{fill:rgb(var(--cyan-7)/.25)}.fill-cyan-7\/30{fill:rgb(var(--cyan-7)/.3)}.fill-cyan-7\/40{fill:rgb(var(--cyan-7)/.4)}.fill-cyan-7\/5{fill:rgb(var(--cyan-7)/.05)}.fill-cyan-7\/50{fill:rgb(var(--cyan-7)/.5)}.fill-cyan-7\/60{fill:rgb(var(--cyan-7)/.6)}.fill-cyan-7\/70{fill:rgb(var(--cyan-7)/.7)}.fill-cyan-7\/75{fill:rgb(var(--cyan-7)/.75)}.fill-cyan-7\/80{fill:rgb(var(--cyan-7)/.8)}.fill-cyan-7\/90{fill:rgb(var(--cyan-7)/.9)}.fill-cyan-7\/95{fill:rgb(var(--cyan-7)/.95)}.fill-cyan-8\/0{fill:rgb(var(--cyan-8)/0)}.fill-cyan-8\/10{fill:rgb(var(--cyan-8)/.1)}.fill-cyan-8\/100{fill:rgb(var(--cyan-8)/1)}.fill-cyan-8\/20{fill:rgb(var(--cyan-8)/.2)}.fill-cyan-8\/25{fill:rgb(var(--cyan-8)/.25)}.fill-cyan-8\/30{fill:rgb(var(--cyan-8)/.3)}.fill-cyan-8\/40{fill:rgb(var(--cyan-8)/.4)}.fill-cyan-8\/5{fill:rgb(var(--cyan-8)/.05)}.fill-cyan-8\/50{fill:rgb(var(--cyan-8)/.5)}.fill-cyan-8\/60{fill:rgb(var(--cyan-8)/.6)}.fill-cyan-8\/70{fill:rgb(var(--cyan-8)/.7)}.fill-cyan-8\/75{fill:rgb(var(--cyan-8)/.75)}.fill-cyan-8\/80{fill:rgb(var(--cyan-8)/.8)}.fill-cyan-8\/90{fill:rgb(var(--cyan-8)/.9)}.fill-cyan-8\/95{fill:rgb(var(--cyan-8)/.95)}.fill-cyan-9\/0{fill:rgb(var(--cyan-9)/0)}.fill-cyan-9\/10{fill:rgb(var(--cyan-9)/.1)}.fill-cyan-9\/100{fill:rgb(var(--cyan-9)/1)}.fill-cyan-9\/20{fill:rgb(var(--cyan-9)/.2)}.fill-cyan-9\/25{fill:rgb(var(--cyan-9)/.25)}.fill-cyan-9\/30{fill:rgb(var(--cyan-9)/.3)}.fill-cyan-9\/40{fill:rgb(var(--cyan-9)/.4)}.fill-cyan-9\/5{fill:rgb(var(--cyan-9)/.05)}.fill-cyan-9\/50{fill:rgb(var(--cyan-9)/.5)}.fill-cyan-9\/60{fill:rgb(var(--cyan-9)/.6)}.fill-cyan-9\/70{fill:rgb(var(--cyan-9)/.7)}.fill-cyan-9\/75{fill:rgb(var(--cyan-9)/.75)}.fill-cyan-9\/80{fill:rgb(var(--cyan-9)/.8)}.fill-cyan-9\/90{fill:rgb(var(--cyan-9)/.9)}.fill-cyan-9\/95{fill:rgb(var(--cyan-9)/.95)}.fill-error{fill:rgb(var(--error))}.fill-error\/0{fill:rgb(var(--error)/0)}.fill-error\/10{fill:rgb(var(--error)/.1)}.fill-error\/100{fill:rgb(var(--error)/1)}.fill-error\/20{fill:rgb(var(--error)/.2)}.fill-error\/25{fill:rgb(var(--error)/.25)}.fill-error\/30{fill:rgb(var(--error)/.3)}.fill-error\/40{fill:rgb(var(--error)/.4)}.fill-error\/5{fill:rgb(var(--error)/.05)}.fill-error\/50{fill:rgb(var(--error)/.5)}.fill-error\/60{fill:rgb(var(--error)/.6)}.fill-error\/70{fill:rgb(var(--error)/.7)}.fill-error\/75{fill:rgb(var(--error)/.75)}.fill-error\/80{fill:rgb(var(--error)/.8)}.fill-error\/90{fill:rgb(var(--error)/.9)}.fill-error\/95{fill:rgb(var(--error)/.95)}.fill-gray-1\/0{fill:rgb(var(--gray-1)/0)}.fill-gray-1\/10{fill:rgb(var(--gray-1)/.1)}.fill-gray-1\/100{fill:rgb(var(--gray-1)/1)}.fill-gray-1\/20{fill:rgb(var(--gray-1)/.2)}.fill-gray-1\/25{fill:rgb(var(--gray-1)/.25)}.fill-gray-1\/30{fill:rgb(var(--gray-1)/.3)}.fill-gray-1\/40{fill:rgb(var(--gray-1)/.4)}.fill-gray-1\/5{fill:rgb(var(--gray-1)/.05)}.fill-gray-1\/50{fill:rgb(var(--gray-1)/.5)}.fill-gray-1\/60{fill:rgb(var(--gray-1)/.6)}.fill-gray-1\/70{fill:rgb(var(--gray-1)/.7)}.fill-gray-1\/75{fill:rgb(var(--gray-1)/.75)}.fill-gray-1\/80{fill:rgb(var(--gray-1)/.8)}.fill-gray-1\/90{fill:rgb(var(--gray-1)/.9)}.fill-gray-1\/95{fill:rgb(var(--gray-1)/.95)}.fill-gray-10\/0{fill:rgb(var(--gray-10)/0)}.fill-gray-10\/10{fill:rgb(var(--gray-10)/.1)}.fill-gray-10\/100{fill:rgb(var(--gray-10)/1)}.fill-gray-10\/20{fill:rgb(var(--gray-10)/.2)}.fill-gray-10\/25{fill:rgb(var(--gray-10)/.25)}.fill-gray-10\/30{fill:rgb(var(--gray-10)/.3)}.fill-gray-10\/40{fill:rgb(var(--gray-10)/.4)}.fill-gray-10\/5{fill:rgb(var(--gray-10)/.05)}.fill-gray-10\/50{fill:rgb(var(--gray-10)/.5)}.fill-gray-10\/60{fill:rgb(var(--gray-10)/.6)}.fill-gray-10\/70{fill:rgb(var(--gray-10)/.7)}.fill-gray-10\/75{fill:rgb(var(--gray-10)/.75)}.fill-gray-10\/80{fill:rgb(var(--gray-10)/.8)}.fill-gray-10\/90{fill:rgb(var(--gray-10)/.9)}.fill-gray-10\/95{fill:rgb(var(--gray-10)/.95)}.fill-gray-2\/0{fill:rgb(var(--gray-2)/0)}.fill-gray-2\/10{fill:rgb(var(--gray-2)/.1)}.fill-gray-2\/100{fill:rgb(var(--gray-2)/1)}.fill-gray-2\/20{fill:rgb(var(--gray-2)/.2)}.fill-gray-2\/25{fill:rgb(var(--gray-2)/.25)}.fill-gray-2\/30{fill:rgb(var(--gray-2)/.3)}.fill-gray-2\/40{fill:rgb(var(--gray-2)/.4)}.fill-gray-2\/5{fill:rgb(var(--gray-2)/.05)}.fill-gray-2\/50{fill:rgb(var(--gray-2)/.5)}.fill-gray-2\/60{fill:rgb(var(--gray-2)/.6)}.fill-gray-2\/70{fill:rgb(var(--gray-2)/.7)}.fill-gray-2\/75{fill:rgb(var(--gray-2)/.75)}.fill-gray-2\/80{fill:rgb(var(--gray-2)/.8)}.fill-gray-2\/90{fill:rgb(var(--gray-2)/.9)}.fill-gray-2\/95{fill:rgb(var(--gray-2)/.95)}.fill-gray-3\/0{fill:rgb(var(--gray-3)/0)}.fill-gray-3\/10{fill:rgb(var(--gray-3)/.1)}.fill-gray-3\/100{fill:rgb(var(--gray-3)/1)}.fill-gray-3\/20{fill:rgb(var(--gray-3)/.2)}.fill-gray-3\/25{fill:rgb(var(--gray-3)/.25)}.fill-gray-3\/30{fill:rgb(var(--gray-3)/.3)}.fill-gray-3\/40{fill:rgb(var(--gray-3)/.4)}.fill-gray-3\/5{fill:rgb(var(--gray-3)/.05)}.fill-gray-3\/50{fill:rgb(var(--gray-3)/.5)}.fill-gray-3\/60{fill:rgb(var(--gray-3)/.6)}.fill-gray-3\/70{fill:rgb(var(--gray-3)/.7)}.fill-gray-3\/75{fill:rgb(var(--gray-3)/.75)}.fill-gray-3\/80{fill:rgb(var(--gray-3)/.8)}.fill-gray-3\/90{fill:rgb(var(--gray-3)/.9)}.fill-gray-3\/95{fill:rgb(var(--gray-3)/.95)}.fill-gray-4\/0{fill:rgb(var(--gray-4)/0)}.fill-gray-4\/10{fill:rgb(var(--gray-4)/.1)}.fill-gray-4\/100{fill:rgb(var(--gray-4)/1)}.fill-gray-4\/20{fill:rgb(var(--gray-4)/.2)}.fill-gray-4\/25{fill:rgb(var(--gray-4)/.25)}.fill-gray-4\/30{fill:rgb(var(--gray-4)/.3)}.fill-gray-4\/40{fill:rgb(var(--gray-4)/.4)}.fill-gray-4\/5{fill:rgb(var(--gray-4)/.05)}.fill-gray-4\/50{fill:rgb(var(--gray-4)/.5)}.fill-gray-4\/60{fill:rgb(var(--gray-4)/.6)}.fill-gray-4\/70{fill:rgb(var(--gray-4)/.7)}.fill-gray-4\/75{fill:rgb(var(--gray-4)/.75)}.fill-gray-4\/80{fill:rgb(var(--gray-4)/.8)}.fill-gray-4\/90{fill:rgb(var(--gray-4)/.9)}.fill-gray-4\/95{fill:rgb(var(--gray-4)/.95)}.fill-gray-5\/0{fill:rgb(var(--gray-5)/0)}.fill-gray-5\/10{fill:rgb(var(--gray-5)/.1)}.fill-gray-5\/100{fill:rgb(var(--gray-5)/1)}.fill-gray-5\/20{fill:rgb(var(--gray-5)/.2)}.fill-gray-5\/25{fill:rgb(var(--gray-5)/.25)}.fill-gray-5\/30{fill:rgb(var(--gray-5)/.3)}.fill-gray-5\/40{fill:rgb(var(--gray-5)/.4)}.fill-gray-5\/5{fill:rgb(var(--gray-5)/.05)}.fill-gray-5\/50{fill:rgb(var(--gray-5)/.5)}.fill-gray-5\/60{fill:rgb(var(--gray-5)/.6)}.fill-gray-5\/70{fill:rgb(var(--gray-5)/.7)}.fill-gray-5\/75{fill:rgb(var(--gray-5)/.75)}.fill-gray-5\/80{fill:rgb(var(--gray-5)/.8)}.fill-gray-5\/90{fill:rgb(var(--gray-5)/.9)}.fill-gray-5\/95{fill:rgb(var(--gray-5)/.95)}.fill-gray-6\/0{fill:rgb(var(--gray-6)/0)}.fill-gray-6\/10{fill:rgb(var(--gray-6)/.1)}.fill-gray-6\/100{fill:rgb(var(--gray-6)/1)}.fill-gray-6\/20{fill:rgb(var(--gray-6)/.2)}.fill-gray-6\/25{fill:rgb(var(--gray-6)/.25)}.fill-gray-6\/30{fill:rgb(var(--gray-6)/.3)}.fill-gray-6\/40{fill:rgb(var(--gray-6)/.4)}.fill-gray-6\/5{fill:rgb(var(--gray-6)/.05)}.fill-gray-6\/50{fill:rgb(var(--gray-6)/.5)}.fill-gray-6\/60{fill:rgb(var(--gray-6)/.6)}.fill-gray-6\/70{fill:rgb(var(--gray-6)/.7)}.fill-gray-6\/75{fill:rgb(var(--gray-6)/.75)}.fill-gray-6\/80{fill:rgb(var(--gray-6)/.8)}.fill-gray-6\/90{fill:rgb(var(--gray-6)/.9)}.fill-gray-6\/95{fill:rgb(var(--gray-6)/.95)}.fill-gray-7\/0{fill:rgb(var(--gray-7)/0)}.fill-gray-7\/10{fill:rgb(var(--gray-7)/.1)}.fill-gray-7\/100{fill:rgb(var(--gray-7)/1)}.fill-gray-7\/20{fill:rgb(var(--gray-7)/.2)}.fill-gray-7\/25{fill:rgb(var(--gray-7)/.25)}.fill-gray-7\/30{fill:rgb(var(--gray-7)/.3)}.fill-gray-7\/40{fill:rgb(var(--gray-7)/.4)}.fill-gray-7\/5{fill:rgb(var(--gray-7)/.05)}.fill-gray-7\/50{fill:rgb(var(--gray-7)/.5)}.fill-gray-7\/60{fill:rgb(var(--gray-7)/.6)}.fill-gray-7\/70{fill:rgb(var(--gray-7)/.7)}.fill-gray-7\/75{fill:rgb(var(--gray-7)/.75)}.fill-gray-7\/80{fill:rgb(var(--gray-7)/.8)}.fill-gray-7\/90{fill:rgb(var(--gray-7)/.9)}.fill-gray-7\/95{fill:rgb(var(--gray-7)/.95)}.fill-gray-8\/0{fill:rgb(var(--gray-8)/0)}.fill-gray-8\/10{fill:rgb(var(--gray-8)/.1)}.fill-gray-8\/100{fill:rgb(var(--gray-8)/1)}.fill-gray-8\/20{fill:rgb(var(--gray-8)/.2)}.fill-gray-8\/25{fill:rgb(var(--gray-8)/.25)}.fill-gray-8\/30{fill:rgb(var(--gray-8)/.3)}.fill-gray-8\/40{fill:rgb(var(--gray-8)/.4)}.fill-gray-8\/5{fill:rgb(var(--gray-8)/.05)}.fill-gray-8\/50{fill:rgb(var(--gray-8)/.5)}.fill-gray-8\/60{fill:rgb(var(--gray-8)/.6)}.fill-gray-8\/70{fill:rgb(var(--gray-8)/.7)}.fill-gray-8\/75{fill:rgb(var(--gray-8)/.75)}.fill-gray-8\/80{fill:rgb(var(--gray-8)/.8)}.fill-gray-8\/90{fill:rgb(var(--gray-8)/.9)}.fill-gray-8\/95{fill:rgb(var(--gray-8)/.95)}.fill-gray-9\/0{fill:rgb(var(--gray-9)/0)}.fill-gray-9\/10{fill:rgb(var(--gray-9)/.1)}.fill-gray-9\/100{fill:rgb(var(--gray-9)/1)}.fill-gray-9\/20{fill:rgb(var(--gray-9)/.2)}.fill-gray-9\/25{fill:rgb(var(--gray-9)/.25)}.fill-gray-9\/30{fill:rgb(var(--gray-9)/.3)}.fill-gray-9\/40{fill:rgb(var(--gray-9)/.4)}.fill-gray-9\/5{fill:rgb(var(--gray-9)/.05)}.fill-gray-9\/50{fill:rgb(var(--gray-9)/.5)}.fill-gray-9\/60{fill:rgb(var(--gray-9)/.6)}.fill-gray-9\/70{fill:rgb(var(--gray-9)/.7)}.fill-gray-9\/75{fill:rgb(var(--gray-9)/.75)}.fill-gray-9\/80{fill:rgb(var(--gray-9)/.8)}.fill-gray-9\/90{fill:rgb(var(--gray-9)/.9)}.fill-gray-9\/95{fill:rgb(var(--gray-9)/.95)}.fill-green-1\/0{fill:rgb(var(--green-1)/0)}.fill-green-1\/10{fill:rgb(var(--green-1)/.1)}.fill-green-1\/100{fill:rgb(var(--green-1)/1)}.fill-green-1\/20{fill:rgb(var(--green-1)/.2)}.fill-green-1\/25{fill:rgb(var(--green-1)/.25)}.fill-green-1\/30{fill:rgb(var(--green-1)/.3)}.fill-green-1\/40{fill:rgb(var(--green-1)/.4)}.fill-green-1\/5{fill:rgb(var(--green-1)/.05)}.fill-green-1\/50{fill:rgb(var(--green-1)/.5)}.fill-green-1\/60{fill:rgb(var(--green-1)/.6)}.fill-green-1\/70{fill:rgb(var(--green-1)/.7)}.fill-green-1\/75{fill:rgb(var(--green-1)/.75)}.fill-green-1\/80{fill:rgb(var(--green-1)/.8)}.fill-green-1\/90{fill:rgb(var(--green-1)/.9)}.fill-green-1\/95{fill:rgb(var(--green-1)/.95)}.fill-green-10\/0{fill:rgb(var(--green-10)/0)}.fill-green-10\/10{fill:rgb(var(--green-10)/.1)}.fill-green-10\/100{fill:rgb(var(--green-10)/1)}.fill-green-10\/20{fill:rgb(var(--green-10)/.2)}.fill-green-10\/25{fill:rgb(var(--green-10)/.25)}.fill-green-10\/30{fill:rgb(var(--green-10)/.3)}.fill-green-10\/40{fill:rgb(var(--green-10)/.4)}.fill-green-10\/5{fill:rgb(var(--green-10)/.05)}.fill-green-10\/50{fill:rgb(var(--green-10)/.5)}.fill-green-10\/60{fill:rgb(var(--green-10)/.6)}.fill-green-10\/70{fill:rgb(var(--green-10)/.7)}.fill-green-10\/75{fill:rgb(var(--green-10)/.75)}.fill-green-10\/80{fill:rgb(var(--green-10)/.8)}.fill-green-10\/90{fill:rgb(var(--green-10)/.9)}.fill-green-10\/95{fill:rgb(var(--green-10)/.95)}.fill-green-2\/0{fill:rgb(var(--green-2)/0)}.fill-green-2\/10{fill:rgb(var(--green-2)/.1)}.fill-green-2\/100{fill:rgb(var(--green-2)/1)}.fill-green-2\/20{fill:rgb(var(--green-2)/.2)}.fill-green-2\/25{fill:rgb(var(--green-2)/.25)}.fill-green-2\/30{fill:rgb(var(--green-2)/.3)}.fill-green-2\/40{fill:rgb(var(--green-2)/.4)}.fill-green-2\/5{fill:rgb(var(--green-2)/.05)}.fill-green-2\/50{fill:rgb(var(--green-2)/.5)}.fill-green-2\/60{fill:rgb(var(--green-2)/.6)}.fill-green-2\/70{fill:rgb(var(--green-2)/.7)}.fill-green-2\/75{fill:rgb(var(--green-2)/.75)}.fill-green-2\/80{fill:rgb(var(--green-2)/.8)}.fill-green-2\/90{fill:rgb(var(--green-2)/.9)}.fill-green-2\/95{fill:rgb(var(--green-2)/.95)}.fill-green-3\/0{fill:rgb(var(--green-3)/0)}.fill-green-3\/10{fill:rgb(var(--green-3)/.1)}.fill-green-3\/100{fill:rgb(var(--green-3)/1)}.fill-green-3\/20{fill:rgb(var(--green-3)/.2)}.fill-green-3\/25{fill:rgb(var(--green-3)/.25)}.fill-green-3\/30{fill:rgb(var(--green-3)/.3)}.fill-green-3\/40{fill:rgb(var(--green-3)/.4)}.fill-green-3\/5{fill:rgb(var(--green-3)/.05)}.fill-green-3\/50{fill:rgb(var(--green-3)/.5)}.fill-green-3\/60{fill:rgb(var(--green-3)/.6)}.fill-green-3\/70{fill:rgb(var(--green-3)/.7)}.fill-green-3\/75{fill:rgb(var(--green-3)/.75)}.fill-green-3\/80{fill:rgb(var(--green-3)/.8)}.fill-green-3\/90{fill:rgb(var(--green-3)/.9)}.fill-green-3\/95{fill:rgb(var(--green-3)/.95)}.fill-green-4\/0{fill:rgb(var(--green-4)/0)}.fill-green-4\/10{fill:rgb(var(--green-4)/.1)}.fill-green-4\/100{fill:rgb(var(--green-4)/1)}.fill-green-4\/20{fill:rgb(var(--green-4)/.2)}.fill-green-4\/25{fill:rgb(var(--green-4)/.25)}.fill-green-4\/30{fill:rgb(var(--green-4)/.3)}.fill-green-4\/40{fill:rgb(var(--green-4)/.4)}.fill-green-4\/5{fill:rgb(var(--green-4)/.05)}.fill-green-4\/50{fill:rgb(var(--green-4)/.5)}.fill-green-4\/60{fill:rgb(var(--green-4)/.6)}.fill-green-4\/70{fill:rgb(var(--green-4)/.7)}.fill-green-4\/75{fill:rgb(var(--green-4)/.75)}.fill-green-4\/80{fill:rgb(var(--green-4)/.8)}.fill-green-4\/90{fill:rgb(var(--green-4)/.9)}.fill-green-4\/95{fill:rgb(var(--green-4)/.95)}.fill-green-5\/0{fill:rgb(var(--green-5)/0)}.fill-green-5\/10{fill:rgb(var(--green-5)/.1)}.fill-green-5\/100{fill:rgb(var(--green-5)/1)}.fill-green-5\/20{fill:rgb(var(--green-5)/.2)}.fill-green-5\/25{fill:rgb(var(--green-5)/.25)}.fill-green-5\/30{fill:rgb(var(--green-5)/.3)}.fill-green-5\/40{fill:rgb(var(--green-5)/.4)}.fill-green-5\/5{fill:rgb(var(--green-5)/.05)}.fill-green-5\/50{fill:rgb(var(--green-5)/.5)}.fill-green-5\/60{fill:rgb(var(--green-5)/.6)}.fill-green-5\/70{fill:rgb(var(--green-5)/.7)}.fill-green-5\/75{fill:rgb(var(--green-5)/.75)}.fill-green-5\/80{fill:rgb(var(--green-5)/.8)}.fill-green-5\/90{fill:rgb(var(--green-5)/.9)}.fill-green-5\/95{fill:rgb(var(--green-5)/.95)}.fill-green-6\/0{fill:rgb(var(--green-6)/0)}.fill-green-6\/10{fill:rgb(var(--green-6)/.1)}.fill-green-6\/100{fill:rgb(var(--green-6)/1)}.fill-green-6\/20{fill:rgb(var(--green-6)/.2)}.fill-green-6\/25{fill:rgb(var(--green-6)/.25)}.fill-green-6\/30{fill:rgb(var(--green-6)/.3)}.fill-green-6\/40{fill:rgb(var(--green-6)/.4)}.fill-green-6\/5{fill:rgb(var(--green-6)/.05)}.fill-green-6\/50{fill:rgb(var(--green-6)/.5)}.fill-green-6\/60{fill:rgb(var(--green-6)/.6)}.fill-green-6\/70{fill:rgb(var(--green-6)/.7)}.fill-green-6\/75{fill:rgb(var(--green-6)/.75)}.fill-green-6\/80{fill:rgb(var(--green-6)/.8)}.fill-green-6\/90{fill:rgb(var(--green-6)/.9)}.fill-green-6\/95{fill:rgb(var(--green-6)/.95)}.fill-green-7\/0{fill:rgb(var(--green-7)/0)}.fill-green-7\/10{fill:rgb(var(--green-7)/.1)}.fill-green-7\/100{fill:rgb(var(--green-7)/1)}.fill-green-7\/20{fill:rgb(var(--green-7)/.2)}.fill-green-7\/25{fill:rgb(var(--green-7)/.25)}.fill-green-7\/30{fill:rgb(var(--green-7)/.3)}.fill-green-7\/40{fill:rgb(var(--green-7)/.4)}.fill-green-7\/5{fill:rgb(var(--green-7)/.05)}.fill-green-7\/50{fill:rgb(var(--green-7)/.5)}.fill-green-7\/60{fill:rgb(var(--green-7)/.6)}.fill-green-7\/70{fill:rgb(var(--green-7)/.7)}.fill-green-7\/75{fill:rgb(var(--green-7)/.75)}.fill-green-7\/80{fill:rgb(var(--green-7)/.8)}.fill-green-7\/90{fill:rgb(var(--green-7)/.9)}.fill-green-7\/95{fill:rgb(var(--green-7)/.95)}.fill-green-8\/0{fill:rgb(var(--green-8)/0)}.fill-green-8\/10{fill:rgb(var(--green-8)/.1)}.fill-green-8\/100{fill:rgb(var(--green-8)/1)}.fill-green-8\/20{fill:rgb(var(--green-8)/.2)}.fill-green-8\/25{fill:rgb(var(--green-8)/.25)}.fill-green-8\/30{fill:rgb(var(--green-8)/.3)}.fill-green-8\/40{fill:rgb(var(--green-8)/.4)}.fill-green-8\/5{fill:rgb(var(--green-8)/.05)}.fill-green-8\/50{fill:rgb(var(--green-8)/.5)}.fill-green-8\/60{fill:rgb(var(--green-8)/.6)}.fill-green-8\/70{fill:rgb(var(--green-8)/.7)}.fill-green-8\/75{fill:rgb(var(--green-8)/.75)}.fill-green-8\/80{fill:rgb(var(--green-8)/.8)}.fill-green-8\/90{fill:rgb(var(--green-8)/.9)}.fill-green-8\/95{fill:rgb(var(--green-8)/.95)}.fill-green-9\/0{fill:rgb(var(--green-9)/0)}.fill-green-9\/10{fill:rgb(var(--green-9)/.1)}.fill-green-9\/100{fill:rgb(var(--green-9)/1)}.fill-green-9\/20{fill:rgb(var(--green-9)/.2)}.fill-green-9\/25{fill:rgb(var(--green-9)/.25)}.fill-green-9\/30{fill:rgb(var(--green-9)/.3)}.fill-green-9\/40{fill:rgb(var(--green-9)/.4)}.fill-green-9\/5{fill:rgb(var(--green-9)/.05)}.fill-green-9\/50{fill:rgb(var(--green-9)/.5)}.fill-green-9\/60{fill:rgb(var(--green-9)/.6)}.fill-green-9\/70{fill:rgb(var(--green-9)/.7)}.fill-green-9\/75{fill:rgb(var(--green-9)/.75)}.fill-green-9\/80{fill:rgb(var(--green-9)/.8)}.fill-green-9\/90{fill:rgb(var(--green-9)/.9)}.fill-green-9\/95{fill:rgb(var(--green-9)/.95)}.fill-pink-1\/0{fill:rgb(var(--pink-1)/0)}.fill-pink-1\/10{fill:rgb(var(--pink-1)/.1)}.fill-pink-1\/100{fill:rgb(var(--pink-1)/1)}.fill-pink-1\/20{fill:rgb(var(--pink-1)/.2)}.fill-pink-1\/25{fill:rgb(var(--pink-1)/.25)}.fill-pink-1\/30{fill:rgb(var(--pink-1)/.3)}.fill-pink-1\/40{fill:rgb(var(--pink-1)/.4)}.fill-pink-1\/5{fill:rgb(var(--pink-1)/.05)}.fill-pink-1\/50{fill:rgb(var(--pink-1)/.5)}.fill-pink-1\/60{fill:rgb(var(--pink-1)/.6)}.fill-pink-1\/70{fill:rgb(var(--pink-1)/.7)}.fill-pink-1\/75{fill:rgb(var(--pink-1)/.75)}.fill-pink-1\/80{fill:rgb(var(--pink-1)/.8)}.fill-pink-1\/90{fill:rgb(var(--pink-1)/.9)}.fill-pink-1\/95{fill:rgb(var(--pink-1)/.95)}.fill-pink-10\/0{fill:rgb(var(--pink-10)/0)}.fill-pink-10\/10{fill:rgb(var(--pink-10)/.1)}.fill-pink-10\/100{fill:rgb(var(--pink-10)/1)}.fill-pink-10\/20{fill:rgb(var(--pink-10)/.2)}.fill-pink-10\/25{fill:rgb(var(--pink-10)/.25)}.fill-pink-10\/30{fill:rgb(var(--pink-10)/.3)}.fill-pink-10\/40{fill:rgb(var(--pink-10)/.4)}.fill-pink-10\/5{fill:rgb(var(--pink-10)/.05)}.fill-pink-10\/50{fill:rgb(var(--pink-10)/.5)}.fill-pink-10\/60{fill:rgb(var(--pink-10)/.6)}.fill-pink-10\/70{fill:rgb(var(--pink-10)/.7)}.fill-pink-10\/75{fill:rgb(var(--pink-10)/.75)}.fill-pink-10\/80{fill:rgb(var(--pink-10)/.8)}.fill-pink-10\/90{fill:rgb(var(--pink-10)/.9)}.fill-pink-10\/95{fill:rgb(var(--pink-10)/.95)}.fill-pink-2\/0{fill:rgb(var(--pink-2)/0)}.fill-pink-2\/10{fill:rgb(var(--pink-2)/.1)}.fill-pink-2\/100{fill:rgb(var(--pink-2)/1)}.fill-pink-2\/20{fill:rgb(var(--pink-2)/.2)}.fill-pink-2\/25{fill:rgb(var(--pink-2)/.25)}.fill-pink-2\/30{fill:rgb(var(--pink-2)/.3)}.fill-pink-2\/40{fill:rgb(var(--pink-2)/.4)}.fill-pink-2\/5{fill:rgb(var(--pink-2)/.05)}.fill-pink-2\/50{fill:rgb(var(--pink-2)/.5)}.fill-pink-2\/60{fill:rgb(var(--pink-2)/.6)}.fill-pink-2\/70{fill:rgb(var(--pink-2)/.7)}.fill-pink-2\/75{fill:rgb(var(--pink-2)/.75)}.fill-pink-2\/80{fill:rgb(var(--pink-2)/.8)}.fill-pink-2\/90{fill:rgb(var(--pink-2)/.9)}.fill-pink-2\/95{fill:rgb(var(--pink-2)/.95)}.fill-pink-3\/0{fill:rgb(var(--pink-3)/0)}.fill-pink-3\/10{fill:rgb(var(--pink-3)/.1)}.fill-pink-3\/100{fill:rgb(var(--pink-3)/1)}.fill-pink-3\/20{fill:rgb(var(--pink-3)/.2)}.fill-pink-3\/25{fill:rgb(var(--pink-3)/.25)}.fill-pink-3\/30{fill:rgb(var(--pink-3)/.3)}.fill-pink-3\/40{fill:rgb(var(--pink-3)/.4)}.fill-pink-3\/5{fill:rgb(var(--pink-3)/.05)}.fill-pink-3\/50{fill:rgb(var(--pink-3)/.5)}.fill-pink-3\/60{fill:rgb(var(--pink-3)/.6)}.fill-pink-3\/70{fill:rgb(var(--pink-3)/.7)}.fill-pink-3\/75{fill:rgb(var(--pink-3)/.75)}.fill-pink-3\/80{fill:rgb(var(--pink-3)/.8)}.fill-pink-3\/90{fill:rgb(var(--pink-3)/.9)}.fill-pink-3\/95{fill:rgb(var(--pink-3)/.95)}.fill-pink-4\/0{fill:rgb(var(--pink-4)/0)}.fill-pink-4\/10{fill:rgb(var(--pink-4)/.1)}.fill-pink-4\/100{fill:rgb(var(--pink-4)/1)}.fill-pink-4\/20{fill:rgb(var(--pink-4)/.2)}.fill-pink-4\/25{fill:rgb(var(--pink-4)/.25)}.fill-pink-4\/30{fill:rgb(var(--pink-4)/.3)}.fill-pink-4\/40{fill:rgb(var(--pink-4)/.4)}.fill-pink-4\/5{fill:rgb(var(--pink-4)/.05)}.fill-pink-4\/50{fill:rgb(var(--pink-4)/.5)}.fill-pink-4\/60{fill:rgb(var(--pink-4)/.6)}.fill-pink-4\/70{fill:rgb(var(--pink-4)/.7)}.fill-pink-4\/75{fill:rgb(var(--pink-4)/.75)}.fill-pink-4\/80{fill:rgb(var(--pink-4)/.8)}.fill-pink-4\/90{fill:rgb(var(--pink-4)/.9)}.fill-pink-4\/95{fill:rgb(var(--pink-4)/.95)}.fill-pink-5\/0{fill:rgb(var(--pink-5)/0)}.fill-pink-5\/10{fill:rgb(var(--pink-5)/.1)}.fill-pink-5\/100{fill:rgb(var(--pink-5)/1)}.fill-pink-5\/20{fill:rgb(var(--pink-5)/.2)}.fill-pink-5\/25{fill:rgb(var(--pink-5)/.25)}.fill-pink-5\/30{fill:rgb(var(--pink-5)/.3)}.fill-pink-5\/40{fill:rgb(var(--pink-5)/.4)}.fill-pink-5\/5{fill:rgb(var(--pink-5)/.05)}.fill-pink-5\/50{fill:rgb(var(--pink-5)/.5)}.fill-pink-5\/60{fill:rgb(var(--pink-5)/.6)}.fill-pink-5\/70{fill:rgb(var(--pink-5)/.7)}.fill-pink-5\/75{fill:rgb(var(--pink-5)/.75)}.fill-pink-5\/80{fill:rgb(var(--pink-5)/.8)}.fill-pink-5\/90{fill:rgb(var(--pink-5)/.9)}.fill-pink-5\/95{fill:rgb(var(--pink-5)/.95)}.fill-pink-6\/0{fill:rgb(var(--pink-6)/0)}.fill-pink-6\/10{fill:rgb(var(--pink-6)/.1)}.fill-pink-6\/100{fill:rgb(var(--pink-6)/1)}.fill-pink-6\/20{fill:rgb(var(--pink-6)/.2)}.fill-pink-6\/25{fill:rgb(var(--pink-6)/.25)}.fill-pink-6\/30{fill:rgb(var(--pink-6)/.3)}.fill-pink-6\/40{fill:rgb(var(--pink-6)/.4)}.fill-pink-6\/5{fill:rgb(var(--pink-6)/.05)}.fill-pink-6\/50{fill:rgb(var(--pink-6)/.5)}.fill-pink-6\/60{fill:rgb(var(--pink-6)/.6)}.fill-pink-6\/70{fill:rgb(var(--pink-6)/.7)}.fill-pink-6\/75{fill:rgb(var(--pink-6)/.75)}.fill-pink-6\/80{fill:rgb(var(--pink-6)/.8)}.fill-pink-6\/90{fill:rgb(var(--pink-6)/.9)}.fill-pink-6\/95{fill:rgb(var(--pink-6)/.95)}.fill-pink-7\/0{fill:rgb(var(--pink-7)/0)}.fill-pink-7\/10{fill:rgb(var(--pink-7)/.1)}.fill-pink-7\/100{fill:rgb(var(--pink-7)/1)}.fill-pink-7\/20{fill:rgb(var(--pink-7)/.2)}.fill-pink-7\/25{fill:rgb(var(--pink-7)/.25)}.fill-pink-7\/30{fill:rgb(var(--pink-7)/.3)}.fill-pink-7\/40{fill:rgb(var(--pink-7)/.4)}.fill-pink-7\/5{fill:rgb(var(--pink-7)/.05)}.fill-pink-7\/50{fill:rgb(var(--pink-7)/.5)}.fill-pink-7\/60{fill:rgb(var(--pink-7)/.6)}.fill-pink-7\/70{fill:rgb(var(--pink-7)/.7)}.fill-pink-7\/75{fill:rgb(var(--pink-7)/.75)}.fill-pink-7\/80{fill:rgb(var(--pink-7)/.8)}.fill-pink-7\/90{fill:rgb(var(--pink-7)/.9)}.fill-pink-7\/95{fill:rgb(var(--pink-7)/.95)}.fill-pink-8\/0{fill:rgb(var(--pink-8)/0)}.fill-pink-8\/10{fill:rgb(var(--pink-8)/.1)}.fill-pink-8\/100{fill:rgb(var(--pink-8)/1)}.fill-pink-8\/20{fill:rgb(var(--pink-8)/.2)}.fill-pink-8\/25{fill:rgb(var(--pink-8)/.25)}.fill-pink-8\/30{fill:rgb(var(--pink-8)/.3)}.fill-pink-8\/40{fill:rgb(var(--pink-8)/.4)}.fill-pink-8\/5{fill:rgb(var(--pink-8)/.05)}.fill-pink-8\/50{fill:rgb(var(--pink-8)/.5)}.fill-pink-8\/60{fill:rgb(var(--pink-8)/.6)}.fill-pink-8\/70{fill:rgb(var(--pink-8)/.7)}.fill-pink-8\/75{fill:rgb(var(--pink-8)/.75)}.fill-pink-8\/80{fill:rgb(var(--pink-8)/.8)}.fill-pink-8\/90{fill:rgb(var(--pink-8)/.9)}.fill-pink-8\/95{fill:rgb(var(--pink-8)/.95)}.fill-pink-9\/0{fill:rgb(var(--pink-9)/0)}.fill-pink-9\/10{fill:rgb(var(--pink-9)/.1)}.fill-pink-9\/100{fill:rgb(var(--pink-9)/1)}.fill-pink-9\/20{fill:rgb(var(--pink-9)/.2)}.fill-pink-9\/25{fill:rgb(var(--pink-9)/.25)}.fill-pink-9\/30{fill:rgb(var(--pink-9)/.3)}.fill-pink-9\/40{fill:rgb(var(--pink-9)/.4)}.fill-pink-9\/5{fill:rgb(var(--pink-9)/.05)}.fill-pink-9\/50{fill:rgb(var(--pink-9)/.5)}.fill-pink-9\/60{fill:rgb(var(--pink-9)/.6)}.fill-pink-9\/70{fill:rgb(var(--pink-9)/.7)}.fill-pink-9\/75{fill:rgb(var(--pink-9)/.75)}.fill-pink-9\/80{fill:rgb(var(--pink-9)/.8)}.fill-pink-9\/90{fill:rgb(var(--pink-9)/.9)}.fill-pink-9\/95{fill:rgb(var(--pink-9)/.95)}.fill-primary{fill:rgb(var(--primary))}.fill-primary\/0{fill:rgb(var(--primary)/0)}.fill-primary\/10{fill:rgb(var(--primary)/.1)}.fill-primary\/100{fill:rgb(var(--primary)/1)}.fill-primary\/20{fill:rgb(var(--primary)/.2)}.fill-primary\/25{fill:rgb(var(--primary)/.25)}.fill-primary\/30{fill:rgb(var(--primary)/.3)}.fill-primary\/40{fill:rgb(var(--primary)/.4)}.fill-primary\/5{fill:rgb(var(--primary)/.05)}.fill-primary\/50{fill:rgb(var(--primary)/.5)}.fill-primary\/60{fill:rgb(var(--primary)/.6)}.fill-primary\/70{fill:rgb(var(--primary)/.7)}.fill-primary\/75{fill:rgb(var(--primary)/.75)}.fill-primary\/80{fill:rgb(var(--primary)/.8)}.fill-primary\/90{fill:rgb(var(--primary)/.9)}.fill-primary\/95{fill:rgb(var(--primary)/.95)}.fill-purple-1\/0{fill:rgb(var(--purple-1)/0)}.fill-purple-1\/10{fill:rgb(var(--purple-1)/.1)}.fill-purple-1\/100{fill:rgb(var(--purple-1)/1)}.fill-purple-1\/20{fill:rgb(var(--purple-1)/.2)}.fill-purple-1\/25{fill:rgb(var(--purple-1)/.25)}.fill-purple-1\/30{fill:rgb(var(--purple-1)/.3)}.fill-purple-1\/40{fill:rgb(var(--purple-1)/.4)}.fill-purple-1\/5{fill:rgb(var(--purple-1)/.05)}.fill-purple-1\/50{fill:rgb(var(--purple-1)/.5)}.fill-purple-1\/60{fill:rgb(var(--purple-1)/.6)}.fill-purple-1\/70{fill:rgb(var(--purple-1)/.7)}.fill-purple-1\/75{fill:rgb(var(--purple-1)/.75)}.fill-purple-1\/80{fill:rgb(var(--purple-1)/.8)}.fill-purple-1\/90{fill:rgb(var(--purple-1)/.9)}.fill-purple-1\/95{fill:rgb(var(--purple-1)/.95)}.fill-purple-10\/0{fill:rgb(var(--purple-10)/0)}.fill-purple-10\/10{fill:rgb(var(--purple-10)/.1)}.fill-purple-10\/100{fill:rgb(var(--purple-10)/1)}.fill-purple-10\/20{fill:rgb(var(--purple-10)/.2)}.fill-purple-10\/25{fill:rgb(var(--purple-10)/.25)}.fill-purple-10\/30{fill:rgb(var(--purple-10)/.3)}.fill-purple-10\/40{fill:rgb(var(--purple-10)/.4)}.fill-purple-10\/5{fill:rgb(var(--purple-10)/.05)}.fill-purple-10\/50{fill:rgb(var(--purple-10)/.5)}.fill-purple-10\/60{fill:rgb(var(--purple-10)/.6)}.fill-purple-10\/70{fill:rgb(var(--purple-10)/.7)}.fill-purple-10\/75{fill:rgb(var(--purple-10)/.75)}.fill-purple-10\/80{fill:rgb(var(--purple-10)/.8)}.fill-purple-10\/90{fill:rgb(var(--purple-10)/.9)}.fill-purple-10\/95{fill:rgb(var(--purple-10)/.95)}.fill-purple-2\/0{fill:rgb(var(--purple-2)/0)}.fill-purple-2\/10{fill:rgb(var(--purple-2)/.1)}.fill-purple-2\/100{fill:rgb(var(--purple-2)/1)}.fill-purple-2\/20{fill:rgb(var(--purple-2)/.2)}.fill-purple-2\/25{fill:rgb(var(--purple-2)/.25)}.fill-purple-2\/30{fill:rgb(var(--purple-2)/.3)}.fill-purple-2\/40{fill:rgb(var(--purple-2)/.4)}.fill-purple-2\/5{fill:rgb(var(--purple-2)/.05)}.fill-purple-2\/50{fill:rgb(var(--purple-2)/.5)}.fill-purple-2\/60{fill:rgb(var(--purple-2)/.6)}.fill-purple-2\/70{fill:rgb(var(--purple-2)/.7)}.fill-purple-2\/75{fill:rgb(var(--purple-2)/.75)}.fill-purple-2\/80{fill:rgb(var(--purple-2)/.8)}.fill-purple-2\/90{fill:rgb(var(--purple-2)/.9)}.fill-purple-2\/95{fill:rgb(var(--purple-2)/.95)}.fill-purple-3\/0{fill:rgb(var(--purple-3)/0)}.fill-purple-3\/10{fill:rgb(var(--purple-3)/.1)}.fill-purple-3\/100{fill:rgb(var(--purple-3)/1)}.fill-purple-3\/20{fill:rgb(var(--purple-3)/.2)}.fill-purple-3\/25{fill:rgb(var(--purple-3)/.25)}.fill-purple-3\/30{fill:rgb(var(--purple-3)/.3)}.fill-purple-3\/40{fill:rgb(var(--purple-3)/.4)}.fill-purple-3\/5{fill:rgb(var(--purple-3)/.05)}.fill-purple-3\/50{fill:rgb(var(--purple-3)/.5)}.fill-purple-3\/60{fill:rgb(var(--purple-3)/.6)}.fill-purple-3\/70{fill:rgb(var(--purple-3)/.7)}.fill-purple-3\/75{fill:rgb(var(--purple-3)/.75)}.fill-purple-3\/80{fill:rgb(var(--purple-3)/.8)}.fill-purple-3\/90{fill:rgb(var(--purple-3)/.9)}.fill-purple-3\/95{fill:rgb(var(--purple-3)/.95)}.fill-purple-4\/0{fill:rgb(var(--purple-4)/0)}.fill-purple-4\/10{fill:rgb(var(--purple-4)/.1)}.fill-purple-4\/100{fill:rgb(var(--purple-4)/1)}.fill-purple-4\/20{fill:rgb(var(--purple-4)/.2)}.fill-purple-4\/25{fill:rgb(var(--purple-4)/.25)}.fill-purple-4\/30{fill:rgb(var(--purple-4)/.3)}.fill-purple-4\/40{fill:rgb(var(--purple-4)/.4)}.fill-purple-4\/5{fill:rgb(var(--purple-4)/.05)}.fill-purple-4\/50{fill:rgb(var(--purple-4)/.5)}.fill-purple-4\/60{fill:rgb(var(--purple-4)/.6)}.fill-purple-4\/70{fill:rgb(var(--purple-4)/.7)}.fill-purple-4\/75{fill:rgb(var(--purple-4)/.75)}.fill-purple-4\/80{fill:rgb(var(--purple-4)/.8)}.fill-purple-4\/90{fill:rgb(var(--purple-4)/.9)}.fill-purple-4\/95{fill:rgb(var(--purple-4)/.95)}.fill-purple-5\/0{fill:rgb(var(--purple-5)/0)}.fill-purple-5\/10{fill:rgb(var(--purple-5)/.1)}.fill-purple-5\/100{fill:rgb(var(--purple-5)/1)}.fill-purple-5\/20{fill:rgb(var(--purple-5)/.2)}.fill-purple-5\/25{fill:rgb(var(--purple-5)/.25)}.fill-purple-5\/30{fill:rgb(var(--purple-5)/.3)}.fill-purple-5\/40{fill:rgb(var(--purple-5)/.4)}.fill-purple-5\/5{fill:rgb(var(--purple-5)/.05)}.fill-purple-5\/50{fill:rgb(var(--purple-5)/.5)}.fill-purple-5\/60{fill:rgb(var(--purple-5)/.6)}.fill-purple-5\/70{fill:rgb(var(--purple-5)/.7)}.fill-purple-5\/75{fill:rgb(var(--purple-5)/.75)}.fill-purple-5\/80{fill:rgb(var(--purple-5)/.8)}.fill-purple-5\/90{fill:rgb(var(--purple-5)/.9)}.fill-purple-5\/95{fill:rgb(var(--purple-5)/.95)}.fill-purple-6\/0{fill:rgb(var(--purple-6)/0)}.fill-purple-6\/10{fill:rgb(var(--purple-6)/.1)}.fill-purple-6\/100{fill:rgb(var(--purple-6)/1)}.fill-purple-6\/20{fill:rgb(var(--purple-6)/.2)}.fill-purple-6\/25{fill:rgb(var(--purple-6)/.25)}.fill-purple-6\/30{fill:rgb(var(--purple-6)/.3)}.fill-purple-6\/40{fill:rgb(var(--purple-6)/.4)}.fill-purple-6\/5{fill:rgb(var(--purple-6)/.05)}.fill-purple-6\/50{fill:rgb(var(--purple-6)/.5)}.fill-purple-6\/60{fill:rgb(var(--purple-6)/.6)}.fill-purple-6\/70{fill:rgb(var(--purple-6)/.7)}.fill-purple-6\/75{fill:rgb(var(--purple-6)/.75)}.fill-purple-6\/80{fill:rgb(var(--purple-6)/.8)}.fill-purple-6\/90{fill:rgb(var(--purple-6)/.9)}.fill-purple-6\/95{fill:rgb(var(--purple-6)/.95)}.fill-purple-7\/0{fill:rgb(var(--purple-7)/0)}.fill-purple-7\/10{fill:rgb(var(--purple-7)/.1)}.fill-purple-7\/100{fill:rgb(var(--purple-7)/1)}.fill-purple-7\/20{fill:rgb(var(--purple-7)/.2)}.fill-purple-7\/25{fill:rgb(var(--purple-7)/.25)}.fill-purple-7\/30{fill:rgb(var(--purple-7)/.3)}.fill-purple-7\/40{fill:rgb(var(--purple-7)/.4)}.fill-purple-7\/5{fill:rgb(var(--purple-7)/.05)}.fill-purple-7\/50{fill:rgb(var(--purple-7)/.5)}.fill-purple-7\/60{fill:rgb(var(--purple-7)/.6)}.fill-purple-7\/70{fill:rgb(var(--purple-7)/.7)}.fill-purple-7\/75{fill:rgb(var(--purple-7)/.75)}.fill-purple-7\/80{fill:rgb(var(--purple-7)/.8)}.fill-purple-7\/90{fill:rgb(var(--purple-7)/.9)}.fill-purple-7\/95{fill:rgb(var(--purple-7)/.95)}.fill-purple-8\/0{fill:rgb(var(--purple-8)/0)}.fill-purple-8\/10{fill:rgb(var(--purple-8)/.1)}.fill-purple-8\/100{fill:rgb(var(--purple-8)/1)}.fill-purple-8\/20{fill:rgb(var(--purple-8)/.2)}.fill-purple-8\/25{fill:rgb(var(--purple-8)/.25)}.fill-purple-8\/30{fill:rgb(var(--purple-8)/.3)}.fill-purple-8\/40{fill:rgb(var(--purple-8)/.4)}.fill-purple-8\/5{fill:rgb(var(--purple-8)/.05)}.fill-purple-8\/50{fill:rgb(var(--purple-8)/.5)}.fill-purple-8\/60{fill:rgb(var(--purple-8)/.6)}.fill-purple-8\/70{fill:rgb(var(--purple-8)/.7)}.fill-purple-8\/75{fill:rgb(var(--purple-8)/.75)}.fill-purple-8\/80{fill:rgb(var(--purple-8)/.8)}.fill-purple-8\/90{fill:rgb(var(--purple-8)/.9)}.fill-purple-8\/95{fill:rgb(var(--purple-8)/.95)}.fill-purple-9\/0{fill:rgb(var(--purple-9)/0)}.fill-purple-9\/10{fill:rgb(var(--purple-9)/.1)}.fill-purple-9\/100{fill:rgb(var(--purple-9)/1)}.fill-purple-9\/20{fill:rgb(var(--purple-9)/.2)}.fill-purple-9\/25{fill:rgb(var(--purple-9)/.25)}.fill-purple-9\/30{fill:rgb(var(--purple-9)/.3)}.fill-purple-9\/40{fill:rgb(var(--purple-9)/.4)}.fill-purple-9\/5{fill:rgb(var(--purple-9)/.05)}.fill-purple-9\/50{fill:rgb(var(--purple-9)/.5)}.fill-purple-9\/60{fill:rgb(var(--purple-9)/.6)}.fill-purple-9\/70{fill:rgb(var(--purple-9)/.7)}.fill-purple-9\/75{fill:rgb(var(--purple-9)/.75)}.fill-purple-9\/80{fill:rgb(var(--purple-9)/.8)}.fill-purple-9\/90{fill:rgb(var(--purple-9)/.9)}.fill-purple-9\/95{fill:rgb(var(--purple-9)/.95)}.fill-red-1\/0{fill:rgb(var(--red-1)/0)}.fill-red-1\/10{fill:rgb(var(--red-1)/.1)}.fill-red-1\/100{fill:rgb(var(--red-1)/1)}.fill-red-1\/20{fill:rgb(var(--red-1)/.2)}.fill-red-1\/25{fill:rgb(var(--red-1)/.25)}.fill-red-1\/30{fill:rgb(var(--red-1)/.3)}.fill-red-1\/40{fill:rgb(var(--red-1)/.4)}.fill-red-1\/5{fill:rgb(var(--red-1)/.05)}.fill-red-1\/50{fill:rgb(var(--red-1)/.5)}.fill-red-1\/60{fill:rgb(var(--red-1)/.6)}.fill-red-1\/70{fill:rgb(var(--red-1)/.7)}.fill-red-1\/75{fill:rgb(var(--red-1)/.75)}.fill-red-1\/80{fill:rgb(var(--red-1)/.8)}.fill-red-1\/90{fill:rgb(var(--red-1)/.9)}.fill-red-1\/95{fill:rgb(var(--red-1)/.95)}.fill-red-10\/0{fill:rgb(var(--red-10)/0)}.fill-red-10\/10{fill:rgb(var(--red-10)/.1)}.fill-red-10\/100{fill:rgb(var(--red-10)/1)}.fill-red-10\/20{fill:rgb(var(--red-10)/.2)}.fill-red-10\/25{fill:rgb(var(--red-10)/.25)}.fill-red-10\/30{fill:rgb(var(--red-10)/.3)}.fill-red-10\/40{fill:rgb(var(--red-10)/.4)}.fill-red-10\/5{fill:rgb(var(--red-10)/.05)}.fill-red-10\/50{fill:rgb(var(--red-10)/.5)}.fill-red-10\/60{fill:rgb(var(--red-10)/.6)}.fill-red-10\/70{fill:rgb(var(--red-10)/.7)}.fill-red-10\/75{fill:rgb(var(--red-10)/.75)}.fill-red-10\/80{fill:rgb(var(--red-10)/.8)}.fill-red-10\/90{fill:rgb(var(--red-10)/.9)}.fill-red-10\/95{fill:rgb(var(--red-10)/.95)}.fill-red-2\/0{fill:rgb(var(--red-2)/0)}.fill-red-2\/10{fill:rgb(var(--red-2)/.1)}.fill-red-2\/100{fill:rgb(var(--red-2)/1)}.fill-red-2\/20{fill:rgb(var(--red-2)/.2)}.fill-red-2\/25{fill:rgb(var(--red-2)/.25)}.fill-red-2\/30{fill:rgb(var(--red-2)/.3)}.fill-red-2\/40{fill:rgb(var(--red-2)/.4)}.fill-red-2\/5{fill:rgb(var(--red-2)/.05)}.fill-red-2\/50{fill:rgb(var(--red-2)/.5)}.fill-red-2\/60{fill:rgb(var(--red-2)/.6)}.fill-red-2\/70{fill:rgb(var(--red-2)/.7)}.fill-red-2\/75{fill:rgb(var(--red-2)/.75)}.fill-red-2\/80{fill:rgb(var(--red-2)/.8)}.fill-red-2\/90{fill:rgb(var(--red-2)/.9)}.fill-red-2\/95{fill:rgb(var(--red-2)/.95)}.fill-red-3\/0{fill:rgb(var(--red-3)/0)}.fill-red-3\/10{fill:rgb(var(--red-3)/.1)}.fill-red-3\/100{fill:rgb(var(--red-3)/1)}.fill-red-3\/20{fill:rgb(var(--red-3)/.2)}.fill-red-3\/25{fill:rgb(var(--red-3)/.25)}.fill-red-3\/30{fill:rgb(var(--red-3)/.3)}.fill-red-3\/40{fill:rgb(var(--red-3)/.4)}.fill-red-3\/5{fill:rgb(var(--red-3)/.05)}.fill-red-3\/50{fill:rgb(var(--red-3)/.5)}.fill-red-3\/60{fill:rgb(var(--red-3)/.6)}.fill-red-3\/70{fill:rgb(var(--red-3)/.7)}.fill-red-3\/75{fill:rgb(var(--red-3)/.75)}.fill-red-3\/80{fill:rgb(var(--red-3)/.8)}.fill-red-3\/90{fill:rgb(var(--red-3)/.9)}.fill-red-3\/95{fill:rgb(var(--red-3)/.95)}.fill-red-4\/0{fill:rgb(var(--red-4)/0)}.fill-red-4\/10{fill:rgb(var(--red-4)/.1)}.fill-red-4\/100{fill:rgb(var(--red-4)/1)}.fill-red-4\/20{fill:rgb(var(--red-4)/.2)}.fill-red-4\/25{fill:rgb(var(--red-4)/.25)}.fill-red-4\/30{fill:rgb(var(--red-4)/.3)}.fill-red-4\/40{fill:rgb(var(--red-4)/.4)}.fill-red-4\/5{fill:rgb(var(--red-4)/.05)}.fill-red-4\/50{fill:rgb(var(--red-4)/.5)}.fill-red-4\/60{fill:rgb(var(--red-4)/.6)}.fill-red-4\/70{fill:rgb(var(--red-4)/.7)}.fill-red-4\/75{fill:rgb(var(--red-4)/.75)}.fill-red-4\/80{fill:rgb(var(--red-4)/.8)}.fill-red-4\/90{fill:rgb(var(--red-4)/.9)}.fill-red-4\/95{fill:rgb(var(--red-4)/.95)}.fill-red-5\/0{fill:rgb(var(--red-5)/0)}.fill-red-5\/10{fill:rgb(var(--red-5)/.1)}.fill-red-5\/100{fill:rgb(var(--red-5)/1)}.fill-red-5\/20{fill:rgb(var(--red-5)/.2)}.fill-red-5\/25{fill:rgb(var(--red-5)/.25)}.fill-red-5\/30{fill:rgb(var(--red-5)/.3)}.fill-red-5\/40{fill:rgb(var(--red-5)/.4)}.fill-red-5\/5{fill:rgb(var(--red-5)/.05)}.fill-red-5\/50{fill:rgb(var(--red-5)/.5)}.fill-red-5\/60{fill:rgb(var(--red-5)/.6)}.fill-red-5\/70{fill:rgb(var(--red-5)/.7)}.fill-red-5\/75{fill:rgb(var(--red-5)/.75)}.fill-red-5\/80{fill:rgb(var(--red-5)/.8)}.fill-red-5\/90{fill:rgb(var(--red-5)/.9)}.fill-red-5\/95{fill:rgb(var(--red-5)/.95)}.fill-red-6\/0{fill:rgb(var(--red-6)/0)}.fill-red-6\/10{fill:rgb(var(--red-6)/.1)}.fill-red-6\/100{fill:rgb(var(--red-6)/1)}.fill-red-6\/20{fill:rgb(var(--red-6)/.2)}.fill-red-6\/25{fill:rgb(var(--red-6)/.25)}.fill-red-6\/30{fill:rgb(var(--red-6)/.3)}.fill-red-6\/40{fill:rgb(var(--red-6)/.4)}.fill-red-6\/5{fill:rgb(var(--red-6)/.05)}.fill-red-6\/50{fill:rgb(var(--red-6)/.5)}.fill-red-6\/60{fill:rgb(var(--red-6)/.6)}.fill-red-6\/70{fill:rgb(var(--red-6)/.7)}.fill-red-6\/75{fill:rgb(var(--red-6)/.75)}.fill-red-6\/80{fill:rgb(var(--red-6)/.8)}.fill-red-6\/90{fill:rgb(var(--red-6)/.9)}.fill-red-6\/95{fill:rgb(var(--red-6)/.95)}.fill-red-7\/0{fill:rgb(var(--red-7)/0)}.fill-red-7\/10{fill:rgb(var(--red-7)/.1)}.fill-red-7\/100{fill:rgb(var(--red-7)/1)}.fill-red-7\/20{fill:rgb(var(--red-7)/.2)}.fill-red-7\/25{fill:rgb(var(--red-7)/.25)}.fill-red-7\/30{fill:rgb(var(--red-7)/.3)}.fill-red-7\/40{fill:rgb(var(--red-7)/.4)}.fill-red-7\/5{fill:rgb(var(--red-7)/.05)}.fill-red-7\/50{fill:rgb(var(--red-7)/.5)}.fill-red-7\/60{fill:rgb(var(--red-7)/.6)}.fill-red-7\/70{fill:rgb(var(--red-7)/.7)}.fill-red-7\/75{fill:rgb(var(--red-7)/.75)}.fill-red-7\/80{fill:rgb(var(--red-7)/.8)}.fill-red-7\/90{fill:rgb(var(--red-7)/.9)}.fill-red-7\/95{fill:rgb(var(--red-7)/.95)}.fill-red-8\/0{fill:rgb(var(--red-8)/0)}.fill-red-8\/10{fill:rgb(var(--red-8)/.1)}.fill-red-8\/100{fill:rgb(var(--red-8)/1)}.fill-red-8\/20{fill:rgb(var(--red-8)/.2)}.fill-red-8\/25{fill:rgb(var(--red-8)/.25)}.fill-red-8\/30{fill:rgb(var(--red-8)/.3)}.fill-red-8\/40{fill:rgb(var(--red-8)/.4)}.fill-red-8\/5{fill:rgb(var(--red-8)/.05)}.fill-red-8\/50{fill:rgb(var(--red-8)/.5)}.fill-red-8\/60{fill:rgb(var(--red-8)/.6)}.fill-red-8\/70{fill:rgb(var(--red-8)/.7)}.fill-red-8\/75{fill:rgb(var(--red-8)/.75)}.fill-red-8\/80{fill:rgb(var(--red-8)/.8)}.fill-red-8\/90{fill:rgb(var(--red-8)/.9)}.fill-red-8\/95{fill:rgb(var(--red-8)/.95)}.fill-red-9\/0{fill:rgb(var(--red-9)/0)}.fill-red-9\/10{fill:rgb(var(--red-9)/.1)}.fill-red-9\/100{fill:rgb(var(--red-9)/1)}.fill-red-9\/20{fill:rgb(var(--red-9)/.2)}.fill-red-9\/25{fill:rgb(var(--red-9)/.25)}.fill-red-9\/30{fill:rgb(var(--red-9)/.3)}.fill-red-9\/40{fill:rgb(var(--red-9)/.4)}.fill-red-9\/5{fill:rgb(var(--red-9)/.05)}.fill-red-9\/50{fill:rgb(var(--red-9)/.5)}.fill-red-9\/60{fill:rgb(var(--red-9)/.6)}.fill-red-9\/70{fill:rgb(var(--red-9)/.7)}.fill-red-9\/75{fill:rgb(var(--red-9)/.75)}.fill-red-9\/80{fill:rgb(var(--red-9)/.8)}.fill-red-9\/90{fill:rgb(var(--red-9)/.9)}.fill-red-9\/95{fill:rgb(var(--red-9)/.95)}.fill-secondary{fill:rgb(var(--secondary))}.fill-secondary\/0{fill:rgb(var(--secondary)/0)}.fill-secondary\/10{fill:rgb(var(--secondary)/.1)}.fill-secondary\/100{fill:rgb(var(--secondary)/1)}.fill-secondary\/20{fill:rgb(var(--secondary)/.2)}.fill-secondary\/25{fill:rgb(var(--secondary)/.25)}.fill-secondary\/30{fill:rgb(var(--secondary)/.3)}.fill-secondary\/40{fill:rgb(var(--secondary)/.4)}.fill-secondary\/5{fill:rgb(var(--secondary)/.05)}.fill-secondary\/50{fill:rgb(var(--secondary)/.5)}.fill-secondary\/60{fill:rgb(var(--secondary)/.6)}.fill-secondary\/70{fill:rgb(var(--secondary)/.7)}.fill-secondary\/75{fill:rgb(var(--secondary)/.75)}.fill-secondary\/80{fill:rgb(var(--secondary)/.8)}.fill-secondary\/90{fill:rgb(var(--secondary)/.9)}.fill-secondary\/95{fill:rgb(var(--secondary)/.95)}.fill-slate-1\/0{fill:rgb(var(--slate-1)/0)}.fill-slate-1\/10{fill:rgb(var(--slate-1)/.1)}.fill-slate-1\/100{fill:rgb(var(--slate-1)/1)}.fill-slate-1\/20{fill:rgb(var(--slate-1)/.2)}.fill-slate-1\/25{fill:rgb(var(--slate-1)/.25)}.fill-slate-1\/30{fill:rgb(var(--slate-1)/.3)}.fill-slate-1\/40{fill:rgb(var(--slate-1)/.4)}.fill-slate-1\/5{fill:rgb(var(--slate-1)/.05)}.fill-slate-1\/50{fill:rgb(var(--slate-1)/.5)}.fill-slate-1\/60{fill:rgb(var(--slate-1)/.6)}.fill-slate-1\/70{fill:rgb(var(--slate-1)/.7)}.fill-slate-1\/75{fill:rgb(var(--slate-1)/.75)}.fill-slate-1\/80{fill:rgb(var(--slate-1)/.8)}.fill-slate-1\/90{fill:rgb(var(--slate-1)/.9)}.fill-slate-1\/95{fill:rgb(var(--slate-1)/.95)}.fill-slate-10\/0{fill:rgb(var(--slate-10)/0)}.fill-slate-10\/10{fill:rgb(var(--slate-10)/.1)}.fill-slate-10\/100{fill:rgb(var(--slate-10)/1)}.fill-slate-10\/20{fill:rgb(var(--slate-10)/.2)}.fill-slate-10\/25{fill:rgb(var(--slate-10)/.25)}.fill-slate-10\/30{fill:rgb(var(--slate-10)/.3)}.fill-slate-10\/40{fill:rgb(var(--slate-10)/.4)}.fill-slate-10\/5{fill:rgb(var(--slate-10)/.05)}.fill-slate-10\/50{fill:rgb(var(--slate-10)/.5)}.fill-slate-10\/60{fill:rgb(var(--slate-10)/.6)}.fill-slate-10\/70{fill:rgb(var(--slate-10)/.7)}.fill-slate-10\/75{fill:rgb(var(--slate-10)/.75)}.fill-slate-10\/80{fill:rgb(var(--slate-10)/.8)}.fill-slate-10\/90{fill:rgb(var(--slate-10)/.9)}.fill-slate-10\/95{fill:rgb(var(--slate-10)/.95)}.fill-slate-2\/0{fill:rgb(var(--slate-2)/0)}.fill-slate-2\/10{fill:rgb(var(--slate-2)/.1)}.fill-slate-2\/100{fill:rgb(var(--slate-2)/1)}.fill-slate-2\/20{fill:rgb(var(--slate-2)/.2)}.fill-slate-2\/25{fill:rgb(var(--slate-2)/.25)}.fill-slate-2\/30{fill:rgb(var(--slate-2)/.3)}.fill-slate-2\/40{fill:rgb(var(--slate-2)/.4)}.fill-slate-2\/5{fill:rgb(var(--slate-2)/.05)}.fill-slate-2\/50{fill:rgb(var(--slate-2)/.5)}.fill-slate-2\/60{fill:rgb(var(--slate-2)/.6)}.fill-slate-2\/70{fill:rgb(var(--slate-2)/.7)}.fill-slate-2\/75{fill:rgb(var(--slate-2)/.75)}.fill-slate-2\/80{fill:rgb(var(--slate-2)/.8)}.fill-slate-2\/90{fill:rgb(var(--slate-2)/.9)}.fill-slate-2\/95{fill:rgb(var(--slate-2)/.95)}.fill-slate-3\/0{fill:rgb(var(--slate-3)/0)}.fill-slate-3\/10{fill:rgb(var(--slate-3)/.1)}.fill-slate-3\/100{fill:rgb(var(--slate-3)/1)}.fill-slate-3\/20{fill:rgb(var(--slate-3)/.2)}.fill-slate-3\/25{fill:rgb(var(--slate-3)/.25)}.fill-slate-3\/30{fill:rgb(var(--slate-3)/.3)}.fill-slate-3\/40{fill:rgb(var(--slate-3)/.4)}.fill-slate-3\/5{fill:rgb(var(--slate-3)/.05)}.fill-slate-3\/50{fill:rgb(var(--slate-3)/.5)}.fill-slate-3\/60{fill:rgb(var(--slate-3)/.6)}.fill-slate-3\/70{fill:rgb(var(--slate-3)/.7)}.fill-slate-3\/75{fill:rgb(var(--slate-3)/.75)}.fill-slate-3\/80{fill:rgb(var(--slate-3)/.8)}.fill-slate-3\/90{fill:rgb(var(--slate-3)/.9)}.fill-slate-3\/95{fill:rgb(var(--slate-3)/.95)}.fill-slate-4\/0{fill:rgb(var(--slate-4)/0)}.fill-slate-4\/10{fill:rgb(var(--slate-4)/.1)}.fill-slate-4\/100{fill:rgb(var(--slate-4)/1)}.fill-slate-4\/20{fill:rgb(var(--slate-4)/.2)}.fill-slate-4\/25{fill:rgb(var(--slate-4)/.25)}.fill-slate-4\/30{fill:rgb(var(--slate-4)/.3)}.fill-slate-4\/40{fill:rgb(var(--slate-4)/.4)}.fill-slate-4\/5{fill:rgb(var(--slate-4)/.05)}.fill-slate-4\/50{fill:rgb(var(--slate-4)/.5)}.fill-slate-4\/60{fill:rgb(var(--slate-4)/.6)}.fill-slate-4\/70{fill:rgb(var(--slate-4)/.7)}.fill-slate-4\/75{fill:rgb(var(--slate-4)/.75)}.fill-slate-4\/80{fill:rgb(var(--slate-4)/.8)}.fill-slate-4\/90{fill:rgb(var(--slate-4)/.9)}.fill-slate-4\/95{fill:rgb(var(--slate-4)/.95)}.fill-slate-5\/0{fill:rgb(var(--slate-5)/0)}.fill-slate-5\/10{fill:rgb(var(--slate-5)/.1)}.fill-slate-5\/100{fill:rgb(var(--slate-5)/1)}.fill-slate-5\/20{fill:rgb(var(--slate-5)/.2)}.fill-slate-5\/25{fill:rgb(var(--slate-5)/.25)}.fill-slate-5\/30{fill:rgb(var(--slate-5)/.3)}.fill-slate-5\/40{fill:rgb(var(--slate-5)/.4)}.fill-slate-5\/5{fill:rgb(var(--slate-5)/.05)}.fill-slate-5\/50{fill:rgb(var(--slate-5)/.5)}.fill-slate-5\/60{fill:rgb(var(--slate-5)/.6)}.fill-slate-5\/70{fill:rgb(var(--slate-5)/.7)}.fill-slate-5\/75{fill:rgb(var(--slate-5)/.75)}.fill-slate-5\/80{fill:rgb(var(--slate-5)/.8)}.fill-slate-5\/90{fill:rgb(var(--slate-5)/.9)}.fill-slate-5\/95{fill:rgb(var(--slate-5)/.95)}.fill-slate-6\/0{fill:rgb(var(--slate-6)/0)}.fill-slate-6\/10{fill:rgb(var(--slate-6)/.1)}.fill-slate-6\/100{fill:rgb(var(--slate-6)/1)}.fill-slate-6\/20{fill:rgb(var(--slate-6)/.2)}.fill-slate-6\/25{fill:rgb(var(--slate-6)/.25)}.fill-slate-6\/30{fill:rgb(var(--slate-6)/.3)}.fill-slate-6\/40{fill:rgb(var(--slate-6)/.4)}.fill-slate-6\/5{fill:rgb(var(--slate-6)/.05)}.fill-slate-6\/50{fill:rgb(var(--slate-6)/.5)}.fill-slate-6\/60{fill:rgb(var(--slate-6)/.6)}.fill-slate-6\/70{fill:rgb(var(--slate-6)/.7)}.fill-slate-6\/75{fill:rgb(var(--slate-6)/.75)}.fill-slate-6\/80{fill:rgb(var(--slate-6)/.8)}.fill-slate-6\/90{fill:rgb(var(--slate-6)/.9)}.fill-slate-6\/95{fill:rgb(var(--slate-6)/.95)}.fill-slate-7\/0{fill:rgb(var(--slate-7)/0)}.fill-slate-7\/10{fill:rgb(var(--slate-7)/.1)}.fill-slate-7\/100{fill:rgb(var(--slate-7)/1)}.fill-slate-7\/20{fill:rgb(var(--slate-7)/.2)}.fill-slate-7\/25{fill:rgb(var(--slate-7)/.25)}.fill-slate-7\/30{fill:rgb(var(--slate-7)/.3)}.fill-slate-7\/40{fill:rgb(var(--slate-7)/.4)}.fill-slate-7\/5{fill:rgb(var(--slate-7)/.05)}.fill-slate-7\/50{fill:rgb(var(--slate-7)/.5)}.fill-slate-7\/60{fill:rgb(var(--slate-7)/.6)}.fill-slate-7\/70{fill:rgb(var(--slate-7)/.7)}.fill-slate-7\/75{fill:rgb(var(--slate-7)/.75)}.fill-slate-7\/80{fill:rgb(var(--slate-7)/.8)}.fill-slate-7\/90{fill:rgb(var(--slate-7)/.9)}.fill-slate-7\/95{fill:rgb(var(--slate-7)/.95)}.fill-slate-8\/0{fill:rgb(var(--slate-8)/0)}.fill-slate-8\/10{fill:rgb(var(--slate-8)/.1)}.fill-slate-8\/100{fill:rgb(var(--slate-8)/1)}.fill-slate-8\/20{fill:rgb(var(--slate-8)/.2)}.fill-slate-8\/25{fill:rgb(var(--slate-8)/.25)}.fill-slate-8\/30{fill:rgb(var(--slate-8)/.3)}.fill-slate-8\/40{fill:rgb(var(--slate-8)/.4)}.fill-slate-8\/5{fill:rgb(var(--slate-8)/.05)}.fill-slate-8\/50{fill:rgb(var(--slate-8)/.5)}.fill-slate-8\/60{fill:rgb(var(--slate-8)/.6)}.fill-slate-8\/70{fill:rgb(var(--slate-8)/.7)}.fill-slate-8\/75{fill:rgb(var(--slate-8)/.75)}.fill-slate-8\/80{fill:rgb(var(--slate-8)/.8)}.fill-slate-8\/90{fill:rgb(var(--slate-8)/.9)}.fill-slate-8\/95{fill:rgb(var(--slate-8)/.95)}.fill-slate-9\/0{fill:rgb(var(--slate-9)/0)}.fill-slate-9\/10{fill:rgb(var(--slate-9)/.1)}.fill-slate-9\/100{fill:rgb(var(--slate-9)/1)}.fill-slate-9\/20{fill:rgb(var(--slate-9)/.2)}.fill-slate-9\/25{fill:rgb(var(--slate-9)/.25)}.fill-slate-9\/30{fill:rgb(var(--slate-9)/.3)}.fill-slate-9\/40{fill:rgb(var(--slate-9)/.4)}.fill-slate-9\/5{fill:rgb(var(--slate-9)/.05)}.fill-slate-9\/50{fill:rgb(var(--slate-9)/.5)}.fill-slate-9\/60{fill:rgb(var(--slate-9)/.6)}.fill-slate-9\/70{fill:rgb(var(--slate-9)/.7)}.fill-slate-9\/75{fill:rgb(var(--slate-9)/.75)}.fill-slate-9\/80{fill:rgb(var(--slate-9)/.8)}.fill-slate-9\/90{fill:rgb(var(--slate-9)/.9)}.fill-slate-9\/95{fill:rgb(var(--slate-9)/.95)}.fill-success{fill:rgb(var(--success))}.fill-success\/0{fill:rgb(var(--success)/0)}.fill-success\/10{fill:rgb(var(--success)/.1)}.fill-success\/100{fill:rgb(var(--success)/1)}.fill-success\/20{fill:rgb(var(--success)/.2)}.fill-success\/25{fill:rgb(var(--success)/.25)}.fill-success\/30{fill:rgb(var(--success)/.3)}.fill-success\/40{fill:rgb(var(--success)/.4)}.fill-success\/5{fill:rgb(var(--success)/.05)}.fill-success\/50{fill:rgb(var(--success)/.5)}.fill-success\/60{fill:rgb(var(--success)/.6)}.fill-success\/70{fill:rgb(var(--success)/.7)}.fill-success\/75{fill:rgb(var(--success)/.75)}.fill-success\/80{fill:rgb(var(--success)/.8)}.fill-success\/90{fill:rgb(var(--success)/.9)}.fill-success\/95{fill:rgb(var(--success)/.95)}.fill-warning{fill:rgb(var(--warning))}.fill-warning\/0{fill:rgb(var(--warning)/0)}.fill-warning\/10{fill:rgb(var(--warning)/.1)}.fill-warning\/100{fill:rgb(var(--warning)/1)}.fill-warning\/20{fill:rgb(var(--warning)/.2)}.fill-warning\/25{fill:rgb(var(--warning)/.25)}.fill-warning\/30{fill:rgb(var(--warning)/.3)}.fill-warning\/40{fill:rgb(var(--warning)/.4)}.fill-warning\/5{fill:rgb(var(--warning)/.05)}.fill-warning\/50{fill:rgb(var(--warning)/.5)}.fill-warning\/60{fill:rgb(var(--warning)/.6)}.fill-warning\/70{fill:rgb(var(--warning)/.7)}.fill-warning\/75{fill:rgb(var(--warning)/.75)}.fill-warning\/80{fill:rgb(var(--warning)/.8)}.fill-warning\/90{fill:rgb(var(--warning)/.9)}.fill-warning\/95{fill:rgb(var(--warning)/.95)}.fill-white{fill:#fff}.fill-white\/0{fill:hsla(0,0%,100%,0)}.fill-white\/10{fill:hsla(0,0%,100%,.1)}.fill-white\/100{fill:#fff}.fill-white\/20{fill:hsla(0,0%,100%,.2)}.fill-white\/25{fill:hsla(0,0%,100%,.25)}.fill-white\/30{fill:hsla(0,0%,100%,.3)}.fill-white\/40{fill:hsla(0,0%,100%,.4)}.fill-white\/5{fill:hsla(0,0%,100%,.05)}.fill-white\/50{fill:hsla(0,0%,100%,.5)}.fill-white\/60{fill:hsla(0,0%,100%,.6)}.fill-white\/70{fill:hsla(0,0%,100%,.7)}.fill-white\/75{fill:hsla(0,0%,100%,.75)}.fill-white\/80{fill:hsla(0,0%,100%,.8)}.fill-white\/90{fill:hsla(0,0%,100%,.9)}.fill-white\/95{fill:hsla(0,0%,100%,.95)}.fill-whiteInverted{fill:rgb(var(--whiteInverted))}.fill-whiteInverted\/0{fill:rgb(var(--whiteInverted)/0)}.fill-whiteInverted\/10{fill:rgb(var(--whiteInverted)/.1)}.fill-whiteInverted\/100{fill:rgb(var(--whiteInverted)/1)}.fill-whiteInverted\/20{fill:rgb(var(--whiteInverted)/.2)}.fill-whiteInverted\/25{fill:rgb(var(--whiteInverted)/.25)}.fill-whiteInverted\/30{fill:rgb(var(--whiteInverted)/.3)}.fill-whiteInverted\/40{fill:rgb(var(--whiteInverted)/.4)}.fill-whiteInverted\/5{fill:rgb(var(--whiteInverted)/.05)}.fill-whiteInverted\/50{fill:rgb(var(--whiteInverted)/.5)}.fill-whiteInverted\/60{fill:rgb(var(--whiteInverted)/.6)}.fill-whiteInverted\/70{fill:rgb(var(--whiteInverted)/.7)}.fill-whiteInverted\/75{fill:rgb(var(--whiteInverted)/.75)}.fill-whiteInverted\/80{fill:rgb(var(--whiteInverted)/.8)}.fill-whiteInverted\/90{fill:rgb(var(--whiteInverted)/.9)}.fill-whiteInverted\/95{fill:rgb(var(--whiteInverted)/.95)}.stroke-backgroundPrimary{stroke:rgb(var(--backgroundPrimary))}.stroke-backgroundPrimary\/0{stroke:rgb(var(--backgroundPrimary)/0)}.stroke-backgroundPrimary\/10{stroke:rgb(var(--backgroundPrimary)/.1)}.stroke-backgroundPrimary\/100{stroke:rgb(var(--backgroundPrimary)/1)}.stroke-backgroundPrimary\/20{stroke:rgb(var(--backgroundPrimary)/.2)}.stroke-backgroundPrimary\/25{stroke:rgb(var(--backgroundPrimary)/.25)}.stroke-backgroundPrimary\/30{stroke:rgb(var(--backgroundPrimary)/.3)}.stroke-backgroundPrimary\/40{stroke:rgb(var(--backgroundPrimary)/.4)}.stroke-backgroundPrimary\/5{stroke:rgb(var(--backgroundPrimary)/.05)}.stroke-backgroundPrimary\/50{stroke:rgb(var(--backgroundPrimary)/.5)}.stroke-backgroundPrimary\/60{stroke:rgb(var(--backgroundPrimary)/.6)}.stroke-backgroundPrimary\/70{stroke:rgb(var(--backgroundPrimary)/.7)}.stroke-backgroundPrimary\/75{stroke:rgb(var(--backgroundPrimary)/.75)}.stroke-backgroundPrimary\/80{stroke:rgb(var(--backgroundPrimary)/.8)}.stroke-backgroundPrimary\/90{stroke:rgb(var(--backgroundPrimary)/.9)}.stroke-backgroundPrimary\/95{stroke:rgb(var(--backgroundPrimary)/.95)}.stroke-backgroundSecondary{stroke:rgb(var(--backgroundSecondary))}.stroke-backgroundSecondary\/0{stroke:rgb(var(--backgroundSecondary)/0)}.stroke-backgroundSecondary\/10{stroke:rgb(var(--backgroundSecondary)/.1)}.stroke-backgroundSecondary\/100{stroke:rgb(var(--backgroundSecondary)/1)}.stroke-backgroundSecondary\/20{stroke:rgb(var(--backgroundSecondary)/.2)}.stroke-backgroundSecondary\/25{stroke:rgb(var(--backgroundSecondary)/.25)}.stroke-backgroundSecondary\/30{stroke:rgb(var(--backgroundSecondary)/.3)}.stroke-backgroundSecondary\/40{stroke:rgb(var(--backgroundSecondary)/.4)}.stroke-backgroundSecondary\/5{stroke:rgb(var(--backgroundSecondary)/.05)}.stroke-backgroundSecondary\/50{stroke:rgb(var(--backgroundSecondary)/.5)}.stroke-backgroundSecondary\/60{stroke:rgb(var(--backgroundSecondary)/.6)}.stroke-backgroundSecondary\/70{stroke:rgb(var(--backgroundSecondary)/.7)}.stroke-backgroundSecondary\/75{stroke:rgb(var(--backgroundSecondary)/.75)}.stroke-backgroundSecondary\/80{stroke:rgb(var(--backgroundSecondary)/.8)}.stroke-backgroundSecondary\/90{stroke:rgb(var(--backgroundSecondary)/.9)}.stroke-backgroundSecondary\/95{stroke:rgb(var(--backgroundSecondary)/.95)}.stroke-black{stroke:#000}.stroke-black\/0{stroke:transparent}.stroke-black\/10{stroke:rgba(0,0,0,.1)}.stroke-black\/100{stroke:#000}.stroke-black\/20{stroke:rgba(0,0,0,.2)}.stroke-black\/25{stroke:rgba(0,0,0,.25)}.stroke-black\/30{stroke:rgba(0,0,0,.3)}.stroke-black\/40{stroke:rgba(0,0,0,.4)}.stroke-black\/5{stroke:rgba(0,0,0,.05)}.stroke-black\/50{stroke:rgba(0,0,0,.5)}.stroke-black\/60{stroke:rgba(0,0,0,.6)}.stroke-black\/70{stroke:rgba(0,0,0,.7)}.stroke-black\/75{stroke:rgba(0,0,0,.75)}.stroke-black\/80{stroke:rgba(0,0,0,.8)}.stroke-black\/90{stroke:rgba(0,0,0,.9)}.stroke-black\/95{stroke:rgba(0,0,0,.95)}.stroke-blackInverted{stroke:rgb(var(--blackInverted))}.stroke-blackInverted\/0{stroke:rgb(var(--blackInverted)/0)}.stroke-blackInverted\/10{stroke:rgb(var(--blackInverted)/.1)}.stroke-blackInverted\/100{stroke:rgb(var(--blackInverted)/1)}.stroke-blackInverted\/20{stroke:rgb(var(--blackInverted)/.2)}.stroke-blackInverted\/25{stroke:rgb(var(--blackInverted)/.25)}.stroke-blackInverted\/30{stroke:rgb(var(--blackInverted)/.3)}.stroke-blackInverted\/40{stroke:rgb(var(--blackInverted)/.4)}.stroke-blackInverted\/5{stroke:rgb(var(--blackInverted)/.05)}.stroke-blackInverted\/50{stroke:rgb(var(--blackInverted)/.5)}.stroke-blackInverted\/60{stroke:rgb(var(--blackInverted)/.6)}.stroke-blackInverted\/70{stroke:rgb(var(--blackInverted)/.7)}.stroke-blackInverted\/75{stroke:rgb(var(--blackInverted)/.75)}.stroke-blackInverted\/80{stroke:rgb(var(--blackInverted)/.8)}.stroke-blackInverted\/90{stroke:rgb(var(--blackInverted)/.9)}.stroke-blackInverted\/95{stroke:rgb(var(--blackInverted)/.95)}.stroke-blue-1\/0{stroke:rgb(var(--blue-1)/0)}.stroke-blue-1\/10{stroke:rgb(var(--blue-1)/.1)}.stroke-blue-1\/100{stroke:rgb(var(--blue-1)/1)}.stroke-blue-1\/20{stroke:rgb(var(--blue-1)/.2)}.stroke-blue-1\/25{stroke:rgb(var(--blue-1)/.25)}.stroke-blue-1\/30{stroke:rgb(var(--blue-1)/.3)}.stroke-blue-1\/40{stroke:rgb(var(--blue-1)/.4)}.stroke-blue-1\/5{stroke:rgb(var(--blue-1)/.05)}.stroke-blue-1\/50{stroke:rgb(var(--blue-1)/.5)}.stroke-blue-1\/60{stroke:rgb(var(--blue-1)/.6)}.stroke-blue-1\/70{stroke:rgb(var(--blue-1)/.7)}.stroke-blue-1\/75{stroke:rgb(var(--blue-1)/.75)}.stroke-blue-1\/80{stroke:rgb(var(--blue-1)/.8)}.stroke-blue-1\/90{stroke:rgb(var(--blue-1)/.9)}.stroke-blue-1\/95{stroke:rgb(var(--blue-1)/.95)}.stroke-blue-10\/0{stroke:rgb(var(--blue-10)/0)}.stroke-blue-10\/10{stroke:rgb(var(--blue-10)/.1)}.stroke-blue-10\/100{stroke:rgb(var(--blue-10)/1)}.stroke-blue-10\/20{stroke:rgb(var(--blue-10)/.2)}.stroke-blue-10\/25{stroke:rgb(var(--blue-10)/.25)}.stroke-blue-10\/30{stroke:rgb(var(--blue-10)/.3)}.stroke-blue-10\/40{stroke:rgb(var(--blue-10)/.4)}.stroke-blue-10\/5{stroke:rgb(var(--blue-10)/.05)}.stroke-blue-10\/50{stroke:rgb(var(--blue-10)/.5)}.stroke-blue-10\/60{stroke:rgb(var(--blue-10)/.6)}.stroke-blue-10\/70{stroke:rgb(var(--blue-10)/.7)}.stroke-blue-10\/75{stroke:rgb(var(--blue-10)/.75)}.stroke-blue-10\/80{stroke:rgb(var(--blue-10)/.8)}.stroke-blue-10\/90{stroke:rgb(var(--blue-10)/.9)}.stroke-blue-10\/95{stroke:rgb(var(--blue-10)/.95)}.stroke-blue-2\/0{stroke:rgb(var(--blue-2)/0)}.stroke-blue-2\/10{stroke:rgb(var(--blue-2)/.1)}.stroke-blue-2\/100{stroke:rgb(var(--blue-2)/1)}.stroke-blue-2\/20{stroke:rgb(var(--blue-2)/.2)}.stroke-blue-2\/25{stroke:rgb(var(--blue-2)/.25)}.stroke-blue-2\/30{stroke:rgb(var(--blue-2)/.3)}.stroke-blue-2\/40{stroke:rgb(var(--blue-2)/.4)}.stroke-blue-2\/5{stroke:rgb(var(--blue-2)/.05)}.stroke-blue-2\/50{stroke:rgb(var(--blue-2)/.5)}.stroke-blue-2\/60{stroke:rgb(var(--blue-2)/.6)}.stroke-blue-2\/70{stroke:rgb(var(--blue-2)/.7)}.stroke-blue-2\/75{stroke:rgb(var(--blue-2)/.75)}.stroke-blue-2\/80{stroke:rgb(var(--blue-2)/.8)}.stroke-blue-2\/90{stroke:rgb(var(--blue-2)/.9)}.stroke-blue-2\/95{stroke:rgb(var(--blue-2)/.95)}.stroke-blue-3\/0{stroke:rgb(var(--blue-3)/0)}.stroke-blue-3\/10{stroke:rgb(var(--blue-3)/.1)}.stroke-blue-3\/100{stroke:rgb(var(--blue-3)/1)}.stroke-blue-3\/20{stroke:rgb(var(--blue-3)/.2)}.stroke-blue-3\/25{stroke:rgb(var(--blue-3)/.25)}.stroke-blue-3\/30{stroke:rgb(var(--blue-3)/.3)}.stroke-blue-3\/40{stroke:rgb(var(--blue-3)/.4)}.stroke-blue-3\/5{stroke:rgb(var(--blue-3)/.05)}.stroke-blue-3\/50{stroke:rgb(var(--blue-3)/.5)}.stroke-blue-3\/60{stroke:rgb(var(--blue-3)/.6)}.stroke-blue-3\/70{stroke:rgb(var(--blue-3)/.7)}.stroke-blue-3\/75{stroke:rgb(var(--blue-3)/.75)}.stroke-blue-3\/80{stroke:rgb(var(--blue-3)/.8)}.stroke-blue-3\/90{stroke:rgb(var(--blue-3)/.9)}.stroke-blue-3\/95{stroke:rgb(var(--blue-3)/.95)}.stroke-blue-4\/0{stroke:rgb(var(--blue-4)/0)}.stroke-blue-4\/10{stroke:rgb(var(--blue-4)/.1)}.stroke-blue-4\/100{stroke:rgb(var(--blue-4)/1)}.stroke-blue-4\/20{stroke:rgb(var(--blue-4)/.2)}.stroke-blue-4\/25{stroke:rgb(var(--blue-4)/.25)}.stroke-blue-4\/30{stroke:rgb(var(--blue-4)/.3)}.stroke-blue-4\/40{stroke:rgb(var(--blue-4)/.4)}.stroke-blue-4\/5{stroke:rgb(var(--blue-4)/.05)}.stroke-blue-4\/50{stroke:rgb(var(--blue-4)/.5)}.stroke-blue-4\/60{stroke:rgb(var(--blue-4)/.6)}.stroke-blue-4\/70{stroke:rgb(var(--blue-4)/.7)}.stroke-blue-4\/75{stroke:rgb(var(--blue-4)/.75)}.stroke-blue-4\/80{stroke:rgb(var(--blue-4)/.8)}.stroke-blue-4\/90{stroke:rgb(var(--blue-4)/.9)}.stroke-blue-4\/95{stroke:rgb(var(--blue-4)/.95)}.stroke-blue-5\/0{stroke:rgb(var(--blue-5)/0)}.stroke-blue-5\/10{stroke:rgb(var(--blue-5)/.1)}.stroke-blue-5\/100{stroke:rgb(var(--blue-5)/1)}.stroke-blue-5\/20{stroke:rgb(var(--blue-5)/.2)}.stroke-blue-5\/25{stroke:rgb(var(--blue-5)/.25)}.stroke-blue-5\/30{stroke:rgb(var(--blue-5)/.3)}.stroke-blue-5\/40{stroke:rgb(var(--blue-5)/.4)}.stroke-blue-5\/5{stroke:rgb(var(--blue-5)/.05)}.stroke-blue-5\/50{stroke:rgb(var(--blue-5)/.5)}.stroke-blue-5\/60{stroke:rgb(var(--blue-5)/.6)}.stroke-blue-5\/70{stroke:rgb(var(--blue-5)/.7)}.stroke-blue-5\/75{stroke:rgb(var(--blue-5)/.75)}.stroke-blue-5\/80{stroke:rgb(var(--blue-5)/.8)}.stroke-blue-5\/90{stroke:rgb(var(--blue-5)/.9)}.stroke-blue-5\/95{stroke:rgb(var(--blue-5)/.95)}.stroke-blue-6\/0{stroke:rgb(var(--blue-6)/0)}.stroke-blue-6\/10{stroke:rgb(var(--blue-6)/.1)}.stroke-blue-6\/100{stroke:rgb(var(--blue-6)/1)}.stroke-blue-6\/20{stroke:rgb(var(--blue-6)/.2)}.stroke-blue-6\/25{stroke:rgb(var(--blue-6)/.25)}.stroke-blue-6\/30{stroke:rgb(var(--blue-6)/.3)}.stroke-blue-6\/40{stroke:rgb(var(--blue-6)/.4)}.stroke-blue-6\/5{stroke:rgb(var(--blue-6)/.05)}.stroke-blue-6\/50{stroke:rgb(var(--blue-6)/.5)}.stroke-blue-6\/60{stroke:rgb(var(--blue-6)/.6)}.stroke-blue-6\/70{stroke:rgb(var(--blue-6)/.7)}.stroke-blue-6\/75{stroke:rgb(var(--blue-6)/.75)}.stroke-blue-6\/80{stroke:rgb(var(--blue-6)/.8)}.stroke-blue-6\/90{stroke:rgb(var(--blue-6)/.9)}.stroke-blue-6\/95{stroke:rgb(var(--blue-6)/.95)}.stroke-blue-7\/0{stroke:rgb(var(--blue-7)/0)}.stroke-blue-7\/10{stroke:rgb(var(--blue-7)/.1)}.stroke-blue-7\/100{stroke:rgb(var(--blue-7)/1)}.stroke-blue-7\/20{stroke:rgb(var(--blue-7)/.2)}.stroke-blue-7\/25{stroke:rgb(var(--blue-7)/.25)}.stroke-blue-7\/30{stroke:rgb(var(--blue-7)/.3)}.stroke-blue-7\/40{stroke:rgb(var(--blue-7)/.4)}.stroke-blue-7\/5{stroke:rgb(var(--blue-7)/.05)}.stroke-blue-7\/50{stroke:rgb(var(--blue-7)/.5)}.stroke-blue-7\/60{stroke:rgb(var(--blue-7)/.6)}.stroke-blue-7\/70{stroke:rgb(var(--blue-7)/.7)}.stroke-blue-7\/75{stroke:rgb(var(--blue-7)/.75)}.stroke-blue-7\/80{stroke:rgb(var(--blue-7)/.8)}.stroke-blue-7\/90{stroke:rgb(var(--blue-7)/.9)}.stroke-blue-7\/95{stroke:rgb(var(--blue-7)/.95)}.stroke-blue-8\/0{stroke:rgb(var(--blue-8)/0)}.stroke-blue-8\/10{stroke:rgb(var(--blue-8)/.1)}.stroke-blue-8\/100{stroke:rgb(var(--blue-8)/1)}.stroke-blue-8\/20{stroke:rgb(var(--blue-8)/.2)}.stroke-blue-8\/25{stroke:rgb(var(--blue-8)/.25)}.stroke-blue-8\/30{stroke:rgb(var(--blue-8)/.3)}.stroke-blue-8\/40{stroke:rgb(var(--blue-8)/.4)}.stroke-blue-8\/5{stroke:rgb(var(--blue-8)/.05)}.stroke-blue-8\/50{stroke:rgb(var(--blue-8)/.5)}.stroke-blue-8\/60{stroke:rgb(var(--blue-8)/.6)}.stroke-blue-8\/70{stroke:rgb(var(--blue-8)/.7)}.stroke-blue-8\/75{stroke:rgb(var(--blue-8)/.75)}.stroke-blue-8\/80{stroke:rgb(var(--blue-8)/.8)}.stroke-blue-8\/90{stroke:rgb(var(--blue-8)/.9)}.stroke-blue-8\/95{stroke:rgb(var(--blue-8)/.95)}.stroke-blue-9\/0{stroke:rgb(var(--blue-9)/0)}.stroke-blue-9\/10{stroke:rgb(var(--blue-9)/.1)}.stroke-blue-9\/100{stroke:rgb(var(--blue-9)/1)}.stroke-blue-9\/20{stroke:rgb(var(--blue-9)/.2)}.stroke-blue-9\/25{stroke:rgb(var(--blue-9)/.25)}.stroke-blue-9\/30{stroke:rgb(var(--blue-9)/.3)}.stroke-blue-9\/40{stroke:rgb(var(--blue-9)/.4)}.stroke-blue-9\/5{stroke:rgb(var(--blue-9)/.05)}.stroke-blue-9\/50{stroke:rgb(var(--blue-9)/.5)}.stroke-blue-9\/60{stroke:rgb(var(--blue-9)/.6)}.stroke-blue-9\/70{stroke:rgb(var(--blue-9)/.7)}.stroke-blue-9\/75{stroke:rgb(var(--blue-9)/.75)}.stroke-blue-9\/80{stroke:rgb(var(--blue-9)/.8)}.stroke-blue-9\/90{stroke:rgb(var(--blue-9)/.9)}.stroke-blue-9\/95{stroke:rgb(var(--blue-9)/.95)}.stroke-border{stroke:rgb(var(--border))}.stroke-border\/0{stroke:rgb(var(--border)/0)}.stroke-border\/10{stroke:rgb(var(--border)/.1)}.stroke-border\/100{stroke:rgb(var(--border)/1)}.stroke-border\/20{stroke:rgb(var(--border)/.2)}.stroke-border\/25{stroke:rgb(var(--border)/.25)}.stroke-border\/30{stroke:rgb(var(--border)/.3)}.stroke-border\/40{stroke:rgb(var(--border)/.4)}.stroke-border\/5{stroke:rgb(var(--border)/.05)}.stroke-border\/50{stroke:rgb(var(--border)/.5)}.stroke-border\/60{stroke:rgb(var(--border)/.6)}.stroke-border\/70{stroke:rgb(var(--border)/.7)}.stroke-border\/75{stroke:rgb(var(--border)/.75)}.stroke-border\/80{stroke:rgb(var(--border)/.8)}.stroke-border\/90{stroke:rgb(var(--border)/.9)}.stroke-border\/95{stroke:rgb(var(--border)/.95)}.stroke-content1{stroke:rgb(var(--content1))}.stroke-content1\/0{stroke:rgb(var(--content1)/0)}.stroke-content1\/10{stroke:rgb(var(--content1)/.1)}.stroke-content1\/100{stroke:rgb(var(--content1)/1)}.stroke-content1\/20{stroke:rgb(var(--content1)/.2)}.stroke-content1\/25{stroke:rgb(var(--content1)/.25)}.stroke-content1\/30{stroke:rgb(var(--content1)/.3)}.stroke-content1\/40{stroke:rgb(var(--content1)/.4)}.stroke-content1\/5{stroke:rgb(var(--content1)/.05)}.stroke-content1\/50{stroke:rgb(var(--content1)/.5)}.stroke-content1\/60{stroke:rgb(var(--content1)/.6)}.stroke-content1\/70{stroke:rgb(var(--content1)/.7)}.stroke-content1\/75{stroke:rgb(var(--content1)/.75)}.stroke-content1\/80{stroke:rgb(var(--content1)/.8)}.stroke-content1\/90{stroke:rgb(var(--content1)/.9)}.stroke-content1\/95{stroke:rgb(var(--content1)/.95)}.stroke-content2{stroke:rgb(var(--content2))}.stroke-content2\/0{stroke:rgb(var(--content2)/0)}.stroke-content2\/10{stroke:rgb(var(--content2)/.1)}.stroke-content2\/100{stroke:rgb(var(--content2)/1)}.stroke-content2\/20{stroke:rgb(var(--content2)/.2)}.stroke-content2\/25{stroke:rgb(var(--content2)/.25)}.stroke-content2\/30{stroke:rgb(var(--content2)/.3)}.stroke-content2\/40{stroke:rgb(var(--content2)/.4)}.stroke-content2\/5{stroke:rgb(var(--content2)/.05)}.stroke-content2\/50{stroke:rgb(var(--content2)/.5)}.stroke-content2\/60{stroke:rgb(var(--content2)/.6)}.stroke-content2\/70{stroke:rgb(var(--content2)/.7)}.stroke-content2\/75{stroke:rgb(var(--content2)/.75)}.stroke-content2\/80{stroke:rgb(var(--content2)/.8)}.stroke-content2\/90{stroke:rgb(var(--content2)/.9)}.stroke-content2\/95{stroke:rgb(var(--content2)/.95)}.stroke-content3{stroke:rgb(var(--content3))}.stroke-content3\/0{stroke:rgb(var(--content3)/0)}.stroke-content3\/10{stroke:rgb(var(--content3)/.1)}.stroke-content3\/100{stroke:rgb(var(--content3)/1)}.stroke-content3\/20{stroke:rgb(var(--content3)/.2)}.stroke-content3\/25{stroke:rgb(var(--content3)/.25)}.stroke-content3\/30{stroke:rgb(var(--content3)/.3)}.stroke-content3\/40{stroke:rgb(var(--content3)/.4)}.stroke-content3\/5{stroke:rgb(var(--content3)/.05)}.stroke-content3\/50{stroke:rgb(var(--content3)/.5)}.stroke-content3\/60{stroke:rgb(var(--content3)/.6)}.stroke-content3\/70{stroke:rgb(var(--content3)/.7)}.stroke-content3\/75{stroke:rgb(var(--content3)/.75)}.stroke-content3\/80{stroke:rgb(var(--content3)/.8)}.stroke-content3\/90{stroke:rgb(var(--content3)/.9)}.stroke-content3\/95{stroke:rgb(var(--content3)/.95)}.stroke-cyan-1\/0{stroke:rgb(var(--cyan-1)/0)}.stroke-cyan-1\/10{stroke:rgb(var(--cyan-1)/.1)}.stroke-cyan-1\/100{stroke:rgb(var(--cyan-1)/1)}.stroke-cyan-1\/20{stroke:rgb(var(--cyan-1)/.2)}.stroke-cyan-1\/25{stroke:rgb(var(--cyan-1)/.25)}.stroke-cyan-1\/30{stroke:rgb(var(--cyan-1)/.3)}.stroke-cyan-1\/40{stroke:rgb(var(--cyan-1)/.4)}.stroke-cyan-1\/5{stroke:rgb(var(--cyan-1)/.05)}.stroke-cyan-1\/50{stroke:rgb(var(--cyan-1)/.5)}.stroke-cyan-1\/60{stroke:rgb(var(--cyan-1)/.6)}.stroke-cyan-1\/70{stroke:rgb(var(--cyan-1)/.7)}.stroke-cyan-1\/75{stroke:rgb(var(--cyan-1)/.75)}.stroke-cyan-1\/80{stroke:rgb(var(--cyan-1)/.8)}.stroke-cyan-1\/90{stroke:rgb(var(--cyan-1)/.9)}.stroke-cyan-1\/95{stroke:rgb(var(--cyan-1)/.95)}.stroke-cyan-10\/0{stroke:rgb(var(--cyan-10)/0)}.stroke-cyan-10\/10{stroke:rgb(var(--cyan-10)/.1)}.stroke-cyan-10\/100{stroke:rgb(var(--cyan-10)/1)}.stroke-cyan-10\/20{stroke:rgb(var(--cyan-10)/.2)}.stroke-cyan-10\/25{stroke:rgb(var(--cyan-10)/.25)}.stroke-cyan-10\/30{stroke:rgb(var(--cyan-10)/.3)}.stroke-cyan-10\/40{stroke:rgb(var(--cyan-10)/.4)}.stroke-cyan-10\/5{stroke:rgb(var(--cyan-10)/.05)}.stroke-cyan-10\/50{stroke:rgb(var(--cyan-10)/.5)}.stroke-cyan-10\/60{stroke:rgb(var(--cyan-10)/.6)}.stroke-cyan-10\/70{stroke:rgb(var(--cyan-10)/.7)}.stroke-cyan-10\/75{stroke:rgb(var(--cyan-10)/.75)}.stroke-cyan-10\/80{stroke:rgb(var(--cyan-10)/.8)}.stroke-cyan-10\/90{stroke:rgb(var(--cyan-10)/.9)}.stroke-cyan-10\/95{stroke:rgb(var(--cyan-10)/.95)}.stroke-cyan-2\/0{stroke:rgb(var(--cyan-2)/0)}.stroke-cyan-2\/10{stroke:rgb(var(--cyan-2)/.1)}.stroke-cyan-2\/100{stroke:rgb(var(--cyan-2)/1)}.stroke-cyan-2\/20{stroke:rgb(var(--cyan-2)/.2)}.stroke-cyan-2\/25{stroke:rgb(var(--cyan-2)/.25)}.stroke-cyan-2\/30{stroke:rgb(var(--cyan-2)/.3)}.stroke-cyan-2\/40{stroke:rgb(var(--cyan-2)/.4)}.stroke-cyan-2\/5{stroke:rgb(var(--cyan-2)/.05)}.stroke-cyan-2\/50{stroke:rgb(var(--cyan-2)/.5)}.stroke-cyan-2\/60{stroke:rgb(var(--cyan-2)/.6)}.stroke-cyan-2\/70{stroke:rgb(var(--cyan-2)/.7)}.stroke-cyan-2\/75{stroke:rgb(var(--cyan-2)/.75)}.stroke-cyan-2\/80{stroke:rgb(var(--cyan-2)/.8)}.stroke-cyan-2\/90{stroke:rgb(var(--cyan-2)/.9)}.stroke-cyan-2\/95{stroke:rgb(var(--cyan-2)/.95)}.stroke-cyan-3\/0{stroke:rgb(var(--cyan-3)/0)}.stroke-cyan-3\/10{stroke:rgb(var(--cyan-3)/.1)}.stroke-cyan-3\/100{stroke:rgb(var(--cyan-3)/1)}.stroke-cyan-3\/20{stroke:rgb(var(--cyan-3)/.2)}.stroke-cyan-3\/25{stroke:rgb(var(--cyan-3)/.25)}.stroke-cyan-3\/30{stroke:rgb(var(--cyan-3)/.3)}.stroke-cyan-3\/40{stroke:rgb(var(--cyan-3)/.4)}.stroke-cyan-3\/5{stroke:rgb(var(--cyan-3)/.05)}.stroke-cyan-3\/50{stroke:rgb(var(--cyan-3)/.5)}.stroke-cyan-3\/60{stroke:rgb(var(--cyan-3)/.6)}.stroke-cyan-3\/70{stroke:rgb(var(--cyan-3)/.7)}.stroke-cyan-3\/75{stroke:rgb(var(--cyan-3)/.75)}.stroke-cyan-3\/80{stroke:rgb(var(--cyan-3)/.8)}.stroke-cyan-3\/90{stroke:rgb(var(--cyan-3)/.9)}.stroke-cyan-3\/95{stroke:rgb(var(--cyan-3)/.95)}.stroke-cyan-4\/0{stroke:rgb(var(--cyan-4)/0)}.stroke-cyan-4\/10{stroke:rgb(var(--cyan-4)/.1)}.stroke-cyan-4\/100{stroke:rgb(var(--cyan-4)/1)}.stroke-cyan-4\/20{stroke:rgb(var(--cyan-4)/.2)}.stroke-cyan-4\/25{stroke:rgb(var(--cyan-4)/.25)}.stroke-cyan-4\/30{stroke:rgb(var(--cyan-4)/.3)}.stroke-cyan-4\/40{stroke:rgb(var(--cyan-4)/.4)}.stroke-cyan-4\/5{stroke:rgb(var(--cyan-4)/.05)}.stroke-cyan-4\/50{stroke:rgb(var(--cyan-4)/.5)}.stroke-cyan-4\/60{stroke:rgb(var(--cyan-4)/.6)}.stroke-cyan-4\/70{stroke:rgb(var(--cyan-4)/.7)}.stroke-cyan-4\/75{stroke:rgb(var(--cyan-4)/.75)}.stroke-cyan-4\/80{stroke:rgb(var(--cyan-4)/.8)}.stroke-cyan-4\/90{stroke:rgb(var(--cyan-4)/.9)}.stroke-cyan-4\/95{stroke:rgb(var(--cyan-4)/.95)}.stroke-cyan-5\/0{stroke:rgb(var(--cyan-5)/0)}.stroke-cyan-5\/10{stroke:rgb(var(--cyan-5)/.1)}.stroke-cyan-5\/100{stroke:rgb(var(--cyan-5)/1)}.stroke-cyan-5\/20{stroke:rgb(var(--cyan-5)/.2)}.stroke-cyan-5\/25{stroke:rgb(var(--cyan-5)/.25)}.stroke-cyan-5\/30{stroke:rgb(var(--cyan-5)/.3)}.stroke-cyan-5\/40{stroke:rgb(var(--cyan-5)/.4)}.stroke-cyan-5\/5{stroke:rgb(var(--cyan-5)/.05)}.stroke-cyan-5\/50{stroke:rgb(var(--cyan-5)/.5)}.stroke-cyan-5\/60{stroke:rgb(var(--cyan-5)/.6)}.stroke-cyan-5\/70{stroke:rgb(var(--cyan-5)/.7)}.stroke-cyan-5\/75{stroke:rgb(var(--cyan-5)/.75)}.stroke-cyan-5\/80{stroke:rgb(var(--cyan-5)/.8)}.stroke-cyan-5\/90{stroke:rgb(var(--cyan-5)/.9)}.stroke-cyan-5\/95{stroke:rgb(var(--cyan-5)/.95)}.stroke-cyan-6\/0{stroke:rgb(var(--cyan-6)/0)}.stroke-cyan-6\/10{stroke:rgb(var(--cyan-6)/.1)}.stroke-cyan-6\/100{stroke:rgb(var(--cyan-6)/1)}.stroke-cyan-6\/20{stroke:rgb(var(--cyan-6)/.2)}.stroke-cyan-6\/25{stroke:rgb(var(--cyan-6)/.25)}.stroke-cyan-6\/30{stroke:rgb(var(--cyan-6)/.3)}.stroke-cyan-6\/40{stroke:rgb(var(--cyan-6)/.4)}.stroke-cyan-6\/5{stroke:rgb(var(--cyan-6)/.05)}.stroke-cyan-6\/50{stroke:rgb(var(--cyan-6)/.5)}.stroke-cyan-6\/60{stroke:rgb(var(--cyan-6)/.6)}.stroke-cyan-6\/70{stroke:rgb(var(--cyan-6)/.7)}.stroke-cyan-6\/75{stroke:rgb(var(--cyan-6)/.75)}.stroke-cyan-6\/80{stroke:rgb(var(--cyan-6)/.8)}.stroke-cyan-6\/90{stroke:rgb(var(--cyan-6)/.9)}.stroke-cyan-6\/95{stroke:rgb(var(--cyan-6)/.95)}.stroke-cyan-7\/0{stroke:rgb(var(--cyan-7)/0)}.stroke-cyan-7\/10{stroke:rgb(var(--cyan-7)/.1)}.stroke-cyan-7\/100{stroke:rgb(var(--cyan-7)/1)}.stroke-cyan-7\/20{stroke:rgb(var(--cyan-7)/.2)}.stroke-cyan-7\/25{stroke:rgb(var(--cyan-7)/.25)}.stroke-cyan-7\/30{stroke:rgb(var(--cyan-7)/.3)}.stroke-cyan-7\/40{stroke:rgb(var(--cyan-7)/.4)}.stroke-cyan-7\/5{stroke:rgb(var(--cyan-7)/.05)}.stroke-cyan-7\/50{stroke:rgb(var(--cyan-7)/.5)}.stroke-cyan-7\/60{stroke:rgb(var(--cyan-7)/.6)}.stroke-cyan-7\/70{stroke:rgb(var(--cyan-7)/.7)}.stroke-cyan-7\/75{stroke:rgb(var(--cyan-7)/.75)}.stroke-cyan-7\/80{stroke:rgb(var(--cyan-7)/.8)}.stroke-cyan-7\/90{stroke:rgb(var(--cyan-7)/.9)}.stroke-cyan-7\/95{stroke:rgb(var(--cyan-7)/.95)}.stroke-cyan-8\/0{stroke:rgb(var(--cyan-8)/0)}.stroke-cyan-8\/10{stroke:rgb(var(--cyan-8)/.1)}.stroke-cyan-8\/100{stroke:rgb(var(--cyan-8)/1)}.stroke-cyan-8\/20{stroke:rgb(var(--cyan-8)/.2)}.stroke-cyan-8\/25{stroke:rgb(var(--cyan-8)/.25)}.stroke-cyan-8\/30{stroke:rgb(var(--cyan-8)/.3)}.stroke-cyan-8\/40{stroke:rgb(var(--cyan-8)/.4)}.stroke-cyan-8\/5{stroke:rgb(var(--cyan-8)/.05)}.stroke-cyan-8\/50{stroke:rgb(var(--cyan-8)/.5)}.stroke-cyan-8\/60{stroke:rgb(var(--cyan-8)/.6)}.stroke-cyan-8\/70{stroke:rgb(var(--cyan-8)/.7)}.stroke-cyan-8\/75{stroke:rgb(var(--cyan-8)/.75)}.stroke-cyan-8\/80{stroke:rgb(var(--cyan-8)/.8)}.stroke-cyan-8\/90{stroke:rgb(var(--cyan-8)/.9)}.stroke-cyan-8\/95{stroke:rgb(var(--cyan-8)/.95)}.stroke-cyan-9\/0{stroke:rgb(var(--cyan-9)/0)}.stroke-cyan-9\/10{stroke:rgb(var(--cyan-9)/.1)}.stroke-cyan-9\/100{stroke:rgb(var(--cyan-9)/1)}.stroke-cyan-9\/20{stroke:rgb(var(--cyan-9)/.2)}.stroke-cyan-9\/25{stroke:rgb(var(--cyan-9)/.25)}.stroke-cyan-9\/30{stroke:rgb(var(--cyan-9)/.3)}.stroke-cyan-9\/40{stroke:rgb(var(--cyan-9)/.4)}.stroke-cyan-9\/5{stroke:rgb(var(--cyan-9)/.05)}.stroke-cyan-9\/50{stroke:rgb(var(--cyan-9)/.5)}.stroke-cyan-9\/60{stroke:rgb(var(--cyan-9)/.6)}.stroke-cyan-9\/70{stroke:rgb(var(--cyan-9)/.7)}.stroke-cyan-9\/75{stroke:rgb(var(--cyan-9)/.75)}.stroke-cyan-9\/80{stroke:rgb(var(--cyan-9)/.8)}.stroke-cyan-9\/90{stroke:rgb(var(--cyan-9)/.9)}.stroke-cyan-9\/95{stroke:rgb(var(--cyan-9)/.95)}.stroke-error{stroke:rgb(var(--error))}.stroke-error\/0{stroke:rgb(var(--error)/0)}.stroke-error\/10{stroke:rgb(var(--error)/.1)}.stroke-error\/100{stroke:rgb(var(--error)/1)}.stroke-error\/20{stroke:rgb(var(--error)/.2)}.stroke-error\/25{stroke:rgb(var(--error)/.25)}.stroke-error\/30{stroke:rgb(var(--error)/.3)}.stroke-error\/40{stroke:rgb(var(--error)/.4)}.stroke-error\/5{stroke:rgb(var(--error)/.05)}.stroke-error\/50{stroke:rgb(var(--error)/.5)}.stroke-error\/60{stroke:rgb(var(--error)/.6)}.stroke-error\/70{stroke:rgb(var(--error)/.7)}.stroke-error\/75{stroke:rgb(var(--error)/.75)}.stroke-error\/80{stroke:rgb(var(--error)/.8)}.stroke-error\/90{stroke:rgb(var(--error)/.9)}.stroke-error\/95{stroke:rgb(var(--error)/.95)}.stroke-gray-1\/0{stroke:rgb(var(--gray-1)/0)}.stroke-gray-1\/10{stroke:rgb(var(--gray-1)/.1)}.stroke-gray-1\/100{stroke:rgb(var(--gray-1)/1)}.stroke-gray-1\/20{stroke:rgb(var(--gray-1)/.2)}.stroke-gray-1\/25{stroke:rgb(var(--gray-1)/.25)}.stroke-gray-1\/30{stroke:rgb(var(--gray-1)/.3)}.stroke-gray-1\/40{stroke:rgb(var(--gray-1)/.4)}.stroke-gray-1\/5{stroke:rgb(var(--gray-1)/.05)}.stroke-gray-1\/50{stroke:rgb(var(--gray-1)/.5)}.stroke-gray-1\/60{stroke:rgb(var(--gray-1)/.6)}.stroke-gray-1\/70{stroke:rgb(var(--gray-1)/.7)}.stroke-gray-1\/75{stroke:rgb(var(--gray-1)/.75)}.stroke-gray-1\/80{stroke:rgb(var(--gray-1)/.8)}.stroke-gray-1\/90{stroke:rgb(var(--gray-1)/.9)}.stroke-gray-1\/95{stroke:rgb(var(--gray-1)/.95)}.stroke-gray-10\/0{stroke:rgb(var(--gray-10)/0)}.stroke-gray-10\/10{stroke:rgb(var(--gray-10)/.1)}.stroke-gray-10\/100{stroke:rgb(var(--gray-10)/1)}.stroke-gray-10\/20{stroke:rgb(var(--gray-10)/.2)}.stroke-gray-10\/25{stroke:rgb(var(--gray-10)/.25)}.stroke-gray-10\/30{stroke:rgb(var(--gray-10)/.3)}.stroke-gray-10\/40{stroke:rgb(var(--gray-10)/.4)}.stroke-gray-10\/5{stroke:rgb(var(--gray-10)/.05)}.stroke-gray-10\/50{stroke:rgb(var(--gray-10)/.5)}.stroke-gray-10\/60{stroke:rgb(var(--gray-10)/.6)}.stroke-gray-10\/70{stroke:rgb(var(--gray-10)/.7)}.stroke-gray-10\/75{stroke:rgb(var(--gray-10)/.75)}.stroke-gray-10\/80{stroke:rgb(var(--gray-10)/.8)}.stroke-gray-10\/90{stroke:rgb(var(--gray-10)/.9)}.stroke-gray-10\/95{stroke:rgb(var(--gray-10)/.95)}.stroke-gray-2\/0{stroke:rgb(var(--gray-2)/0)}.stroke-gray-2\/10{stroke:rgb(var(--gray-2)/.1)}.stroke-gray-2\/100{stroke:rgb(var(--gray-2)/1)}.stroke-gray-2\/20{stroke:rgb(var(--gray-2)/.2)}.stroke-gray-2\/25{stroke:rgb(var(--gray-2)/.25)}.stroke-gray-2\/30{stroke:rgb(var(--gray-2)/.3)}.stroke-gray-2\/40{stroke:rgb(var(--gray-2)/.4)}.stroke-gray-2\/5{stroke:rgb(var(--gray-2)/.05)}.stroke-gray-2\/50{stroke:rgb(var(--gray-2)/.5)}.stroke-gray-2\/60{stroke:rgb(var(--gray-2)/.6)}.stroke-gray-2\/70{stroke:rgb(var(--gray-2)/.7)}.stroke-gray-2\/75{stroke:rgb(var(--gray-2)/.75)}.stroke-gray-2\/80{stroke:rgb(var(--gray-2)/.8)}.stroke-gray-2\/90{stroke:rgb(var(--gray-2)/.9)}.stroke-gray-2\/95{stroke:rgb(var(--gray-2)/.95)}.stroke-gray-3\/0{stroke:rgb(var(--gray-3)/0)}.stroke-gray-3\/10{stroke:rgb(var(--gray-3)/.1)}.stroke-gray-3\/100{stroke:rgb(var(--gray-3)/1)}.stroke-gray-3\/20{stroke:rgb(var(--gray-3)/.2)}.stroke-gray-3\/25{stroke:rgb(var(--gray-3)/.25)}.stroke-gray-3\/30{stroke:rgb(var(--gray-3)/.3)}.stroke-gray-3\/40{stroke:rgb(var(--gray-3)/.4)}.stroke-gray-3\/5{stroke:rgb(var(--gray-3)/.05)}.stroke-gray-3\/50{stroke:rgb(var(--gray-3)/.5)}.stroke-gray-3\/60{stroke:rgb(var(--gray-3)/.6)}.stroke-gray-3\/70{stroke:rgb(var(--gray-3)/.7)}.stroke-gray-3\/75{stroke:rgb(var(--gray-3)/.75)}.stroke-gray-3\/80{stroke:rgb(var(--gray-3)/.8)}.stroke-gray-3\/90{stroke:rgb(var(--gray-3)/.9)}.stroke-gray-3\/95{stroke:rgb(var(--gray-3)/.95)}.stroke-gray-4\/0{stroke:rgb(var(--gray-4)/0)}.stroke-gray-4\/10{stroke:rgb(var(--gray-4)/.1)}.stroke-gray-4\/100{stroke:rgb(var(--gray-4)/1)}.stroke-gray-4\/20{stroke:rgb(var(--gray-4)/.2)}.stroke-gray-4\/25{stroke:rgb(var(--gray-4)/.25)}.stroke-gray-4\/30{stroke:rgb(var(--gray-4)/.3)}.stroke-gray-4\/40{stroke:rgb(var(--gray-4)/.4)}.stroke-gray-4\/5{stroke:rgb(var(--gray-4)/.05)}.stroke-gray-4\/50{stroke:rgb(var(--gray-4)/.5)}.stroke-gray-4\/60{stroke:rgb(var(--gray-4)/.6)}.stroke-gray-4\/70{stroke:rgb(var(--gray-4)/.7)}.stroke-gray-4\/75{stroke:rgb(var(--gray-4)/.75)}.stroke-gray-4\/80{stroke:rgb(var(--gray-4)/.8)}.stroke-gray-4\/90{stroke:rgb(var(--gray-4)/.9)}.stroke-gray-4\/95{stroke:rgb(var(--gray-4)/.95)}.stroke-gray-5\/0{stroke:rgb(var(--gray-5)/0)}.stroke-gray-5\/10{stroke:rgb(var(--gray-5)/.1)}.stroke-gray-5\/100{stroke:rgb(var(--gray-5)/1)}.stroke-gray-5\/20{stroke:rgb(var(--gray-5)/.2)}.stroke-gray-5\/25{stroke:rgb(var(--gray-5)/.25)}.stroke-gray-5\/30{stroke:rgb(var(--gray-5)/.3)}.stroke-gray-5\/40{stroke:rgb(var(--gray-5)/.4)}.stroke-gray-5\/5{stroke:rgb(var(--gray-5)/.05)}.stroke-gray-5\/50{stroke:rgb(var(--gray-5)/.5)}.stroke-gray-5\/60{stroke:rgb(var(--gray-5)/.6)}.stroke-gray-5\/70{stroke:rgb(var(--gray-5)/.7)}.stroke-gray-5\/75{stroke:rgb(var(--gray-5)/.75)}.stroke-gray-5\/80{stroke:rgb(var(--gray-5)/.8)}.stroke-gray-5\/90{stroke:rgb(var(--gray-5)/.9)}.stroke-gray-5\/95{stroke:rgb(var(--gray-5)/.95)}.stroke-gray-6\/0{stroke:rgb(var(--gray-6)/0)}.stroke-gray-6\/10{stroke:rgb(var(--gray-6)/.1)}.stroke-gray-6\/100{stroke:rgb(var(--gray-6)/1)}.stroke-gray-6\/20{stroke:rgb(var(--gray-6)/.2)}.stroke-gray-6\/25{stroke:rgb(var(--gray-6)/.25)}.stroke-gray-6\/30{stroke:rgb(var(--gray-6)/.3)}.stroke-gray-6\/40{stroke:rgb(var(--gray-6)/.4)}.stroke-gray-6\/5{stroke:rgb(var(--gray-6)/.05)}.stroke-gray-6\/50{stroke:rgb(var(--gray-6)/.5)}.stroke-gray-6\/60{stroke:rgb(var(--gray-6)/.6)}.stroke-gray-6\/70{stroke:rgb(var(--gray-6)/.7)}.stroke-gray-6\/75{stroke:rgb(var(--gray-6)/.75)}.stroke-gray-6\/80{stroke:rgb(var(--gray-6)/.8)}.stroke-gray-6\/90{stroke:rgb(var(--gray-6)/.9)}.stroke-gray-6\/95{stroke:rgb(var(--gray-6)/.95)}.stroke-gray-7\/0{stroke:rgb(var(--gray-7)/0)}.stroke-gray-7\/10{stroke:rgb(var(--gray-7)/.1)}.stroke-gray-7\/100{stroke:rgb(var(--gray-7)/1)}.stroke-gray-7\/20{stroke:rgb(var(--gray-7)/.2)}.stroke-gray-7\/25{stroke:rgb(var(--gray-7)/.25)}.stroke-gray-7\/30{stroke:rgb(var(--gray-7)/.3)}.stroke-gray-7\/40{stroke:rgb(var(--gray-7)/.4)}.stroke-gray-7\/5{stroke:rgb(var(--gray-7)/.05)}.stroke-gray-7\/50{stroke:rgb(var(--gray-7)/.5)}.stroke-gray-7\/60{stroke:rgb(var(--gray-7)/.6)}.stroke-gray-7\/70{stroke:rgb(var(--gray-7)/.7)}.stroke-gray-7\/75{stroke:rgb(var(--gray-7)/.75)}.stroke-gray-7\/80{stroke:rgb(var(--gray-7)/.8)}.stroke-gray-7\/90{stroke:rgb(var(--gray-7)/.9)}.stroke-gray-7\/95{stroke:rgb(var(--gray-7)/.95)}.stroke-gray-8\/0{stroke:rgb(var(--gray-8)/0)}.stroke-gray-8\/10{stroke:rgb(var(--gray-8)/.1)}.stroke-gray-8\/100{stroke:rgb(var(--gray-8)/1)}.stroke-gray-8\/20{stroke:rgb(var(--gray-8)/.2)}.stroke-gray-8\/25{stroke:rgb(var(--gray-8)/.25)}.stroke-gray-8\/30{stroke:rgb(var(--gray-8)/.3)}.stroke-gray-8\/40{stroke:rgb(var(--gray-8)/.4)}.stroke-gray-8\/5{stroke:rgb(var(--gray-8)/.05)}.stroke-gray-8\/50{stroke:rgb(var(--gray-8)/.5)}.stroke-gray-8\/60{stroke:rgb(var(--gray-8)/.6)}.stroke-gray-8\/70{stroke:rgb(var(--gray-8)/.7)}.stroke-gray-8\/75{stroke:rgb(var(--gray-8)/.75)}.stroke-gray-8\/80{stroke:rgb(var(--gray-8)/.8)}.stroke-gray-8\/90{stroke:rgb(var(--gray-8)/.9)}.stroke-gray-8\/95{stroke:rgb(var(--gray-8)/.95)}.stroke-gray-9\/0{stroke:rgb(var(--gray-9)/0)}.stroke-gray-9\/10{stroke:rgb(var(--gray-9)/.1)}.stroke-gray-9\/100{stroke:rgb(var(--gray-9)/1)}.stroke-gray-9\/20{stroke:rgb(var(--gray-9)/.2)}.stroke-gray-9\/25{stroke:rgb(var(--gray-9)/.25)}.stroke-gray-9\/30{stroke:rgb(var(--gray-9)/.3)}.stroke-gray-9\/40{stroke:rgb(var(--gray-9)/.4)}.stroke-gray-9\/5{stroke:rgb(var(--gray-9)/.05)}.stroke-gray-9\/50{stroke:rgb(var(--gray-9)/.5)}.stroke-gray-9\/60{stroke:rgb(var(--gray-9)/.6)}.stroke-gray-9\/70{stroke:rgb(var(--gray-9)/.7)}.stroke-gray-9\/75{stroke:rgb(var(--gray-9)/.75)}.stroke-gray-9\/80{stroke:rgb(var(--gray-9)/.8)}.stroke-gray-9\/90{stroke:rgb(var(--gray-9)/.9)}.stroke-gray-9\/95{stroke:rgb(var(--gray-9)/.95)}.stroke-green-1\/0{stroke:rgb(var(--green-1)/0)}.stroke-green-1\/10{stroke:rgb(var(--green-1)/.1)}.stroke-green-1\/100{stroke:rgb(var(--green-1)/1)}.stroke-green-1\/20{stroke:rgb(var(--green-1)/.2)}.stroke-green-1\/25{stroke:rgb(var(--green-1)/.25)}.stroke-green-1\/30{stroke:rgb(var(--green-1)/.3)}.stroke-green-1\/40{stroke:rgb(var(--green-1)/.4)}.stroke-green-1\/5{stroke:rgb(var(--green-1)/.05)}.stroke-green-1\/50{stroke:rgb(var(--green-1)/.5)}.stroke-green-1\/60{stroke:rgb(var(--green-1)/.6)}.stroke-green-1\/70{stroke:rgb(var(--green-1)/.7)}.stroke-green-1\/75{stroke:rgb(var(--green-1)/.75)}.stroke-green-1\/80{stroke:rgb(var(--green-1)/.8)}.stroke-green-1\/90{stroke:rgb(var(--green-1)/.9)}.stroke-green-1\/95{stroke:rgb(var(--green-1)/.95)}.stroke-green-10\/0{stroke:rgb(var(--green-10)/0)}.stroke-green-10\/10{stroke:rgb(var(--green-10)/.1)}.stroke-green-10\/100{stroke:rgb(var(--green-10)/1)}.stroke-green-10\/20{stroke:rgb(var(--green-10)/.2)}.stroke-green-10\/25{stroke:rgb(var(--green-10)/.25)}.stroke-green-10\/30{stroke:rgb(var(--green-10)/.3)}.stroke-green-10\/40{stroke:rgb(var(--green-10)/.4)}.stroke-green-10\/5{stroke:rgb(var(--green-10)/.05)}.stroke-green-10\/50{stroke:rgb(var(--green-10)/.5)}.stroke-green-10\/60{stroke:rgb(var(--green-10)/.6)}.stroke-green-10\/70{stroke:rgb(var(--green-10)/.7)}.stroke-green-10\/75{stroke:rgb(var(--green-10)/.75)}.stroke-green-10\/80{stroke:rgb(var(--green-10)/.8)}.stroke-green-10\/90{stroke:rgb(var(--green-10)/.9)}.stroke-green-10\/95{stroke:rgb(var(--green-10)/.95)}.stroke-green-2\/0{stroke:rgb(var(--green-2)/0)}.stroke-green-2\/10{stroke:rgb(var(--green-2)/.1)}.stroke-green-2\/100{stroke:rgb(var(--green-2)/1)}.stroke-green-2\/20{stroke:rgb(var(--green-2)/.2)}.stroke-green-2\/25{stroke:rgb(var(--green-2)/.25)}.stroke-green-2\/30{stroke:rgb(var(--green-2)/.3)}.stroke-green-2\/40{stroke:rgb(var(--green-2)/.4)}.stroke-green-2\/5{stroke:rgb(var(--green-2)/.05)}.stroke-green-2\/50{stroke:rgb(var(--green-2)/.5)}.stroke-green-2\/60{stroke:rgb(var(--green-2)/.6)}.stroke-green-2\/70{stroke:rgb(var(--green-2)/.7)}.stroke-green-2\/75{stroke:rgb(var(--green-2)/.75)}.stroke-green-2\/80{stroke:rgb(var(--green-2)/.8)}.stroke-green-2\/90{stroke:rgb(var(--green-2)/.9)}.stroke-green-2\/95{stroke:rgb(var(--green-2)/.95)}.stroke-green-3\/0{stroke:rgb(var(--green-3)/0)}.stroke-green-3\/10{stroke:rgb(var(--green-3)/.1)}.stroke-green-3\/100{stroke:rgb(var(--green-3)/1)}.stroke-green-3\/20{stroke:rgb(var(--green-3)/.2)}.stroke-green-3\/25{stroke:rgb(var(--green-3)/.25)}.stroke-green-3\/30{stroke:rgb(var(--green-3)/.3)}.stroke-green-3\/40{stroke:rgb(var(--green-3)/.4)}.stroke-green-3\/5{stroke:rgb(var(--green-3)/.05)}.stroke-green-3\/50{stroke:rgb(var(--green-3)/.5)}.stroke-green-3\/60{stroke:rgb(var(--green-3)/.6)}.stroke-green-3\/70{stroke:rgb(var(--green-3)/.7)}.stroke-green-3\/75{stroke:rgb(var(--green-3)/.75)}.stroke-green-3\/80{stroke:rgb(var(--green-3)/.8)}.stroke-green-3\/90{stroke:rgb(var(--green-3)/.9)}.stroke-green-3\/95{stroke:rgb(var(--green-3)/.95)}.stroke-green-4\/0{stroke:rgb(var(--green-4)/0)}.stroke-green-4\/10{stroke:rgb(var(--green-4)/.1)}.stroke-green-4\/100{stroke:rgb(var(--green-4)/1)}.stroke-green-4\/20{stroke:rgb(var(--green-4)/.2)}.stroke-green-4\/25{stroke:rgb(var(--green-4)/.25)}.stroke-green-4\/30{stroke:rgb(var(--green-4)/.3)}.stroke-green-4\/40{stroke:rgb(var(--green-4)/.4)}.stroke-green-4\/5{stroke:rgb(var(--green-4)/.05)}.stroke-green-4\/50{stroke:rgb(var(--green-4)/.5)}.stroke-green-4\/60{stroke:rgb(var(--green-4)/.6)}.stroke-green-4\/70{stroke:rgb(var(--green-4)/.7)}.stroke-green-4\/75{stroke:rgb(var(--green-4)/.75)}.stroke-green-4\/80{stroke:rgb(var(--green-4)/.8)}.stroke-green-4\/90{stroke:rgb(var(--green-4)/.9)}.stroke-green-4\/95{stroke:rgb(var(--green-4)/.95)}.stroke-green-5\/0{stroke:rgb(var(--green-5)/0)}.stroke-green-5\/10{stroke:rgb(var(--green-5)/.1)}.stroke-green-5\/100{stroke:rgb(var(--green-5)/1)}.stroke-green-5\/20{stroke:rgb(var(--green-5)/.2)}.stroke-green-5\/25{stroke:rgb(var(--green-5)/.25)}.stroke-green-5\/30{stroke:rgb(var(--green-5)/.3)}.stroke-green-5\/40{stroke:rgb(var(--green-5)/.4)}.stroke-green-5\/5{stroke:rgb(var(--green-5)/.05)}.stroke-green-5\/50{stroke:rgb(var(--green-5)/.5)}.stroke-green-5\/60{stroke:rgb(var(--green-5)/.6)}.stroke-green-5\/70{stroke:rgb(var(--green-5)/.7)}.stroke-green-5\/75{stroke:rgb(var(--green-5)/.75)}.stroke-green-5\/80{stroke:rgb(var(--green-5)/.8)}.stroke-green-5\/90{stroke:rgb(var(--green-5)/.9)}.stroke-green-5\/95{stroke:rgb(var(--green-5)/.95)}.stroke-green-6\/0{stroke:rgb(var(--green-6)/0)}.stroke-green-6\/10{stroke:rgb(var(--green-6)/.1)}.stroke-green-6\/100{stroke:rgb(var(--green-6)/1)}.stroke-green-6\/20{stroke:rgb(var(--green-6)/.2)}.stroke-green-6\/25{stroke:rgb(var(--green-6)/.25)}.stroke-green-6\/30{stroke:rgb(var(--green-6)/.3)}.stroke-green-6\/40{stroke:rgb(var(--green-6)/.4)}.stroke-green-6\/5{stroke:rgb(var(--green-6)/.05)}.stroke-green-6\/50{stroke:rgb(var(--green-6)/.5)}.stroke-green-6\/60{stroke:rgb(var(--green-6)/.6)}.stroke-green-6\/70{stroke:rgb(var(--green-6)/.7)}.stroke-green-6\/75{stroke:rgb(var(--green-6)/.75)}.stroke-green-6\/80{stroke:rgb(var(--green-6)/.8)}.stroke-green-6\/90{stroke:rgb(var(--green-6)/.9)}.stroke-green-6\/95{stroke:rgb(var(--green-6)/.95)}.stroke-green-7\/0{stroke:rgb(var(--green-7)/0)}.stroke-green-7\/10{stroke:rgb(var(--green-7)/.1)}.stroke-green-7\/100{stroke:rgb(var(--green-7)/1)}.stroke-green-7\/20{stroke:rgb(var(--green-7)/.2)}.stroke-green-7\/25{stroke:rgb(var(--green-7)/.25)}.stroke-green-7\/30{stroke:rgb(var(--green-7)/.3)}.stroke-green-7\/40{stroke:rgb(var(--green-7)/.4)}.stroke-green-7\/5{stroke:rgb(var(--green-7)/.05)}.stroke-green-7\/50{stroke:rgb(var(--green-7)/.5)}.stroke-green-7\/60{stroke:rgb(var(--green-7)/.6)}.stroke-green-7\/70{stroke:rgb(var(--green-7)/.7)}.stroke-green-7\/75{stroke:rgb(var(--green-7)/.75)}.stroke-green-7\/80{stroke:rgb(var(--green-7)/.8)}.stroke-green-7\/90{stroke:rgb(var(--green-7)/.9)}.stroke-green-7\/95{stroke:rgb(var(--green-7)/.95)}.stroke-green-8\/0{stroke:rgb(var(--green-8)/0)}.stroke-green-8\/10{stroke:rgb(var(--green-8)/.1)}.stroke-green-8\/100{stroke:rgb(var(--green-8)/1)}.stroke-green-8\/20{stroke:rgb(var(--green-8)/.2)}.stroke-green-8\/25{stroke:rgb(var(--green-8)/.25)}.stroke-green-8\/30{stroke:rgb(var(--green-8)/.3)}.stroke-green-8\/40{stroke:rgb(var(--green-8)/.4)}.stroke-green-8\/5{stroke:rgb(var(--green-8)/.05)}.stroke-green-8\/50{stroke:rgb(var(--green-8)/.5)}.stroke-green-8\/60{stroke:rgb(var(--green-8)/.6)}.stroke-green-8\/70{stroke:rgb(var(--green-8)/.7)}.stroke-green-8\/75{stroke:rgb(var(--green-8)/.75)}.stroke-green-8\/80{stroke:rgb(var(--green-8)/.8)}.stroke-green-8\/90{stroke:rgb(var(--green-8)/.9)}.stroke-green-8\/95{stroke:rgb(var(--green-8)/.95)}.stroke-green-9\/0{stroke:rgb(var(--green-9)/0)}.stroke-green-9\/10{stroke:rgb(var(--green-9)/.1)}.stroke-green-9\/100{stroke:rgb(var(--green-9)/1)}.stroke-green-9\/20{stroke:rgb(var(--green-9)/.2)}.stroke-green-9\/25{stroke:rgb(var(--green-9)/.25)}.stroke-green-9\/30{stroke:rgb(var(--green-9)/.3)}.stroke-green-9\/40{stroke:rgb(var(--green-9)/.4)}.stroke-green-9\/5{stroke:rgb(var(--green-9)/.05)}.stroke-green-9\/50{stroke:rgb(var(--green-9)/.5)}.stroke-green-9\/60{stroke:rgb(var(--green-9)/.6)}.stroke-green-9\/70{stroke:rgb(var(--green-9)/.7)}.stroke-green-9\/75{stroke:rgb(var(--green-9)/.75)}.stroke-green-9\/80{stroke:rgb(var(--green-9)/.8)}.stroke-green-9\/90{stroke:rgb(var(--green-9)/.9)}.stroke-green-9\/95{stroke:rgb(var(--green-9)/.95)}.stroke-pink-1\/0{stroke:rgb(var(--pink-1)/0)}.stroke-pink-1\/10{stroke:rgb(var(--pink-1)/.1)}.stroke-pink-1\/100{stroke:rgb(var(--pink-1)/1)}.stroke-pink-1\/20{stroke:rgb(var(--pink-1)/.2)}.stroke-pink-1\/25{stroke:rgb(var(--pink-1)/.25)}.stroke-pink-1\/30{stroke:rgb(var(--pink-1)/.3)}.stroke-pink-1\/40{stroke:rgb(var(--pink-1)/.4)}.stroke-pink-1\/5{stroke:rgb(var(--pink-1)/.05)}.stroke-pink-1\/50{stroke:rgb(var(--pink-1)/.5)}.stroke-pink-1\/60{stroke:rgb(var(--pink-1)/.6)}.stroke-pink-1\/70{stroke:rgb(var(--pink-1)/.7)}.stroke-pink-1\/75{stroke:rgb(var(--pink-1)/.75)}.stroke-pink-1\/80{stroke:rgb(var(--pink-1)/.8)}.stroke-pink-1\/90{stroke:rgb(var(--pink-1)/.9)}.stroke-pink-1\/95{stroke:rgb(var(--pink-1)/.95)}.stroke-pink-10\/0{stroke:rgb(var(--pink-10)/0)}.stroke-pink-10\/10{stroke:rgb(var(--pink-10)/.1)}.stroke-pink-10\/100{stroke:rgb(var(--pink-10)/1)}.stroke-pink-10\/20{stroke:rgb(var(--pink-10)/.2)}.stroke-pink-10\/25{stroke:rgb(var(--pink-10)/.25)}.stroke-pink-10\/30{stroke:rgb(var(--pink-10)/.3)}.stroke-pink-10\/40{stroke:rgb(var(--pink-10)/.4)}.stroke-pink-10\/5{stroke:rgb(var(--pink-10)/.05)}.stroke-pink-10\/50{stroke:rgb(var(--pink-10)/.5)}.stroke-pink-10\/60{stroke:rgb(var(--pink-10)/.6)}.stroke-pink-10\/70{stroke:rgb(var(--pink-10)/.7)}.stroke-pink-10\/75{stroke:rgb(var(--pink-10)/.75)}.stroke-pink-10\/80{stroke:rgb(var(--pink-10)/.8)}.stroke-pink-10\/90{stroke:rgb(var(--pink-10)/.9)}.stroke-pink-10\/95{stroke:rgb(var(--pink-10)/.95)}.stroke-pink-2\/0{stroke:rgb(var(--pink-2)/0)}.stroke-pink-2\/10{stroke:rgb(var(--pink-2)/.1)}.stroke-pink-2\/100{stroke:rgb(var(--pink-2)/1)}.stroke-pink-2\/20{stroke:rgb(var(--pink-2)/.2)}.stroke-pink-2\/25{stroke:rgb(var(--pink-2)/.25)}.stroke-pink-2\/30{stroke:rgb(var(--pink-2)/.3)}.stroke-pink-2\/40{stroke:rgb(var(--pink-2)/.4)}.stroke-pink-2\/5{stroke:rgb(var(--pink-2)/.05)}.stroke-pink-2\/50{stroke:rgb(var(--pink-2)/.5)}.stroke-pink-2\/60{stroke:rgb(var(--pink-2)/.6)}.stroke-pink-2\/70{stroke:rgb(var(--pink-2)/.7)}.stroke-pink-2\/75{stroke:rgb(var(--pink-2)/.75)}.stroke-pink-2\/80{stroke:rgb(var(--pink-2)/.8)}.stroke-pink-2\/90{stroke:rgb(var(--pink-2)/.9)}.stroke-pink-2\/95{stroke:rgb(var(--pink-2)/.95)}.stroke-pink-3\/0{stroke:rgb(var(--pink-3)/0)}.stroke-pink-3\/10{stroke:rgb(var(--pink-3)/.1)}.stroke-pink-3\/100{stroke:rgb(var(--pink-3)/1)}.stroke-pink-3\/20{stroke:rgb(var(--pink-3)/.2)}.stroke-pink-3\/25{stroke:rgb(var(--pink-3)/.25)}.stroke-pink-3\/30{stroke:rgb(var(--pink-3)/.3)}.stroke-pink-3\/40{stroke:rgb(var(--pink-3)/.4)}.stroke-pink-3\/5{stroke:rgb(var(--pink-3)/.05)}.stroke-pink-3\/50{stroke:rgb(var(--pink-3)/.5)}.stroke-pink-3\/60{stroke:rgb(var(--pink-3)/.6)}.stroke-pink-3\/70{stroke:rgb(var(--pink-3)/.7)}.stroke-pink-3\/75{stroke:rgb(var(--pink-3)/.75)}.stroke-pink-3\/80{stroke:rgb(var(--pink-3)/.8)}.stroke-pink-3\/90{stroke:rgb(var(--pink-3)/.9)}.stroke-pink-3\/95{stroke:rgb(var(--pink-3)/.95)}.stroke-pink-4\/0{stroke:rgb(var(--pink-4)/0)}.stroke-pink-4\/10{stroke:rgb(var(--pink-4)/.1)}.stroke-pink-4\/100{stroke:rgb(var(--pink-4)/1)}.stroke-pink-4\/20{stroke:rgb(var(--pink-4)/.2)}.stroke-pink-4\/25{stroke:rgb(var(--pink-4)/.25)}.stroke-pink-4\/30{stroke:rgb(var(--pink-4)/.3)}.stroke-pink-4\/40{stroke:rgb(var(--pink-4)/.4)}.stroke-pink-4\/5{stroke:rgb(var(--pink-4)/.05)}.stroke-pink-4\/50{stroke:rgb(var(--pink-4)/.5)}.stroke-pink-4\/60{stroke:rgb(var(--pink-4)/.6)}.stroke-pink-4\/70{stroke:rgb(var(--pink-4)/.7)}.stroke-pink-4\/75{stroke:rgb(var(--pink-4)/.75)}.stroke-pink-4\/80{stroke:rgb(var(--pink-4)/.8)}.stroke-pink-4\/90{stroke:rgb(var(--pink-4)/.9)}.stroke-pink-4\/95{stroke:rgb(var(--pink-4)/.95)}.stroke-pink-5\/0{stroke:rgb(var(--pink-5)/0)}.stroke-pink-5\/10{stroke:rgb(var(--pink-5)/.1)}.stroke-pink-5\/100{stroke:rgb(var(--pink-5)/1)}.stroke-pink-5\/20{stroke:rgb(var(--pink-5)/.2)}.stroke-pink-5\/25{stroke:rgb(var(--pink-5)/.25)}.stroke-pink-5\/30{stroke:rgb(var(--pink-5)/.3)}.stroke-pink-5\/40{stroke:rgb(var(--pink-5)/.4)}.stroke-pink-5\/5{stroke:rgb(var(--pink-5)/.05)}.stroke-pink-5\/50{stroke:rgb(var(--pink-5)/.5)}.stroke-pink-5\/60{stroke:rgb(var(--pink-5)/.6)}.stroke-pink-5\/70{stroke:rgb(var(--pink-5)/.7)}.stroke-pink-5\/75{stroke:rgb(var(--pink-5)/.75)}.stroke-pink-5\/80{stroke:rgb(var(--pink-5)/.8)}.stroke-pink-5\/90{stroke:rgb(var(--pink-5)/.9)}.stroke-pink-5\/95{stroke:rgb(var(--pink-5)/.95)}.stroke-pink-6\/0{stroke:rgb(var(--pink-6)/0)}.stroke-pink-6\/10{stroke:rgb(var(--pink-6)/.1)}.stroke-pink-6\/100{stroke:rgb(var(--pink-6)/1)}.stroke-pink-6\/20{stroke:rgb(var(--pink-6)/.2)}.stroke-pink-6\/25{stroke:rgb(var(--pink-6)/.25)}.stroke-pink-6\/30{stroke:rgb(var(--pink-6)/.3)}.stroke-pink-6\/40{stroke:rgb(var(--pink-6)/.4)}.stroke-pink-6\/5{stroke:rgb(var(--pink-6)/.05)}.stroke-pink-6\/50{stroke:rgb(var(--pink-6)/.5)}.stroke-pink-6\/60{stroke:rgb(var(--pink-6)/.6)}.stroke-pink-6\/70{stroke:rgb(var(--pink-6)/.7)}.stroke-pink-6\/75{stroke:rgb(var(--pink-6)/.75)}.stroke-pink-6\/80{stroke:rgb(var(--pink-6)/.8)}.stroke-pink-6\/90{stroke:rgb(var(--pink-6)/.9)}.stroke-pink-6\/95{stroke:rgb(var(--pink-6)/.95)}.stroke-pink-7\/0{stroke:rgb(var(--pink-7)/0)}.stroke-pink-7\/10{stroke:rgb(var(--pink-7)/.1)}.stroke-pink-7\/100{stroke:rgb(var(--pink-7)/1)}.stroke-pink-7\/20{stroke:rgb(var(--pink-7)/.2)}.stroke-pink-7\/25{stroke:rgb(var(--pink-7)/.25)}.stroke-pink-7\/30{stroke:rgb(var(--pink-7)/.3)}.stroke-pink-7\/40{stroke:rgb(var(--pink-7)/.4)}.stroke-pink-7\/5{stroke:rgb(var(--pink-7)/.05)}.stroke-pink-7\/50{stroke:rgb(var(--pink-7)/.5)}.stroke-pink-7\/60{stroke:rgb(var(--pink-7)/.6)}.stroke-pink-7\/70{stroke:rgb(var(--pink-7)/.7)}.stroke-pink-7\/75{stroke:rgb(var(--pink-7)/.75)}.stroke-pink-7\/80{stroke:rgb(var(--pink-7)/.8)}.stroke-pink-7\/90{stroke:rgb(var(--pink-7)/.9)}.stroke-pink-7\/95{stroke:rgb(var(--pink-7)/.95)}.stroke-pink-8\/0{stroke:rgb(var(--pink-8)/0)}.stroke-pink-8\/10{stroke:rgb(var(--pink-8)/.1)}.stroke-pink-8\/100{stroke:rgb(var(--pink-8)/1)}.stroke-pink-8\/20{stroke:rgb(var(--pink-8)/.2)}.stroke-pink-8\/25{stroke:rgb(var(--pink-8)/.25)}.stroke-pink-8\/30{stroke:rgb(var(--pink-8)/.3)}.stroke-pink-8\/40{stroke:rgb(var(--pink-8)/.4)}.stroke-pink-8\/5{stroke:rgb(var(--pink-8)/.05)}.stroke-pink-8\/50{stroke:rgb(var(--pink-8)/.5)}.stroke-pink-8\/60{stroke:rgb(var(--pink-8)/.6)}.stroke-pink-8\/70{stroke:rgb(var(--pink-8)/.7)}.stroke-pink-8\/75{stroke:rgb(var(--pink-8)/.75)}.stroke-pink-8\/80{stroke:rgb(var(--pink-8)/.8)}.stroke-pink-8\/90{stroke:rgb(var(--pink-8)/.9)}.stroke-pink-8\/95{stroke:rgb(var(--pink-8)/.95)}.stroke-pink-9\/0{stroke:rgb(var(--pink-9)/0)}.stroke-pink-9\/10{stroke:rgb(var(--pink-9)/.1)}.stroke-pink-9\/100{stroke:rgb(var(--pink-9)/1)}.stroke-pink-9\/20{stroke:rgb(var(--pink-9)/.2)}.stroke-pink-9\/25{stroke:rgb(var(--pink-9)/.25)}.stroke-pink-9\/30{stroke:rgb(var(--pink-9)/.3)}.stroke-pink-9\/40{stroke:rgb(var(--pink-9)/.4)}.stroke-pink-9\/5{stroke:rgb(var(--pink-9)/.05)}.stroke-pink-9\/50{stroke:rgb(var(--pink-9)/.5)}.stroke-pink-9\/60{stroke:rgb(var(--pink-9)/.6)}.stroke-pink-9\/70{stroke:rgb(var(--pink-9)/.7)}.stroke-pink-9\/75{stroke:rgb(var(--pink-9)/.75)}.stroke-pink-9\/80{stroke:rgb(var(--pink-9)/.8)}.stroke-pink-9\/90{stroke:rgb(var(--pink-9)/.9)}.stroke-pink-9\/95{stroke:rgb(var(--pink-9)/.95)}.stroke-primary{stroke:rgb(var(--primary))}.stroke-primary\/0{stroke:rgb(var(--primary)/0)}.stroke-primary\/10{stroke:rgb(var(--primary)/.1)}.stroke-primary\/100{stroke:rgb(var(--primary)/1)}.stroke-primary\/20{stroke:rgb(var(--primary)/.2)}.stroke-primary\/25{stroke:rgb(var(--primary)/.25)}.stroke-primary\/30{stroke:rgb(var(--primary)/.3)}.stroke-primary\/40{stroke:rgb(var(--primary)/.4)}.stroke-primary\/5{stroke:rgb(var(--primary)/.05)}.stroke-primary\/50{stroke:rgb(var(--primary)/.5)}.stroke-primary\/60{stroke:rgb(var(--primary)/.6)}.stroke-primary\/70{stroke:rgb(var(--primary)/.7)}.stroke-primary\/75{stroke:rgb(var(--primary)/.75)}.stroke-primary\/80{stroke:rgb(var(--primary)/.8)}.stroke-primary\/90{stroke:rgb(var(--primary)/.9)}.stroke-primary\/95{stroke:rgb(var(--primary)/.95)}.stroke-purple-1\/0{stroke:rgb(var(--purple-1)/0)}.stroke-purple-1\/10{stroke:rgb(var(--purple-1)/.1)}.stroke-purple-1\/100{stroke:rgb(var(--purple-1)/1)}.stroke-purple-1\/20{stroke:rgb(var(--purple-1)/.2)}.stroke-purple-1\/25{stroke:rgb(var(--purple-1)/.25)}.stroke-purple-1\/30{stroke:rgb(var(--purple-1)/.3)}.stroke-purple-1\/40{stroke:rgb(var(--purple-1)/.4)}.stroke-purple-1\/5{stroke:rgb(var(--purple-1)/.05)}.stroke-purple-1\/50{stroke:rgb(var(--purple-1)/.5)}.stroke-purple-1\/60{stroke:rgb(var(--purple-1)/.6)}.stroke-purple-1\/70{stroke:rgb(var(--purple-1)/.7)}.stroke-purple-1\/75{stroke:rgb(var(--purple-1)/.75)}.stroke-purple-1\/80{stroke:rgb(var(--purple-1)/.8)}.stroke-purple-1\/90{stroke:rgb(var(--purple-1)/.9)}.stroke-purple-1\/95{stroke:rgb(var(--purple-1)/.95)}.stroke-purple-10\/0{stroke:rgb(var(--purple-10)/0)}.stroke-purple-10\/10{stroke:rgb(var(--purple-10)/.1)}.stroke-purple-10\/100{stroke:rgb(var(--purple-10)/1)}.stroke-purple-10\/20{stroke:rgb(var(--purple-10)/.2)}.stroke-purple-10\/25{stroke:rgb(var(--purple-10)/.25)}.stroke-purple-10\/30{stroke:rgb(var(--purple-10)/.3)}.stroke-purple-10\/40{stroke:rgb(var(--purple-10)/.4)}.stroke-purple-10\/5{stroke:rgb(var(--purple-10)/.05)}.stroke-purple-10\/50{stroke:rgb(var(--purple-10)/.5)}.stroke-purple-10\/60{stroke:rgb(var(--purple-10)/.6)}.stroke-purple-10\/70{stroke:rgb(var(--purple-10)/.7)}.stroke-purple-10\/75{stroke:rgb(var(--purple-10)/.75)}.stroke-purple-10\/80{stroke:rgb(var(--purple-10)/.8)}.stroke-purple-10\/90{stroke:rgb(var(--purple-10)/.9)}.stroke-purple-10\/95{stroke:rgb(var(--purple-10)/.95)}.stroke-purple-2\/0{stroke:rgb(var(--purple-2)/0)}.stroke-purple-2\/10{stroke:rgb(var(--purple-2)/.1)}.stroke-purple-2\/100{stroke:rgb(var(--purple-2)/1)}.stroke-purple-2\/20{stroke:rgb(var(--purple-2)/.2)}.stroke-purple-2\/25{stroke:rgb(var(--purple-2)/.25)}.stroke-purple-2\/30{stroke:rgb(var(--purple-2)/.3)}.stroke-purple-2\/40{stroke:rgb(var(--purple-2)/.4)}.stroke-purple-2\/5{stroke:rgb(var(--purple-2)/.05)}.stroke-purple-2\/50{stroke:rgb(var(--purple-2)/.5)}.stroke-purple-2\/60{stroke:rgb(var(--purple-2)/.6)}.stroke-purple-2\/70{stroke:rgb(var(--purple-2)/.7)}.stroke-purple-2\/75{stroke:rgb(var(--purple-2)/.75)}.stroke-purple-2\/80{stroke:rgb(var(--purple-2)/.8)}.stroke-purple-2\/90{stroke:rgb(var(--purple-2)/.9)}.stroke-purple-2\/95{stroke:rgb(var(--purple-2)/.95)}.stroke-purple-3\/0{stroke:rgb(var(--purple-3)/0)}.stroke-purple-3\/10{stroke:rgb(var(--purple-3)/.1)}.stroke-purple-3\/100{stroke:rgb(var(--purple-3)/1)}.stroke-purple-3\/20{stroke:rgb(var(--purple-3)/.2)}.stroke-purple-3\/25{stroke:rgb(var(--purple-3)/.25)}.stroke-purple-3\/30{stroke:rgb(var(--purple-3)/.3)}.stroke-purple-3\/40{stroke:rgb(var(--purple-3)/.4)}.stroke-purple-3\/5{stroke:rgb(var(--purple-3)/.05)}.stroke-purple-3\/50{stroke:rgb(var(--purple-3)/.5)}.stroke-purple-3\/60{stroke:rgb(var(--purple-3)/.6)}.stroke-purple-3\/70{stroke:rgb(var(--purple-3)/.7)}.stroke-purple-3\/75{stroke:rgb(var(--purple-3)/.75)}.stroke-purple-3\/80{stroke:rgb(var(--purple-3)/.8)}.stroke-purple-3\/90{stroke:rgb(var(--purple-3)/.9)}.stroke-purple-3\/95{stroke:rgb(var(--purple-3)/.95)}.stroke-purple-4\/0{stroke:rgb(var(--purple-4)/0)}.stroke-purple-4\/10{stroke:rgb(var(--purple-4)/.1)}.stroke-purple-4\/100{stroke:rgb(var(--purple-4)/1)}.stroke-purple-4\/20{stroke:rgb(var(--purple-4)/.2)}.stroke-purple-4\/25{stroke:rgb(var(--purple-4)/.25)}.stroke-purple-4\/30{stroke:rgb(var(--purple-4)/.3)}.stroke-purple-4\/40{stroke:rgb(var(--purple-4)/.4)}.stroke-purple-4\/5{stroke:rgb(var(--purple-4)/.05)}.stroke-purple-4\/50{stroke:rgb(var(--purple-4)/.5)}.stroke-purple-4\/60{stroke:rgb(var(--purple-4)/.6)}.stroke-purple-4\/70{stroke:rgb(var(--purple-4)/.7)}.stroke-purple-4\/75{stroke:rgb(var(--purple-4)/.75)}.stroke-purple-4\/80{stroke:rgb(var(--purple-4)/.8)}.stroke-purple-4\/90{stroke:rgb(var(--purple-4)/.9)}.stroke-purple-4\/95{stroke:rgb(var(--purple-4)/.95)}.stroke-purple-5\/0{stroke:rgb(var(--purple-5)/0)}.stroke-purple-5\/10{stroke:rgb(var(--purple-5)/.1)}.stroke-purple-5\/100{stroke:rgb(var(--purple-5)/1)}.stroke-purple-5\/20{stroke:rgb(var(--purple-5)/.2)}.stroke-purple-5\/25{stroke:rgb(var(--purple-5)/.25)}.stroke-purple-5\/30{stroke:rgb(var(--purple-5)/.3)}.stroke-purple-5\/40{stroke:rgb(var(--purple-5)/.4)}.stroke-purple-5\/5{stroke:rgb(var(--purple-5)/.05)}.stroke-purple-5\/50{stroke:rgb(var(--purple-5)/.5)}.stroke-purple-5\/60{stroke:rgb(var(--purple-5)/.6)}.stroke-purple-5\/70{stroke:rgb(var(--purple-5)/.7)}.stroke-purple-5\/75{stroke:rgb(var(--purple-5)/.75)}.stroke-purple-5\/80{stroke:rgb(var(--purple-5)/.8)}.stroke-purple-5\/90{stroke:rgb(var(--purple-5)/.9)}.stroke-purple-5\/95{stroke:rgb(var(--purple-5)/.95)}.stroke-purple-6\/0{stroke:rgb(var(--purple-6)/0)}.stroke-purple-6\/10{stroke:rgb(var(--purple-6)/.1)}.stroke-purple-6\/100{stroke:rgb(var(--purple-6)/1)}.stroke-purple-6\/20{stroke:rgb(var(--purple-6)/.2)}.stroke-purple-6\/25{stroke:rgb(var(--purple-6)/.25)}.stroke-purple-6\/30{stroke:rgb(var(--purple-6)/.3)}.stroke-purple-6\/40{stroke:rgb(var(--purple-6)/.4)}.stroke-purple-6\/5{stroke:rgb(var(--purple-6)/.05)}.stroke-purple-6\/50{stroke:rgb(var(--purple-6)/.5)}.stroke-purple-6\/60{stroke:rgb(var(--purple-6)/.6)}.stroke-purple-6\/70{stroke:rgb(var(--purple-6)/.7)}.stroke-purple-6\/75{stroke:rgb(var(--purple-6)/.75)}.stroke-purple-6\/80{stroke:rgb(var(--purple-6)/.8)}.stroke-purple-6\/90{stroke:rgb(var(--purple-6)/.9)}.stroke-purple-6\/95{stroke:rgb(var(--purple-6)/.95)}.stroke-purple-7\/0{stroke:rgb(var(--purple-7)/0)}.stroke-purple-7\/10{stroke:rgb(var(--purple-7)/.1)}.stroke-purple-7\/100{stroke:rgb(var(--purple-7)/1)}.stroke-purple-7\/20{stroke:rgb(var(--purple-7)/.2)}.stroke-purple-7\/25{stroke:rgb(var(--purple-7)/.25)}.stroke-purple-7\/30{stroke:rgb(var(--purple-7)/.3)}.stroke-purple-7\/40{stroke:rgb(var(--purple-7)/.4)}.stroke-purple-7\/5{stroke:rgb(var(--purple-7)/.05)}.stroke-purple-7\/50{stroke:rgb(var(--purple-7)/.5)}.stroke-purple-7\/60{stroke:rgb(var(--purple-7)/.6)}.stroke-purple-7\/70{stroke:rgb(var(--purple-7)/.7)}.stroke-purple-7\/75{stroke:rgb(var(--purple-7)/.75)}.stroke-purple-7\/80{stroke:rgb(var(--purple-7)/.8)}.stroke-purple-7\/90{stroke:rgb(var(--purple-7)/.9)}.stroke-purple-7\/95{stroke:rgb(var(--purple-7)/.95)}.stroke-purple-8\/0{stroke:rgb(var(--purple-8)/0)}.stroke-purple-8\/10{stroke:rgb(var(--purple-8)/.1)}.stroke-purple-8\/100{stroke:rgb(var(--purple-8)/1)}.stroke-purple-8\/20{stroke:rgb(var(--purple-8)/.2)}.stroke-purple-8\/25{stroke:rgb(var(--purple-8)/.25)}.stroke-purple-8\/30{stroke:rgb(var(--purple-8)/.3)}.stroke-purple-8\/40{stroke:rgb(var(--purple-8)/.4)}.stroke-purple-8\/5{stroke:rgb(var(--purple-8)/.05)}.stroke-purple-8\/50{stroke:rgb(var(--purple-8)/.5)}.stroke-purple-8\/60{stroke:rgb(var(--purple-8)/.6)}.stroke-purple-8\/70{stroke:rgb(var(--purple-8)/.7)}.stroke-purple-8\/75{stroke:rgb(var(--purple-8)/.75)}.stroke-purple-8\/80{stroke:rgb(var(--purple-8)/.8)}.stroke-purple-8\/90{stroke:rgb(var(--purple-8)/.9)}.stroke-purple-8\/95{stroke:rgb(var(--purple-8)/.95)}.stroke-purple-9\/0{stroke:rgb(var(--purple-9)/0)}.stroke-purple-9\/10{stroke:rgb(var(--purple-9)/.1)}.stroke-purple-9\/100{stroke:rgb(var(--purple-9)/1)}.stroke-purple-9\/20{stroke:rgb(var(--purple-9)/.2)}.stroke-purple-9\/25{stroke:rgb(var(--purple-9)/.25)}.stroke-purple-9\/30{stroke:rgb(var(--purple-9)/.3)}.stroke-purple-9\/40{stroke:rgb(var(--purple-9)/.4)}.stroke-purple-9\/5{stroke:rgb(var(--purple-9)/.05)}.stroke-purple-9\/50{stroke:rgb(var(--purple-9)/.5)}.stroke-purple-9\/60{stroke:rgb(var(--purple-9)/.6)}.stroke-purple-9\/70{stroke:rgb(var(--purple-9)/.7)}.stroke-purple-9\/75{stroke:rgb(var(--purple-9)/.75)}.stroke-purple-9\/80{stroke:rgb(var(--purple-9)/.8)}.stroke-purple-9\/90{stroke:rgb(var(--purple-9)/.9)}.stroke-purple-9\/95{stroke:rgb(var(--purple-9)/.95)}.stroke-red-1\/0{stroke:rgb(var(--red-1)/0)}.stroke-red-1\/10{stroke:rgb(var(--red-1)/.1)}.stroke-red-1\/100{stroke:rgb(var(--red-1)/1)}.stroke-red-1\/20{stroke:rgb(var(--red-1)/.2)}.stroke-red-1\/25{stroke:rgb(var(--red-1)/.25)}.stroke-red-1\/30{stroke:rgb(var(--red-1)/.3)}.stroke-red-1\/40{stroke:rgb(var(--red-1)/.4)}.stroke-red-1\/5{stroke:rgb(var(--red-1)/.05)}.stroke-red-1\/50{stroke:rgb(var(--red-1)/.5)}.stroke-red-1\/60{stroke:rgb(var(--red-1)/.6)}.stroke-red-1\/70{stroke:rgb(var(--red-1)/.7)}.stroke-red-1\/75{stroke:rgb(var(--red-1)/.75)}.stroke-red-1\/80{stroke:rgb(var(--red-1)/.8)}.stroke-red-1\/90{stroke:rgb(var(--red-1)/.9)}.stroke-red-1\/95{stroke:rgb(var(--red-1)/.95)}.stroke-red-10\/0{stroke:rgb(var(--red-10)/0)}.stroke-red-10\/10{stroke:rgb(var(--red-10)/.1)}.stroke-red-10\/100{stroke:rgb(var(--red-10)/1)}.stroke-red-10\/20{stroke:rgb(var(--red-10)/.2)}.stroke-red-10\/25{stroke:rgb(var(--red-10)/.25)}.stroke-red-10\/30{stroke:rgb(var(--red-10)/.3)}.stroke-red-10\/40{stroke:rgb(var(--red-10)/.4)}.stroke-red-10\/5{stroke:rgb(var(--red-10)/.05)}.stroke-red-10\/50{stroke:rgb(var(--red-10)/.5)}.stroke-red-10\/60{stroke:rgb(var(--red-10)/.6)}.stroke-red-10\/70{stroke:rgb(var(--red-10)/.7)}.stroke-red-10\/75{stroke:rgb(var(--red-10)/.75)}.stroke-red-10\/80{stroke:rgb(var(--red-10)/.8)}.stroke-red-10\/90{stroke:rgb(var(--red-10)/.9)}.stroke-red-10\/95{stroke:rgb(var(--red-10)/.95)}.stroke-red-2\/0{stroke:rgb(var(--red-2)/0)}.stroke-red-2\/10{stroke:rgb(var(--red-2)/.1)}.stroke-red-2\/100{stroke:rgb(var(--red-2)/1)}.stroke-red-2\/20{stroke:rgb(var(--red-2)/.2)}.stroke-red-2\/25{stroke:rgb(var(--red-2)/.25)}.stroke-red-2\/30{stroke:rgb(var(--red-2)/.3)}.stroke-red-2\/40{stroke:rgb(var(--red-2)/.4)}.stroke-red-2\/5{stroke:rgb(var(--red-2)/.05)}.stroke-red-2\/50{stroke:rgb(var(--red-2)/.5)}.stroke-red-2\/60{stroke:rgb(var(--red-2)/.6)}.stroke-red-2\/70{stroke:rgb(var(--red-2)/.7)}.stroke-red-2\/75{stroke:rgb(var(--red-2)/.75)}.stroke-red-2\/80{stroke:rgb(var(--red-2)/.8)}.stroke-red-2\/90{stroke:rgb(var(--red-2)/.9)}.stroke-red-2\/95{stroke:rgb(var(--red-2)/.95)}.stroke-red-3\/0{stroke:rgb(var(--red-3)/0)}.stroke-red-3\/10{stroke:rgb(var(--red-3)/.1)}.stroke-red-3\/100{stroke:rgb(var(--red-3)/1)}.stroke-red-3\/20{stroke:rgb(var(--red-3)/.2)}.stroke-red-3\/25{stroke:rgb(var(--red-3)/.25)}.stroke-red-3\/30{stroke:rgb(var(--red-3)/.3)}.stroke-red-3\/40{stroke:rgb(var(--red-3)/.4)}.stroke-red-3\/5{stroke:rgb(var(--red-3)/.05)}.stroke-red-3\/50{stroke:rgb(var(--red-3)/.5)}.stroke-red-3\/60{stroke:rgb(var(--red-3)/.6)}.stroke-red-3\/70{stroke:rgb(var(--red-3)/.7)}.stroke-red-3\/75{stroke:rgb(var(--red-3)/.75)}.stroke-red-3\/80{stroke:rgb(var(--red-3)/.8)}.stroke-red-3\/90{stroke:rgb(var(--red-3)/.9)}.stroke-red-3\/95{stroke:rgb(var(--red-3)/.95)}.stroke-red-4\/0{stroke:rgb(var(--red-4)/0)}.stroke-red-4\/10{stroke:rgb(var(--red-4)/.1)}.stroke-red-4\/100{stroke:rgb(var(--red-4)/1)}.stroke-red-4\/20{stroke:rgb(var(--red-4)/.2)}.stroke-red-4\/25{stroke:rgb(var(--red-4)/.25)}.stroke-red-4\/30{stroke:rgb(var(--red-4)/.3)}.stroke-red-4\/40{stroke:rgb(var(--red-4)/.4)}.stroke-red-4\/5{stroke:rgb(var(--red-4)/.05)}.stroke-red-4\/50{stroke:rgb(var(--red-4)/.5)}.stroke-red-4\/60{stroke:rgb(var(--red-4)/.6)}.stroke-red-4\/70{stroke:rgb(var(--red-4)/.7)}.stroke-red-4\/75{stroke:rgb(var(--red-4)/.75)}.stroke-red-4\/80{stroke:rgb(var(--red-4)/.8)}.stroke-red-4\/90{stroke:rgb(var(--red-4)/.9)}.stroke-red-4\/95{stroke:rgb(var(--red-4)/.95)}.stroke-red-5\/0{stroke:rgb(var(--red-5)/0)}.stroke-red-5\/10{stroke:rgb(var(--red-5)/.1)}.stroke-red-5\/100{stroke:rgb(var(--red-5)/1)}.stroke-red-5\/20{stroke:rgb(var(--red-5)/.2)}.stroke-red-5\/25{stroke:rgb(var(--red-5)/.25)}.stroke-red-5\/30{stroke:rgb(var(--red-5)/.3)}.stroke-red-5\/40{stroke:rgb(var(--red-5)/.4)}.stroke-red-5\/5{stroke:rgb(var(--red-5)/.05)}.stroke-red-5\/50{stroke:rgb(var(--red-5)/.5)}.stroke-red-5\/60{stroke:rgb(var(--red-5)/.6)}.stroke-red-5\/70{stroke:rgb(var(--red-5)/.7)}.stroke-red-5\/75{stroke:rgb(var(--red-5)/.75)}.stroke-red-5\/80{stroke:rgb(var(--red-5)/.8)}.stroke-red-5\/90{stroke:rgb(var(--red-5)/.9)}.stroke-red-5\/95{stroke:rgb(var(--red-5)/.95)}.stroke-red-6\/0{stroke:rgb(var(--red-6)/0)}.stroke-red-6\/10{stroke:rgb(var(--red-6)/.1)}.stroke-red-6\/100{stroke:rgb(var(--red-6)/1)}.stroke-red-6\/20{stroke:rgb(var(--red-6)/.2)}.stroke-red-6\/25{stroke:rgb(var(--red-6)/.25)}.stroke-red-6\/30{stroke:rgb(var(--red-6)/.3)}.stroke-red-6\/40{stroke:rgb(var(--red-6)/.4)}.stroke-red-6\/5{stroke:rgb(var(--red-6)/.05)}.stroke-red-6\/50{stroke:rgb(var(--red-6)/.5)}.stroke-red-6\/60{stroke:rgb(var(--red-6)/.6)}.stroke-red-6\/70{stroke:rgb(var(--red-6)/.7)}.stroke-red-6\/75{stroke:rgb(var(--red-6)/.75)}.stroke-red-6\/80{stroke:rgb(var(--red-6)/.8)}.stroke-red-6\/90{stroke:rgb(var(--red-6)/.9)}.stroke-red-6\/95{stroke:rgb(var(--red-6)/.95)}.stroke-red-7\/0{stroke:rgb(var(--red-7)/0)}.stroke-red-7\/10{stroke:rgb(var(--red-7)/.1)}.stroke-red-7\/100{stroke:rgb(var(--red-7)/1)}.stroke-red-7\/20{stroke:rgb(var(--red-7)/.2)}.stroke-red-7\/25{stroke:rgb(var(--red-7)/.25)}.stroke-red-7\/30{stroke:rgb(var(--red-7)/.3)}.stroke-red-7\/40{stroke:rgb(var(--red-7)/.4)}.stroke-red-7\/5{stroke:rgb(var(--red-7)/.05)}.stroke-red-7\/50{stroke:rgb(var(--red-7)/.5)}.stroke-red-7\/60{stroke:rgb(var(--red-7)/.6)}.stroke-red-7\/70{stroke:rgb(var(--red-7)/.7)}.stroke-red-7\/75{stroke:rgb(var(--red-7)/.75)}.stroke-red-7\/80{stroke:rgb(var(--red-7)/.8)}.stroke-red-7\/90{stroke:rgb(var(--red-7)/.9)}.stroke-red-7\/95{stroke:rgb(var(--red-7)/.95)}.stroke-red-8\/0{stroke:rgb(var(--red-8)/0)}.stroke-red-8\/10{stroke:rgb(var(--red-8)/.1)}.stroke-red-8\/100{stroke:rgb(var(--red-8)/1)}.stroke-red-8\/20{stroke:rgb(var(--red-8)/.2)}.stroke-red-8\/25{stroke:rgb(var(--red-8)/.25)}.stroke-red-8\/30{stroke:rgb(var(--red-8)/.3)}.stroke-red-8\/40{stroke:rgb(var(--red-8)/.4)}.stroke-red-8\/5{stroke:rgb(var(--red-8)/.05)}.stroke-red-8\/50{stroke:rgb(var(--red-8)/.5)}.stroke-red-8\/60{stroke:rgb(var(--red-8)/.6)}.stroke-red-8\/70{stroke:rgb(var(--red-8)/.7)}.stroke-red-8\/75{stroke:rgb(var(--red-8)/.75)}.stroke-red-8\/80{stroke:rgb(var(--red-8)/.8)}.stroke-red-8\/90{stroke:rgb(var(--red-8)/.9)}.stroke-red-8\/95{stroke:rgb(var(--red-8)/.95)}.stroke-red-9\/0{stroke:rgb(var(--red-9)/0)}.stroke-red-9\/10{stroke:rgb(var(--red-9)/.1)}.stroke-red-9\/100{stroke:rgb(var(--red-9)/1)}.stroke-red-9\/20{stroke:rgb(var(--red-9)/.2)}.stroke-red-9\/25{stroke:rgb(var(--red-9)/.25)}.stroke-red-9\/30{stroke:rgb(var(--red-9)/.3)}.stroke-red-9\/40{stroke:rgb(var(--red-9)/.4)}.stroke-red-9\/5{stroke:rgb(var(--red-9)/.05)}.stroke-red-9\/50{stroke:rgb(var(--red-9)/.5)}.stroke-red-9\/60{stroke:rgb(var(--red-9)/.6)}.stroke-red-9\/70{stroke:rgb(var(--red-9)/.7)}.stroke-red-9\/75{stroke:rgb(var(--red-9)/.75)}.stroke-red-9\/80{stroke:rgb(var(--red-9)/.8)}.stroke-red-9\/90{stroke:rgb(var(--red-9)/.9)}.stroke-red-9\/95{stroke:rgb(var(--red-9)/.95)}.stroke-secondary{stroke:rgb(var(--secondary))}.stroke-secondary\/0{stroke:rgb(var(--secondary)/0)}.stroke-secondary\/10{stroke:rgb(var(--secondary)/.1)}.stroke-secondary\/100{stroke:rgb(var(--secondary)/1)}.stroke-secondary\/20{stroke:rgb(var(--secondary)/.2)}.stroke-secondary\/25{stroke:rgb(var(--secondary)/.25)}.stroke-secondary\/30{stroke:rgb(var(--secondary)/.3)}.stroke-secondary\/40{stroke:rgb(var(--secondary)/.4)}.stroke-secondary\/5{stroke:rgb(var(--secondary)/.05)}.stroke-secondary\/50{stroke:rgb(var(--secondary)/.5)}.stroke-secondary\/60{stroke:rgb(var(--secondary)/.6)}.stroke-secondary\/70{stroke:rgb(var(--secondary)/.7)}.stroke-secondary\/75{stroke:rgb(var(--secondary)/.75)}.stroke-secondary\/80{stroke:rgb(var(--secondary)/.8)}.stroke-secondary\/90{stroke:rgb(var(--secondary)/.9)}.stroke-secondary\/95{stroke:rgb(var(--secondary)/.95)}.stroke-slate-1\/0{stroke:rgb(var(--slate-1)/0)}.stroke-slate-1\/10{stroke:rgb(var(--slate-1)/.1)}.stroke-slate-1\/100{stroke:rgb(var(--slate-1)/1)}.stroke-slate-1\/20{stroke:rgb(var(--slate-1)/.2)}.stroke-slate-1\/25{stroke:rgb(var(--slate-1)/.25)}.stroke-slate-1\/30{stroke:rgb(var(--slate-1)/.3)}.stroke-slate-1\/40{stroke:rgb(var(--slate-1)/.4)}.stroke-slate-1\/5{stroke:rgb(var(--slate-1)/.05)}.stroke-slate-1\/50{stroke:rgb(var(--slate-1)/.5)}.stroke-slate-1\/60{stroke:rgb(var(--slate-1)/.6)}.stroke-slate-1\/70{stroke:rgb(var(--slate-1)/.7)}.stroke-slate-1\/75{stroke:rgb(var(--slate-1)/.75)}.stroke-slate-1\/80{stroke:rgb(var(--slate-1)/.8)}.stroke-slate-1\/90{stroke:rgb(var(--slate-1)/.9)}.stroke-slate-1\/95{stroke:rgb(var(--slate-1)/.95)}.stroke-slate-10\/0{stroke:rgb(var(--slate-10)/0)}.stroke-slate-10\/10{stroke:rgb(var(--slate-10)/.1)}.stroke-slate-10\/100{stroke:rgb(var(--slate-10)/1)}.stroke-slate-10\/20{stroke:rgb(var(--slate-10)/.2)}.stroke-slate-10\/25{stroke:rgb(var(--slate-10)/.25)}.stroke-slate-10\/30{stroke:rgb(var(--slate-10)/.3)}.stroke-slate-10\/40{stroke:rgb(var(--slate-10)/.4)}.stroke-slate-10\/5{stroke:rgb(var(--slate-10)/.05)}.stroke-slate-10\/50{stroke:rgb(var(--slate-10)/.5)}.stroke-slate-10\/60{stroke:rgb(var(--slate-10)/.6)}.stroke-slate-10\/70{stroke:rgb(var(--slate-10)/.7)}.stroke-slate-10\/75{stroke:rgb(var(--slate-10)/.75)}.stroke-slate-10\/80{stroke:rgb(var(--slate-10)/.8)}.stroke-slate-10\/90{stroke:rgb(var(--slate-10)/.9)}.stroke-slate-10\/95{stroke:rgb(var(--slate-10)/.95)}.stroke-slate-2\/0{stroke:rgb(var(--slate-2)/0)}.stroke-slate-2\/10{stroke:rgb(var(--slate-2)/.1)}.stroke-slate-2\/100{stroke:rgb(var(--slate-2)/1)}.stroke-slate-2\/20{stroke:rgb(var(--slate-2)/.2)}.stroke-slate-2\/25{stroke:rgb(var(--slate-2)/.25)}.stroke-slate-2\/30{stroke:rgb(var(--slate-2)/.3)}.stroke-slate-2\/40{stroke:rgb(var(--slate-2)/.4)}.stroke-slate-2\/5{stroke:rgb(var(--slate-2)/.05)}.stroke-slate-2\/50{stroke:rgb(var(--slate-2)/.5)}.stroke-slate-2\/60{stroke:rgb(var(--slate-2)/.6)}.stroke-slate-2\/70{stroke:rgb(var(--slate-2)/.7)}.stroke-slate-2\/75{stroke:rgb(var(--slate-2)/.75)}.stroke-slate-2\/80{stroke:rgb(var(--slate-2)/.8)}.stroke-slate-2\/90{stroke:rgb(var(--slate-2)/.9)}.stroke-slate-2\/95{stroke:rgb(var(--slate-2)/.95)}.stroke-slate-3\/0{stroke:rgb(var(--slate-3)/0)}.stroke-slate-3\/10{stroke:rgb(var(--slate-3)/.1)}.stroke-slate-3\/100{stroke:rgb(var(--slate-3)/1)}.stroke-slate-3\/20{stroke:rgb(var(--slate-3)/.2)}.stroke-slate-3\/25{stroke:rgb(var(--slate-3)/.25)}.stroke-slate-3\/30{stroke:rgb(var(--slate-3)/.3)}.stroke-slate-3\/40{stroke:rgb(var(--slate-3)/.4)}.stroke-slate-3\/5{stroke:rgb(var(--slate-3)/.05)}.stroke-slate-3\/50{stroke:rgb(var(--slate-3)/.5)}.stroke-slate-3\/60{stroke:rgb(var(--slate-3)/.6)}.stroke-slate-3\/70{stroke:rgb(var(--slate-3)/.7)}.stroke-slate-3\/75{stroke:rgb(var(--slate-3)/.75)}.stroke-slate-3\/80{stroke:rgb(var(--slate-3)/.8)}.stroke-slate-3\/90{stroke:rgb(var(--slate-3)/.9)}.stroke-slate-3\/95{stroke:rgb(var(--slate-3)/.95)}.stroke-slate-4\/0{stroke:rgb(var(--slate-4)/0)}.stroke-slate-4\/10{stroke:rgb(var(--slate-4)/.1)}.stroke-slate-4\/100{stroke:rgb(var(--slate-4)/1)}.stroke-slate-4\/20{stroke:rgb(var(--slate-4)/.2)}.stroke-slate-4\/25{stroke:rgb(var(--slate-4)/.25)}.stroke-slate-4\/30{stroke:rgb(var(--slate-4)/.3)}.stroke-slate-4\/40{stroke:rgb(var(--slate-4)/.4)}.stroke-slate-4\/5{stroke:rgb(var(--slate-4)/.05)}.stroke-slate-4\/50{stroke:rgb(var(--slate-4)/.5)}.stroke-slate-4\/60{stroke:rgb(var(--slate-4)/.6)}.stroke-slate-4\/70{stroke:rgb(var(--slate-4)/.7)}.stroke-slate-4\/75{stroke:rgb(var(--slate-4)/.75)}.stroke-slate-4\/80{stroke:rgb(var(--slate-4)/.8)}.stroke-slate-4\/90{stroke:rgb(var(--slate-4)/.9)}.stroke-slate-4\/95{stroke:rgb(var(--slate-4)/.95)}.stroke-slate-5\/0{stroke:rgb(var(--slate-5)/0)}.stroke-slate-5\/10{stroke:rgb(var(--slate-5)/.1)}.stroke-slate-5\/100{stroke:rgb(var(--slate-5)/1)}.stroke-slate-5\/20{stroke:rgb(var(--slate-5)/.2)}.stroke-slate-5\/25{stroke:rgb(var(--slate-5)/.25)}.stroke-slate-5\/30{stroke:rgb(var(--slate-5)/.3)}.stroke-slate-5\/40{stroke:rgb(var(--slate-5)/.4)}.stroke-slate-5\/5{stroke:rgb(var(--slate-5)/.05)}.stroke-slate-5\/50{stroke:rgb(var(--slate-5)/.5)}.stroke-slate-5\/60{stroke:rgb(var(--slate-5)/.6)}.stroke-slate-5\/70{stroke:rgb(var(--slate-5)/.7)}.stroke-slate-5\/75{stroke:rgb(var(--slate-5)/.75)}.stroke-slate-5\/80{stroke:rgb(var(--slate-5)/.8)}.stroke-slate-5\/90{stroke:rgb(var(--slate-5)/.9)}.stroke-slate-5\/95{stroke:rgb(var(--slate-5)/.95)}.stroke-slate-6\/0{stroke:rgb(var(--slate-6)/0)}.stroke-slate-6\/10{stroke:rgb(var(--slate-6)/.1)}.stroke-slate-6\/100{stroke:rgb(var(--slate-6)/1)}.stroke-slate-6\/20{stroke:rgb(var(--slate-6)/.2)}.stroke-slate-6\/25{stroke:rgb(var(--slate-6)/.25)}.stroke-slate-6\/30{stroke:rgb(var(--slate-6)/.3)}.stroke-slate-6\/40{stroke:rgb(var(--slate-6)/.4)}.stroke-slate-6\/5{stroke:rgb(var(--slate-6)/.05)}.stroke-slate-6\/50{stroke:rgb(var(--slate-6)/.5)}.stroke-slate-6\/60{stroke:rgb(var(--slate-6)/.6)}.stroke-slate-6\/70{stroke:rgb(var(--slate-6)/.7)}.stroke-slate-6\/75{stroke:rgb(var(--slate-6)/.75)}.stroke-slate-6\/80{stroke:rgb(var(--slate-6)/.8)}.stroke-slate-6\/90{stroke:rgb(var(--slate-6)/.9)}.stroke-slate-6\/95{stroke:rgb(var(--slate-6)/.95)}.stroke-slate-7\/0{stroke:rgb(var(--slate-7)/0)}.stroke-slate-7\/10{stroke:rgb(var(--slate-7)/.1)}.stroke-slate-7\/100{stroke:rgb(var(--slate-7)/1)}.stroke-slate-7\/20{stroke:rgb(var(--slate-7)/.2)}.stroke-slate-7\/25{stroke:rgb(var(--slate-7)/.25)}.stroke-slate-7\/30{stroke:rgb(var(--slate-7)/.3)}.stroke-slate-7\/40{stroke:rgb(var(--slate-7)/.4)}.stroke-slate-7\/5{stroke:rgb(var(--slate-7)/.05)}.stroke-slate-7\/50{stroke:rgb(var(--slate-7)/.5)}.stroke-slate-7\/60{stroke:rgb(var(--slate-7)/.6)}.stroke-slate-7\/70{stroke:rgb(var(--slate-7)/.7)}.stroke-slate-7\/75{stroke:rgb(var(--slate-7)/.75)}.stroke-slate-7\/80{stroke:rgb(var(--slate-7)/.8)}.stroke-slate-7\/90{stroke:rgb(var(--slate-7)/.9)}.stroke-slate-7\/95{stroke:rgb(var(--slate-7)/.95)}.stroke-slate-8\/0{stroke:rgb(var(--slate-8)/0)}.stroke-slate-8\/10{stroke:rgb(var(--slate-8)/.1)}.stroke-slate-8\/100{stroke:rgb(var(--slate-8)/1)}.stroke-slate-8\/20{stroke:rgb(var(--slate-8)/.2)}.stroke-slate-8\/25{stroke:rgb(var(--slate-8)/.25)}.stroke-slate-8\/30{stroke:rgb(var(--slate-8)/.3)}.stroke-slate-8\/40{stroke:rgb(var(--slate-8)/.4)}.stroke-slate-8\/5{stroke:rgb(var(--slate-8)/.05)}.stroke-slate-8\/50{stroke:rgb(var(--slate-8)/.5)}.stroke-slate-8\/60{stroke:rgb(var(--slate-8)/.6)}.stroke-slate-8\/70{stroke:rgb(var(--slate-8)/.7)}.stroke-slate-8\/75{stroke:rgb(var(--slate-8)/.75)}.stroke-slate-8\/80{stroke:rgb(var(--slate-8)/.8)}.stroke-slate-8\/90{stroke:rgb(var(--slate-8)/.9)}.stroke-slate-8\/95{stroke:rgb(var(--slate-8)/.95)}.stroke-slate-9\/0{stroke:rgb(var(--slate-9)/0)}.stroke-slate-9\/10{stroke:rgb(var(--slate-9)/.1)}.stroke-slate-9\/100{stroke:rgb(var(--slate-9)/1)}.stroke-slate-9\/20{stroke:rgb(var(--slate-9)/.2)}.stroke-slate-9\/25{stroke:rgb(var(--slate-9)/.25)}.stroke-slate-9\/30{stroke:rgb(var(--slate-9)/.3)}.stroke-slate-9\/40{stroke:rgb(var(--slate-9)/.4)}.stroke-slate-9\/5{stroke:rgb(var(--slate-9)/.05)}.stroke-slate-9\/50{stroke:rgb(var(--slate-9)/.5)}.stroke-slate-9\/60{stroke:rgb(var(--slate-9)/.6)}.stroke-slate-9\/70{stroke:rgb(var(--slate-9)/.7)}.stroke-slate-9\/75{stroke:rgb(var(--slate-9)/.75)}.stroke-slate-9\/80{stroke:rgb(var(--slate-9)/.8)}.stroke-slate-9\/90{stroke:rgb(var(--slate-9)/.9)}.stroke-slate-9\/95{stroke:rgb(var(--slate-9)/.95)}.stroke-success{stroke:rgb(var(--success))}.stroke-success\/0{stroke:rgb(var(--success)/0)}.stroke-success\/10{stroke:rgb(var(--success)/.1)}.stroke-success\/100{stroke:rgb(var(--success)/1)}.stroke-success\/20{stroke:rgb(var(--success)/.2)}.stroke-success\/25{stroke:rgb(var(--success)/.25)}.stroke-success\/30{stroke:rgb(var(--success)/.3)}.stroke-success\/40{stroke:rgb(var(--success)/.4)}.stroke-success\/5{stroke:rgb(var(--success)/.05)}.stroke-success\/50{stroke:rgb(var(--success)/.5)}.stroke-success\/60{stroke:rgb(var(--success)/.6)}.stroke-success\/70{stroke:rgb(var(--success)/.7)}.stroke-success\/75{stroke:rgb(var(--success)/.75)}.stroke-success\/80{stroke:rgb(var(--success)/.8)}.stroke-success\/90{stroke:rgb(var(--success)/.9)}.stroke-success\/95{stroke:rgb(var(--success)/.95)}.stroke-warning{stroke:rgb(var(--warning))}.stroke-warning\/0{stroke:rgb(var(--warning)/0)}.stroke-warning\/10{stroke:rgb(var(--warning)/.1)}.stroke-warning\/100{stroke:rgb(var(--warning)/1)}.stroke-warning\/20{stroke:rgb(var(--warning)/.2)}.stroke-warning\/25{stroke:rgb(var(--warning)/.25)}.stroke-warning\/30{stroke:rgb(var(--warning)/.3)}.stroke-warning\/40{stroke:rgb(var(--warning)/.4)}.stroke-warning\/5{stroke:rgb(var(--warning)/.05)}.stroke-warning\/50{stroke:rgb(var(--warning)/.5)}.stroke-warning\/60{stroke:rgb(var(--warning)/.6)}.stroke-warning\/70{stroke:rgb(var(--warning)/.7)}.stroke-warning\/75{stroke:rgb(var(--warning)/.75)}.stroke-warning\/80{stroke:rgb(var(--warning)/.8)}.stroke-warning\/90{stroke:rgb(var(--warning)/.9)}.stroke-warning\/95{stroke:rgb(var(--warning)/.95)}.stroke-white{stroke:#fff}.stroke-white\/0{stroke:hsla(0,0%,100%,0)}.stroke-white\/10{stroke:hsla(0,0%,100%,.1)}.stroke-white\/100{stroke:#fff}.stroke-white\/20{stroke:hsla(0,0%,100%,.2)}.stroke-white\/25{stroke:hsla(0,0%,100%,.25)}.stroke-white\/30{stroke:hsla(0,0%,100%,.3)}.stroke-white\/40{stroke:hsla(0,0%,100%,.4)}.stroke-white\/5{stroke:hsla(0,0%,100%,.05)}.stroke-white\/50{stroke:hsla(0,0%,100%,.5)}.stroke-white\/60{stroke:hsla(0,0%,100%,.6)}.stroke-white\/70{stroke:hsla(0,0%,100%,.7)}.stroke-white\/75{stroke:hsla(0,0%,100%,.75)}.stroke-white\/80{stroke:hsla(0,0%,100%,.8)}.stroke-white\/90{stroke:hsla(0,0%,100%,.9)}.stroke-white\/95{stroke:hsla(0,0%,100%,.95)}.stroke-whiteInverted{stroke:rgb(var(--whiteInverted))}.stroke-whiteInverted\/0{stroke:rgb(var(--whiteInverted)/0)}.stroke-whiteInverted\/10{stroke:rgb(var(--whiteInverted)/.1)}.stroke-whiteInverted\/100{stroke:rgb(var(--whiteInverted)/1)}.stroke-whiteInverted\/20{stroke:rgb(var(--whiteInverted)/.2)}.stroke-whiteInverted\/25{stroke:rgb(var(--whiteInverted)/.25)}.stroke-whiteInverted\/30{stroke:rgb(var(--whiteInverted)/.3)}.stroke-whiteInverted\/40{stroke:rgb(var(--whiteInverted)/.4)}.stroke-whiteInverted\/5{stroke:rgb(var(--whiteInverted)/.05)}.stroke-whiteInverted\/50{stroke:rgb(var(--whiteInverted)/.5)}.stroke-whiteInverted\/60{stroke:rgb(var(--whiteInverted)/.6)}.stroke-whiteInverted\/70{stroke:rgb(var(--whiteInverted)/.7)}.stroke-whiteInverted\/75{stroke:rgb(var(--whiteInverted)/.75)}.stroke-whiteInverted\/80{stroke:rgb(var(--whiteInverted)/.8)}.stroke-whiteInverted\/90{stroke:rgb(var(--whiteInverted)/.9)}.stroke-whiteInverted\/95{stroke:rgb(var(--whiteInverted)/.95)}.text-backgroundPrimary{--tw-text-opacity:1;color:rgb(var(--backgroundPrimary)/var(--tw-text-opacity))}.text-backgroundPrimary\/0{color:rgb(var(--backgroundPrimary)/0)}.text-backgroundPrimary\/10{color:rgb(var(--backgroundPrimary)/.1)}.text-backgroundPrimary\/100{color:rgb(var(--backgroundPrimary)/1)}.text-backgroundPrimary\/20{color:rgb(var(--backgroundPrimary)/.2)}.text-backgroundPrimary\/25{color:rgb(var(--backgroundPrimary)/.25)}.text-backgroundPrimary\/30{color:rgb(var(--backgroundPrimary)/.3)}.text-backgroundPrimary\/40{color:rgb(var(--backgroundPrimary)/.4)}.text-backgroundPrimary\/5{color:rgb(var(--backgroundPrimary)/.05)}.text-backgroundPrimary\/50{color:rgb(var(--backgroundPrimary)/.5)}.text-backgroundPrimary\/60{color:rgb(var(--backgroundPrimary)/.6)}.text-backgroundPrimary\/70{color:rgb(var(--backgroundPrimary)/.7)}.text-backgroundPrimary\/75{color:rgb(var(--backgroundPrimary)/.75)}.text-backgroundPrimary\/80{color:rgb(var(--backgroundPrimary)/.8)}.text-backgroundPrimary\/90{color:rgb(var(--backgroundPrimary)/.9)}.text-backgroundPrimary\/95{color:rgb(var(--backgroundPrimary)/.95)}.text-backgroundSecondary{--tw-text-opacity:1;color:rgb(var(--backgroundSecondary)/var(--tw-text-opacity))}.text-backgroundSecondary\/0{color:rgb(var(--backgroundSecondary)/0)}.text-backgroundSecondary\/10{color:rgb(var(--backgroundSecondary)/.1)}.text-backgroundSecondary\/100{color:rgb(var(--backgroundSecondary)/1)}.text-backgroundSecondary\/20{color:rgb(var(--backgroundSecondary)/.2)}.text-backgroundSecondary\/25{color:rgb(var(--backgroundSecondary)/.25)}.text-backgroundSecondary\/30{color:rgb(var(--backgroundSecondary)/.3)}.text-backgroundSecondary\/40{color:rgb(var(--backgroundSecondary)/.4)}.text-backgroundSecondary\/5{color:rgb(var(--backgroundSecondary)/.05)}.text-backgroundSecondary\/50{color:rgb(var(--backgroundSecondary)/.5)}.text-backgroundSecondary\/60{color:rgb(var(--backgroundSecondary)/.6)}.text-backgroundSecondary\/70{color:rgb(var(--backgroundSecondary)/.7)}.text-backgroundSecondary\/75{color:rgb(var(--backgroundSecondary)/.75)}.text-backgroundSecondary\/80{color:rgb(var(--backgroundSecondary)/.8)}.text-backgroundSecondary\/90{color:rgb(var(--backgroundSecondary)/.9)}.text-backgroundSecondary\/95{color:rgb(var(--backgroundSecondary)/.95)}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-black\/0{color:transparent}.text-black\/10{color:rgba(0,0,0,.1)}.text-black\/100{color:#000}.text-black\/20{color:rgba(0,0,0,.2)}.text-black\/25{color:rgba(0,0,0,.25)}.text-black\/30{color:rgba(0,0,0,.3)}.text-black\/40{color:rgba(0,0,0,.4)}.text-black\/5{color:rgba(0,0,0,.05)}.text-black\/50{color:rgba(0,0,0,.5)}.text-black\/60{color:rgba(0,0,0,.6)}.text-black\/70{color:rgba(0,0,0,.7)}.text-black\/75{color:rgba(0,0,0,.75)}.text-black\/80{color:rgba(0,0,0,.8)}.text-black\/90{color:rgba(0,0,0,.9)}.text-black\/95{color:rgba(0,0,0,.95)}.text-blackInverted{--tw-text-opacity:1;color:rgb(var(--blackInverted)/var(--tw-text-opacity))}.text-blackInverted\/0{color:rgb(var(--blackInverted)/0)}.text-blackInverted\/10{color:rgb(var(--blackInverted)/.1)}.text-blackInverted\/100{color:rgb(var(--blackInverted)/1)}.text-blackInverted\/20{color:rgb(var(--blackInverted)/.2)}.text-blackInverted\/25{color:rgb(var(--blackInverted)/.25)}.text-blackInverted\/30{color:rgb(var(--blackInverted)/.3)}.text-blackInverted\/40{color:rgb(var(--blackInverted)/.4)}.text-blackInverted\/5{color:rgb(var(--blackInverted)/.05)}.text-blackInverted\/50{color:rgb(var(--blackInverted)/.5)}.text-blackInverted\/60{color:rgb(var(--blackInverted)/.6)}.text-blackInverted\/70{color:rgb(var(--blackInverted)/.7)}.text-blackInverted\/75{color:rgb(var(--blackInverted)/.75)}.text-blackInverted\/80{color:rgb(var(--blackInverted)/.8)}.text-blackInverted\/90{color:rgb(var(--blackInverted)/.9)}.text-blackInverted\/95{color:rgb(var(--blackInverted)/.95)}.text-blue-1\/0{color:rgb(var(--blue-1)/0)}.text-blue-1\/10{color:rgb(var(--blue-1)/.1)}.text-blue-1\/100{color:rgb(var(--blue-1)/1)}.text-blue-1\/20{color:rgb(var(--blue-1)/.2)}.text-blue-1\/25{color:rgb(var(--blue-1)/.25)}.text-blue-1\/30{color:rgb(var(--blue-1)/.3)}.text-blue-1\/40{color:rgb(var(--blue-1)/.4)}.text-blue-1\/5{color:rgb(var(--blue-1)/.05)}.text-blue-1\/50{color:rgb(var(--blue-1)/.5)}.text-blue-1\/60{color:rgb(var(--blue-1)/.6)}.text-blue-1\/70{color:rgb(var(--blue-1)/.7)}.text-blue-1\/75{color:rgb(var(--blue-1)/.75)}.text-blue-1\/80{color:rgb(var(--blue-1)/.8)}.text-blue-1\/90{color:rgb(var(--blue-1)/.9)}.text-blue-1\/95{color:rgb(var(--blue-1)/.95)}.text-blue-10\/0{color:rgb(var(--blue-10)/0)}.text-blue-10\/10{color:rgb(var(--blue-10)/.1)}.text-blue-10\/100{color:rgb(var(--blue-10)/1)}.text-blue-10\/20{color:rgb(var(--blue-10)/.2)}.text-blue-10\/25{color:rgb(var(--blue-10)/.25)}.text-blue-10\/30{color:rgb(var(--blue-10)/.3)}.text-blue-10\/40{color:rgb(var(--blue-10)/.4)}.text-blue-10\/5{color:rgb(var(--blue-10)/.05)}.text-blue-10\/50{color:rgb(var(--blue-10)/.5)}.text-blue-10\/60{color:rgb(var(--blue-10)/.6)}.text-blue-10\/70{color:rgb(var(--blue-10)/.7)}.text-blue-10\/75{color:rgb(var(--blue-10)/.75)}.text-blue-10\/80{color:rgb(var(--blue-10)/.8)}.text-blue-10\/90{color:rgb(var(--blue-10)/.9)}.text-blue-10\/95{color:rgb(var(--blue-10)/.95)}.text-blue-2\/0{color:rgb(var(--blue-2)/0)}.text-blue-2\/10{color:rgb(var(--blue-2)/.1)}.text-blue-2\/100{color:rgb(var(--blue-2)/1)}.text-blue-2\/20{color:rgb(var(--blue-2)/.2)}.text-blue-2\/25{color:rgb(var(--blue-2)/.25)}.text-blue-2\/30{color:rgb(var(--blue-2)/.3)}.text-blue-2\/40{color:rgb(var(--blue-2)/.4)}.text-blue-2\/5{color:rgb(var(--blue-2)/.05)}.text-blue-2\/50{color:rgb(var(--blue-2)/.5)}.text-blue-2\/60{color:rgb(var(--blue-2)/.6)}.text-blue-2\/70{color:rgb(var(--blue-2)/.7)}.text-blue-2\/75{color:rgb(var(--blue-2)/.75)}.text-blue-2\/80{color:rgb(var(--blue-2)/.8)}.text-blue-2\/90{color:rgb(var(--blue-2)/.9)}.text-blue-2\/95{color:rgb(var(--blue-2)/.95)}.text-blue-3\/0{color:rgb(var(--blue-3)/0)}.text-blue-3\/10{color:rgb(var(--blue-3)/.1)}.text-blue-3\/100{color:rgb(var(--blue-3)/1)}.text-blue-3\/20{color:rgb(var(--blue-3)/.2)}.text-blue-3\/25{color:rgb(var(--blue-3)/.25)}.text-blue-3\/30{color:rgb(var(--blue-3)/.3)}.text-blue-3\/40{color:rgb(var(--blue-3)/.4)}.text-blue-3\/5{color:rgb(var(--blue-3)/.05)}.text-blue-3\/50{color:rgb(var(--blue-3)/.5)}.text-blue-3\/60{color:rgb(var(--blue-3)/.6)}.text-blue-3\/70{color:rgb(var(--blue-3)/.7)}.text-blue-3\/75{color:rgb(var(--blue-3)/.75)}.text-blue-3\/80{color:rgb(var(--blue-3)/.8)}.text-blue-3\/90{color:rgb(var(--blue-3)/.9)}.text-blue-3\/95{color:rgb(var(--blue-3)/.95)}.text-blue-4\/0{color:rgb(var(--blue-4)/0)}.text-blue-4\/10{color:rgb(var(--blue-4)/.1)}.text-blue-4\/100{color:rgb(var(--blue-4)/1)}.text-blue-4\/20{color:rgb(var(--blue-4)/.2)}.text-blue-4\/25{color:rgb(var(--blue-4)/.25)}.text-blue-4\/30{color:rgb(var(--blue-4)/.3)}.text-blue-4\/40{color:rgb(var(--blue-4)/.4)}.text-blue-4\/5{color:rgb(var(--blue-4)/.05)}.text-blue-4\/50{color:rgb(var(--blue-4)/.5)}.text-blue-4\/60{color:rgb(var(--blue-4)/.6)}.text-blue-4\/70{color:rgb(var(--blue-4)/.7)}.text-blue-4\/75{color:rgb(var(--blue-4)/.75)}.text-blue-4\/80{color:rgb(var(--blue-4)/.8)}.text-blue-4\/90{color:rgb(var(--blue-4)/.9)}.text-blue-4\/95{color:rgb(var(--blue-4)/.95)}.text-blue-5\/0{color:rgb(var(--blue-5)/0)}.text-blue-5\/10{color:rgb(var(--blue-5)/.1)}.text-blue-5\/100{color:rgb(var(--blue-5)/1)}.text-blue-5\/20{color:rgb(var(--blue-5)/.2)}.text-blue-5\/25{color:rgb(var(--blue-5)/.25)}.text-blue-5\/30{color:rgb(var(--blue-5)/.3)}.text-blue-5\/40{color:rgb(var(--blue-5)/.4)}.text-blue-5\/5{color:rgb(var(--blue-5)/.05)}.text-blue-5\/50{color:rgb(var(--blue-5)/.5)}.text-blue-5\/60{color:rgb(var(--blue-5)/.6)}.text-blue-5\/70{color:rgb(var(--blue-5)/.7)}.text-blue-5\/75{color:rgb(var(--blue-5)/.75)}.text-blue-5\/80{color:rgb(var(--blue-5)/.8)}.text-blue-5\/90{color:rgb(var(--blue-5)/.9)}.text-blue-5\/95{color:rgb(var(--blue-5)/.95)}.text-blue-6\/0{color:rgb(var(--blue-6)/0)}.text-blue-6\/10{color:rgb(var(--blue-6)/.1)}.text-blue-6\/100{color:rgb(var(--blue-6)/1)}.text-blue-6\/20{color:rgb(var(--blue-6)/.2)}.text-blue-6\/25{color:rgb(var(--blue-6)/.25)}.text-blue-6\/30{color:rgb(var(--blue-6)/.3)}.text-blue-6\/40{color:rgb(var(--blue-6)/.4)}.text-blue-6\/5{color:rgb(var(--blue-6)/.05)}.text-blue-6\/50{color:rgb(var(--blue-6)/.5)}.text-blue-6\/60{color:rgb(var(--blue-6)/.6)}.text-blue-6\/70{color:rgb(var(--blue-6)/.7)}.text-blue-6\/75{color:rgb(var(--blue-6)/.75)}.text-blue-6\/80{color:rgb(var(--blue-6)/.8)}.text-blue-6\/90{color:rgb(var(--blue-6)/.9)}.text-blue-6\/95{color:rgb(var(--blue-6)/.95)}.text-blue-7\/0{color:rgb(var(--blue-7)/0)}.text-blue-7\/10{color:rgb(var(--blue-7)/.1)}.text-blue-7\/100{color:rgb(var(--blue-7)/1)}.text-blue-7\/20{color:rgb(var(--blue-7)/.2)}.text-blue-7\/25{color:rgb(var(--blue-7)/.25)}.text-blue-7\/30{color:rgb(var(--blue-7)/.3)}.text-blue-7\/40{color:rgb(var(--blue-7)/.4)}.text-blue-7\/5{color:rgb(var(--blue-7)/.05)}.text-blue-7\/50{color:rgb(var(--blue-7)/.5)}.text-blue-7\/60{color:rgb(var(--blue-7)/.6)}.text-blue-7\/70{color:rgb(var(--blue-7)/.7)}.text-blue-7\/75{color:rgb(var(--blue-7)/.75)}.text-blue-7\/80{color:rgb(var(--blue-7)/.8)}.text-blue-7\/90{color:rgb(var(--blue-7)/.9)}.text-blue-7\/95{color:rgb(var(--blue-7)/.95)}.text-blue-8\/0{color:rgb(var(--blue-8)/0)}.text-blue-8\/10{color:rgb(var(--blue-8)/.1)}.text-blue-8\/100{color:rgb(var(--blue-8)/1)}.text-blue-8\/20{color:rgb(var(--blue-8)/.2)}.text-blue-8\/25{color:rgb(var(--blue-8)/.25)}.text-blue-8\/30{color:rgb(var(--blue-8)/.3)}.text-blue-8\/40{color:rgb(var(--blue-8)/.4)}.text-blue-8\/5{color:rgb(var(--blue-8)/.05)}.text-blue-8\/50{color:rgb(var(--blue-8)/.5)}.text-blue-8\/60{color:rgb(var(--blue-8)/.6)}.text-blue-8\/70{color:rgb(var(--blue-8)/.7)}.text-blue-8\/75{color:rgb(var(--blue-8)/.75)}.text-blue-8\/80{color:rgb(var(--blue-8)/.8)}.text-blue-8\/90{color:rgb(var(--blue-8)/.9)}.text-blue-8\/95{color:rgb(var(--blue-8)/.95)}.text-blue-9\/0{color:rgb(var(--blue-9)/0)}.text-blue-9\/10{color:rgb(var(--blue-9)/.1)}.text-blue-9\/100{color:rgb(var(--blue-9)/1)}.text-blue-9\/20{color:rgb(var(--blue-9)/.2)}.text-blue-9\/25{color:rgb(var(--blue-9)/.25)}.text-blue-9\/30{color:rgb(var(--blue-9)/.3)}.text-blue-9\/40{color:rgb(var(--blue-9)/.4)}.text-blue-9\/5{color:rgb(var(--blue-9)/.05)}.text-blue-9\/50{color:rgb(var(--blue-9)/.5)}.text-blue-9\/60{color:rgb(var(--blue-9)/.6)}.text-blue-9\/70{color:rgb(var(--blue-9)/.7)}.text-blue-9\/75{color:rgb(var(--blue-9)/.75)}.text-blue-9\/80{color:rgb(var(--blue-9)/.8)}.text-blue-9\/90{color:rgb(var(--blue-9)/.9)}.text-blue-9\/95{color:rgb(var(--blue-9)/.95)}.text-border{--tw-text-opacity:1;color:rgb(var(--border)/var(--tw-text-opacity))}.text-border\/0{color:rgb(var(--border)/0)}.text-border\/10{color:rgb(var(--border)/.1)}.text-border\/100{color:rgb(var(--border)/1)}.text-border\/20{color:rgb(var(--border)/.2)}.text-border\/25{color:rgb(var(--border)/.25)}.text-border\/30{color:rgb(var(--border)/.3)}.text-border\/40{color:rgb(var(--border)/.4)}.text-border\/5{color:rgb(var(--border)/.05)}.text-border\/50{color:rgb(var(--border)/.5)}.text-border\/60{color:rgb(var(--border)/.6)}.text-border\/70{color:rgb(var(--border)/.7)}.text-border\/75{color:rgb(var(--border)/.75)}.text-border\/80{color:rgb(var(--border)/.8)}.text-border\/90{color:rgb(var(--border)/.9)}.text-border\/95{color:rgb(var(--border)/.95)}.text-content1{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity))}.text-content1\/0{color:rgb(var(--content1)/0)}.text-content1\/10{color:rgb(var(--content1)/.1)}.text-content1\/100{color:rgb(var(--content1)/1)}.text-content1\/20{color:rgb(var(--content1)/.2)}.text-content1\/25{color:rgb(var(--content1)/.25)}.text-content1\/30{color:rgb(var(--content1)/.3)}.text-content1\/40{color:rgb(var(--content1)/.4)}.text-content1\/5{color:rgb(var(--content1)/.05)}.text-content1\/50{color:rgb(var(--content1)/.5)}.text-content1\/60{color:rgb(var(--content1)/.6)}.text-content1\/70{color:rgb(var(--content1)/.7)}.text-content1\/75{color:rgb(var(--content1)/.75)}.text-content1\/80{color:rgb(var(--content1)/.8)}.text-content1\/90{color:rgb(var(--content1)/.9)}.text-content1\/95{color:rgb(var(--content1)/.95)}.text-content2{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity))}.text-content2\/0{color:rgb(var(--content2)/0)}.text-content2\/10{color:rgb(var(--content2)/.1)}.text-content2\/100{color:rgb(var(--content2)/1)}.text-content2\/20{color:rgb(var(--content2)/.2)}.text-content2\/25{color:rgb(var(--content2)/.25)}.text-content2\/30{color:rgb(var(--content2)/.3)}.text-content2\/40{color:rgb(var(--content2)/.4)}.text-content2\/5{color:rgb(var(--content2)/.05)}.text-content2\/50{color:rgb(var(--content2)/.5)}.text-content2\/60{color:rgb(var(--content2)/.6)}.text-content2\/70{color:rgb(var(--content2)/.7)}.text-content2\/75{color:rgb(var(--content2)/.75)}.text-content2\/80{color:rgb(var(--content2)/.8)}.text-content2\/90{color:rgb(var(--content2)/.9)}.text-content2\/95{color:rgb(var(--content2)/.95)}.text-content3{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.text-content3\/0{color:rgb(var(--content3)/0)}.text-content3\/10{color:rgb(var(--content3)/.1)}.text-content3\/100{color:rgb(var(--content3)/1)}.text-content3\/20{color:rgb(var(--content3)/.2)}.text-content3\/25{color:rgb(var(--content3)/.25)}.text-content3\/30{color:rgb(var(--content3)/.3)}.text-content3\/40{color:rgb(var(--content3)/.4)}.text-content3\/5{color:rgb(var(--content3)/.05)}.text-content3\/50{color:rgb(var(--content3)/.5)}.text-content3\/60{color:rgb(var(--content3)/.6)}.text-content3\/70{color:rgb(var(--content3)/.7)}.text-content3\/75{color:rgb(var(--content3)/.75)}.text-content3\/80{color:rgb(var(--content3)/.8)}.text-content3\/90{color:rgb(var(--content3)/.9)}.text-content3\/95{color:rgb(var(--content3)/.95)}.text-cyan-1\/0{color:rgb(var(--cyan-1)/0)}.text-cyan-1\/10{color:rgb(var(--cyan-1)/.1)}.text-cyan-1\/100{color:rgb(var(--cyan-1)/1)}.text-cyan-1\/20{color:rgb(var(--cyan-1)/.2)}.text-cyan-1\/25{color:rgb(var(--cyan-1)/.25)}.text-cyan-1\/30{color:rgb(var(--cyan-1)/.3)}.text-cyan-1\/40{color:rgb(var(--cyan-1)/.4)}.text-cyan-1\/5{color:rgb(var(--cyan-1)/.05)}.text-cyan-1\/50{color:rgb(var(--cyan-1)/.5)}.text-cyan-1\/60{color:rgb(var(--cyan-1)/.6)}.text-cyan-1\/70{color:rgb(var(--cyan-1)/.7)}.text-cyan-1\/75{color:rgb(var(--cyan-1)/.75)}.text-cyan-1\/80{color:rgb(var(--cyan-1)/.8)}.text-cyan-1\/90{color:rgb(var(--cyan-1)/.9)}.text-cyan-1\/95{color:rgb(var(--cyan-1)/.95)}.text-cyan-10\/0{color:rgb(var(--cyan-10)/0)}.text-cyan-10\/10{color:rgb(var(--cyan-10)/.1)}.text-cyan-10\/100{color:rgb(var(--cyan-10)/1)}.text-cyan-10\/20{color:rgb(var(--cyan-10)/.2)}.text-cyan-10\/25{color:rgb(var(--cyan-10)/.25)}.text-cyan-10\/30{color:rgb(var(--cyan-10)/.3)}.text-cyan-10\/40{color:rgb(var(--cyan-10)/.4)}.text-cyan-10\/5{color:rgb(var(--cyan-10)/.05)}.text-cyan-10\/50{color:rgb(var(--cyan-10)/.5)}.text-cyan-10\/60{color:rgb(var(--cyan-10)/.6)}.text-cyan-10\/70{color:rgb(var(--cyan-10)/.7)}.text-cyan-10\/75{color:rgb(var(--cyan-10)/.75)}.text-cyan-10\/80{color:rgb(var(--cyan-10)/.8)}.text-cyan-10\/90{color:rgb(var(--cyan-10)/.9)}.text-cyan-10\/95{color:rgb(var(--cyan-10)/.95)}.text-cyan-2\/0{color:rgb(var(--cyan-2)/0)}.text-cyan-2\/10{color:rgb(var(--cyan-2)/.1)}.text-cyan-2\/100{color:rgb(var(--cyan-2)/1)}.text-cyan-2\/20{color:rgb(var(--cyan-2)/.2)}.text-cyan-2\/25{color:rgb(var(--cyan-2)/.25)}.text-cyan-2\/30{color:rgb(var(--cyan-2)/.3)}.text-cyan-2\/40{color:rgb(var(--cyan-2)/.4)}.text-cyan-2\/5{color:rgb(var(--cyan-2)/.05)}.text-cyan-2\/50{color:rgb(var(--cyan-2)/.5)}.text-cyan-2\/60{color:rgb(var(--cyan-2)/.6)}.text-cyan-2\/70{color:rgb(var(--cyan-2)/.7)}.text-cyan-2\/75{color:rgb(var(--cyan-2)/.75)}.text-cyan-2\/80{color:rgb(var(--cyan-2)/.8)}.text-cyan-2\/90{color:rgb(var(--cyan-2)/.9)}.text-cyan-2\/95{color:rgb(var(--cyan-2)/.95)}.text-cyan-3\/0{color:rgb(var(--cyan-3)/0)}.text-cyan-3\/10{color:rgb(var(--cyan-3)/.1)}.text-cyan-3\/100{color:rgb(var(--cyan-3)/1)}.text-cyan-3\/20{color:rgb(var(--cyan-3)/.2)}.text-cyan-3\/25{color:rgb(var(--cyan-3)/.25)}.text-cyan-3\/30{color:rgb(var(--cyan-3)/.3)}.text-cyan-3\/40{color:rgb(var(--cyan-3)/.4)}.text-cyan-3\/5{color:rgb(var(--cyan-3)/.05)}.text-cyan-3\/50{color:rgb(var(--cyan-3)/.5)}.text-cyan-3\/60{color:rgb(var(--cyan-3)/.6)}.text-cyan-3\/70{color:rgb(var(--cyan-3)/.7)}.text-cyan-3\/75{color:rgb(var(--cyan-3)/.75)}.text-cyan-3\/80{color:rgb(var(--cyan-3)/.8)}.text-cyan-3\/90{color:rgb(var(--cyan-3)/.9)}.text-cyan-3\/95{color:rgb(var(--cyan-3)/.95)}.text-cyan-4\/0{color:rgb(var(--cyan-4)/0)}.text-cyan-4\/10{color:rgb(var(--cyan-4)/.1)}.text-cyan-4\/100{color:rgb(var(--cyan-4)/1)}.text-cyan-4\/20{color:rgb(var(--cyan-4)/.2)}.text-cyan-4\/25{color:rgb(var(--cyan-4)/.25)}.text-cyan-4\/30{color:rgb(var(--cyan-4)/.3)}.text-cyan-4\/40{color:rgb(var(--cyan-4)/.4)}.text-cyan-4\/5{color:rgb(var(--cyan-4)/.05)}.text-cyan-4\/50{color:rgb(var(--cyan-4)/.5)}.text-cyan-4\/60{color:rgb(var(--cyan-4)/.6)}.text-cyan-4\/70{color:rgb(var(--cyan-4)/.7)}.text-cyan-4\/75{color:rgb(var(--cyan-4)/.75)}.text-cyan-4\/80{color:rgb(var(--cyan-4)/.8)}.text-cyan-4\/90{color:rgb(var(--cyan-4)/.9)}.text-cyan-4\/95{color:rgb(var(--cyan-4)/.95)}.text-cyan-5\/0{color:rgb(var(--cyan-5)/0)}.text-cyan-5\/10{color:rgb(var(--cyan-5)/.1)}.text-cyan-5\/100{color:rgb(var(--cyan-5)/1)}.text-cyan-5\/20{color:rgb(var(--cyan-5)/.2)}.text-cyan-5\/25{color:rgb(var(--cyan-5)/.25)}.text-cyan-5\/30{color:rgb(var(--cyan-5)/.3)}.text-cyan-5\/40{color:rgb(var(--cyan-5)/.4)}.text-cyan-5\/5{color:rgb(var(--cyan-5)/.05)}.text-cyan-5\/50{color:rgb(var(--cyan-5)/.5)}.text-cyan-5\/60{color:rgb(var(--cyan-5)/.6)}.text-cyan-5\/70{color:rgb(var(--cyan-5)/.7)}.text-cyan-5\/75{color:rgb(var(--cyan-5)/.75)}.text-cyan-5\/80{color:rgb(var(--cyan-5)/.8)}.text-cyan-5\/90{color:rgb(var(--cyan-5)/.9)}.text-cyan-5\/95{color:rgb(var(--cyan-5)/.95)}.text-cyan-6\/0{color:rgb(var(--cyan-6)/0)}.text-cyan-6\/10{color:rgb(var(--cyan-6)/.1)}.text-cyan-6\/100{color:rgb(var(--cyan-6)/1)}.text-cyan-6\/20{color:rgb(var(--cyan-6)/.2)}.text-cyan-6\/25{color:rgb(var(--cyan-6)/.25)}.text-cyan-6\/30{color:rgb(var(--cyan-6)/.3)}.text-cyan-6\/40{color:rgb(var(--cyan-6)/.4)}.text-cyan-6\/5{color:rgb(var(--cyan-6)/.05)}.text-cyan-6\/50{color:rgb(var(--cyan-6)/.5)}.text-cyan-6\/60{color:rgb(var(--cyan-6)/.6)}.text-cyan-6\/70{color:rgb(var(--cyan-6)/.7)}.text-cyan-6\/75{color:rgb(var(--cyan-6)/.75)}.text-cyan-6\/80{color:rgb(var(--cyan-6)/.8)}.text-cyan-6\/90{color:rgb(var(--cyan-6)/.9)}.text-cyan-6\/95{color:rgb(var(--cyan-6)/.95)}.text-cyan-7\/0{color:rgb(var(--cyan-7)/0)}.text-cyan-7\/10{color:rgb(var(--cyan-7)/.1)}.text-cyan-7\/100{color:rgb(var(--cyan-7)/1)}.text-cyan-7\/20{color:rgb(var(--cyan-7)/.2)}.text-cyan-7\/25{color:rgb(var(--cyan-7)/.25)}.text-cyan-7\/30{color:rgb(var(--cyan-7)/.3)}.text-cyan-7\/40{color:rgb(var(--cyan-7)/.4)}.text-cyan-7\/5{color:rgb(var(--cyan-7)/.05)}.text-cyan-7\/50{color:rgb(var(--cyan-7)/.5)}.text-cyan-7\/60{color:rgb(var(--cyan-7)/.6)}.text-cyan-7\/70{color:rgb(var(--cyan-7)/.7)}.text-cyan-7\/75{color:rgb(var(--cyan-7)/.75)}.text-cyan-7\/80{color:rgb(var(--cyan-7)/.8)}.text-cyan-7\/90{color:rgb(var(--cyan-7)/.9)}.text-cyan-7\/95{color:rgb(var(--cyan-7)/.95)}.text-cyan-8\/0{color:rgb(var(--cyan-8)/0)}.text-cyan-8\/10{color:rgb(var(--cyan-8)/.1)}.text-cyan-8\/100{color:rgb(var(--cyan-8)/1)}.text-cyan-8\/20{color:rgb(var(--cyan-8)/.2)}.text-cyan-8\/25{color:rgb(var(--cyan-8)/.25)}.text-cyan-8\/30{color:rgb(var(--cyan-8)/.3)}.text-cyan-8\/40{color:rgb(var(--cyan-8)/.4)}.text-cyan-8\/5{color:rgb(var(--cyan-8)/.05)}.text-cyan-8\/50{color:rgb(var(--cyan-8)/.5)}.text-cyan-8\/60{color:rgb(var(--cyan-8)/.6)}.text-cyan-8\/70{color:rgb(var(--cyan-8)/.7)}.text-cyan-8\/75{color:rgb(var(--cyan-8)/.75)}.text-cyan-8\/80{color:rgb(var(--cyan-8)/.8)}.text-cyan-8\/90{color:rgb(var(--cyan-8)/.9)}.text-cyan-8\/95{color:rgb(var(--cyan-8)/.95)}.text-cyan-9\/0{color:rgb(var(--cyan-9)/0)}.text-cyan-9\/10{color:rgb(var(--cyan-9)/.1)}.text-cyan-9\/100{color:rgb(var(--cyan-9)/1)}.text-cyan-9\/20{color:rgb(var(--cyan-9)/.2)}.text-cyan-9\/25{color:rgb(var(--cyan-9)/.25)}.text-cyan-9\/30{color:rgb(var(--cyan-9)/.3)}.text-cyan-9\/40{color:rgb(var(--cyan-9)/.4)}.text-cyan-9\/5{color:rgb(var(--cyan-9)/.05)}.text-cyan-9\/50{color:rgb(var(--cyan-9)/.5)}.text-cyan-9\/60{color:rgb(var(--cyan-9)/.6)}.text-cyan-9\/70{color:rgb(var(--cyan-9)/.7)}.text-cyan-9\/75{color:rgb(var(--cyan-9)/.75)}.text-cyan-9\/80{color:rgb(var(--cyan-9)/.8)}.text-cyan-9\/90{color:rgb(var(--cyan-9)/.9)}.text-cyan-9\/95{color:rgb(var(--cyan-9)/.95)}.text-error{--tw-text-opacity:1;color:rgb(var(--error)/var(--tw-text-opacity))}.text-error\/0{color:rgb(var(--error)/0)}.text-error\/10{color:rgb(var(--error)/.1)}.text-error\/100{color:rgb(var(--error)/1)}.text-error\/20{color:rgb(var(--error)/.2)}.text-error\/25{color:rgb(var(--error)/.25)}.text-error\/30{color:rgb(var(--error)/.3)}.text-error\/40{color:rgb(var(--error)/.4)}.text-error\/5{color:rgb(var(--error)/.05)}.text-error\/50{color:rgb(var(--error)/.5)}.text-error\/60{color:rgb(var(--error)/.6)}.text-error\/70{color:rgb(var(--error)/.7)}.text-error\/75{color:rgb(var(--error)/.75)}.text-error\/80{color:rgb(var(--error)/.8)}.text-error\/90{color:rgb(var(--error)/.9)}.text-error\/95{color:rgb(var(--error)/.95)}.text-gray-1\/0{color:rgb(var(--gray-1)/0)}.text-gray-1\/10{color:rgb(var(--gray-1)/.1)}.text-gray-1\/100{color:rgb(var(--gray-1)/1)}.text-gray-1\/20{color:rgb(var(--gray-1)/.2)}.text-gray-1\/25{color:rgb(var(--gray-1)/.25)}.text-gray-1\/30{color:rgb(var(--gray-1)/.3)}.text-gray-1\/40{color:rgb(var(--gray-1)/.4)}.text-gray-1\/5{color:rgb(var(--gray-1)/.05)}.text-gray-1\/50{color:rgb(var(--gray-1)/.5)}.text-gray-1\/60{color:rgb(var(--gray-1)/.6)}.text-gray-1\/70{color:rgb(var(--gray-1)/.7)}.text-gray-1\/75{color:rgb(var(--gray-1)/.75)}.text-gray-1\/80{color:rgb(var(--gray-1)/.8)}.text-gray-1\/90{color:rgb(var(--gray-1)/.9)}.text-gray-1\/95{color:rgb(var(--gray-1)/.95)}.text-gray-10\/0{color:rgb(var(--gray-10)/0)}.text-gray-10\/10{color:rgb(var(--gray-10)/.1)}.text-gray-10\/100{color:rgb(var(--gray-10)/1)}.text-gray-10\/20{color:rgb(var(--gray-10)/.2)}.text-gray-10\/25{color:rgb(var(--gray-10)/.25)}.text-gray-10\/30{color:rgb(var(--gray-10)/.3)}.text-gray-10\/40{color:rgb(var(--gray-10)/.4)}.text-gray-10\/5{color:rgb(var(--gray-10)/.05)}.text-gray-10\/50{color:rgb(var(--gray-10)/.5)}.text-gray-10\/60{color:rgb(var(--gray-10)/.6)}.text-gray-10\/70{color:rgb(var(--gray-10)/.7)}.text-gray-10\/75{color:rgb(var(--gray-10)/.75)}.text-gray-10\/80{color:rgb(var(--gray-10)/.8)}.text-gray-10\/90{color:rgb(var(--gray-10)/.9)}.text-gray-10\/95{color:rgb(var(--gray-10)/.95)}.text-gray-2\/0{color:rgb(var(--gray-2)/0)}.text-gray-2\/10{color:rgb(var(--gray-2)/.1)}.text-gray-2\/100{color:rgb(var(--gray-2)/1)}.text-gray-2\/20{color:rgb(var(--gray-2)/.2)}.text-gray-2\/25{color:rgb(var(--gray-2)/.25)}.text-gray-2\/30{color:rgb(var(--gray-2)/.3)}.text-gray-2\/40{color:rgb(var(--gray-2)/.4)}.text-gray-2\/5{color:rgb(var(--gray-2)/.05)}.text-gray-2\/50{color:rgb(var(--gray-2)/.5)}.text-gray-2\/60{color:rgb(var(--gray-2)/.6)}.text-gray-2\/70{color:rgb(var(--gray-2)/.7)}.text-gray-2\/75{color:rgb(var(--gray-2)/.75)}.text-gray-2\/80{color:rgb(var(--gray-2)/.8)}.text-gray-2\/90{color:rgb(var(--gray-2)/.9)}.text-gray-2\/95{color:rgb(var(--gray-2)/.95)}.text-gray-3\/0{color:rgb(var(--gray-3)/0)}.text-gray-3\/10{color:rgb(var(--gray-3)/.1)}.text-gray-3\/100{color:rgb(var(--gray-3)/1)}.text-gray-3\/20{color:rgb(var(--gray-3)/.2)}.text-gray-3\/25{color:rgb(var(--gray-3)/.25)}.text-gray-3\/30{color:rgb(var(--gray-3)/.3)}.text-gray-3\/40{color:rgb(var(--gray-3)/.4)}.text-gray-3\/5{color:rgb(var(--gray-3)/.05)}.text-gray-3\/50{color:rgb(var(--gray-3)/.5)}.text-gray-3\/60{color:rgb(var(--gray-3)/.6)}.text-gray-3\/70{color:rgb(var(--gray-3)/.7)}.text-gray-3\/75{color:rgb(var(--gray-3)/.75)}.text-gray-3\/80{color:rgb(var(--gray-3)/.8)}.text-gray-3\/90{color:rgb(var(--gray-3)/.9)}.text-gray-3\/95{color:rgb(var(--gray-3)/.95)}.text-gray-4\/0{color:rgb(var(--gray-4)/0)}.text-gray-4\/10{color:rgb(var(--gray-4)/.1)}.text-gray-4\/100{color:rgb(var(--gray-4)/1)}.text-gray-4\/20{color:rgb(var(--gray-4)/.2)}.text-gray-4\/25{color:rgb(var(--gray-4)/.25)}.text-gray-4\/30{color:rgb(var(--gray-4)/.3)}.text-gray-4\/40{color:rgb(var(--gray-4)/.4)}.text-gray-4\/5{color:rgb(var(--gray-4)/.05)}.text-gray-4\/50{color:rgb(var(--gray-4)/.5)}.text-gray-4\/60{color:rgb(var(--gray-4)/.6)}.text-gray-4\/70{color:rgb(var(--gray-4)/.7)}.text-gray-4\/75{color:rgb(var(--gray-4)/.75)}.text-gray-4\/80{color:rgb(var(--gray-4)/.8)}.text-gray-4\/90{color:rgb(var(--gray-4)/.9)}.text-gray-4\/95{color:rgb(var(--gray-4)/.95)}.text-gray-5\/0{color:rgb(var(--gray-5)/0)}.text-gray-5\/10{color:rgb(var(--gray-5)/.1)}.text-gray-5\/100{color:rgb(var(--gray-5)/1)}.text-gray-5\/20{color:rgb(var(--gray-5)/.2)}.text-gray-5\/25{color:rgb(var(--gray-5)/.25)}.text-gray-5\/30{color:rgb(var(--gray-5)/.3)}.text-gray-5\/40{color:rgb(var(--gray-5)/.4)}.text-gray-5\/5{color:rgb(var(--gray-5)/.05)}.text-gray-5\/50{color:rgb(var(--gray-5)/.5)}.text-gray-5\/60{color:rgb(var(--gray-5)/.6)}.text-gray-5\/70{color:rgb(var(--gray-5)/.7)}.text-gray-5\/75{color:rgb(var(--gray-5)/.75)}.text-gray-5\/80{color:rgb(var(--gray-5)/.8)}.text-gray-5\/90{color:rgb(var(--gray-5)/.9)}.text-gray-5\/95{color:rgb(var(--gray-5)/.95)}.text-gray-6\/0{color:rgb(var(--gray-6)/0)}.text-gray-6\/10{color:rgb(var(--gray-6)/.1)}.text-gray-6\/100{color:rgb(var(--gray-6)/1)}.text-gray-6\/20{color:rgb(var(--gray-6)/.2)}.text-gray-6\/25{color:rgb(var(--gray-6)/.25)}.text-gray-6\/30{color:rgb(var(--gray-6)/.3)}.text-gray-6\/40{color:rgb(var(--gray-6)/.4)}.text-gray-6\/5{color:rgb(var(--gray-6)/.05)}.text-gray-6\/50{color:rgb(var(--gray-6)/.5)}.text-gray-6\/60{color:rgb(var(--gray-6)/.6)}.text-gray-6\/70{color:rgb(var(--gray-6)/.7)}.text-gray-6\/75{color:rgb(var(--gray-6)/.75)}.text-gray-6\/80{color:rgb(var(--gray-6)/.8)}.text-gray-6\/90{color:rgb(var(--gray-6)/.9)}.text-gray-6\/95{color:rgb(var(--gray-6)/.95)}.text-gray-7\/0{color:rgb(var(--gray-7)/0)}.text-gray-7\/10{color:rgb(var(--gray-7)/.1)}.text-gray-7\/100{color:rgb(var(--gray-7)/1)}.text-gray-7\/20{color:rgb(var(--gray-7)/.2)}.text-gray-7\/25{color:rgb(var(--gray-7)/.25)}.text-gray-7\/30{color:rgb(var(--gray-7)/.3)}.text-gray-7\/40{color:rgb(var(--gray-7)/.4)}.text-gray-7\/5{color:rgb(var(--gray-7)/.05)}.text-gray-7\/50{color:rgb(var(--gray-7)/.5)}.text-gray-7\/60{color:rgb(var(--gray-7)/.6)}.text-gray-7\/70{color:rgb(var(--gray-7)/.7)}.text-gray-7\/75{color:rgb(var(--gray-7)/.75)}.text-gray-7\/80{color:rgb(var(--gray-7)/.8)}.text-gray-7\/90{color:rgb(var(--gray-7)/.9)}.text-gray-7\/95{color:rgb(var(--gray-7)/.95)}.text-gray-8\/0{color:rgb(var(--gray-8)/0)}.text-gray-8\/10{color:rgb(var(--gray-8)/.1)}.text-gray-8\/100{color:rgb(var(--gray-8)/1)}.text-gray-8\/20{color:rgb(var(--gray-8)/.2)}.text-gray-8\/25{color:rgb(var(--gray-8)/.25)}.text-gray-8\/30{color:rgb(var(--gray-8)/.3)}.text-gray-8\/40{color:rgb(var(--gray-8)/.4)}.text-gray-8\/5{color:rgb(var(--gray-8)/.05)}.text-gray-8\/50{color:rgb(var(--gray-8)/.5)}.text-gray-8\/60{color:rgb(var(--gray-8)/.6)}.text-gray-8\/70{color:rgb(var(--gray-8)/.7)}.text-gray-8\/75{color:rgb(var(--gray-8)/.75)}.text-gray-8\/80{color:rgb(var(--gray-8)/.8)}.text-gray-8\/90{color:rgb(var(--gray-8)/.9)}.text-gray-8\/95{color:rgb(var(--gray-8)/.95)}.text-gray-9\/0{color:rgb(var(--gray-9)/0)}.text-gray-9\/10{color:rgb(var(--gray-9)/.1)}.text-gray-9\/100{color:rgb(var(--gray-9)/1)}.text-gray-9\/20{color:rgb(var(--gray-9)/.2)}.text-gray-9\/25{color:rgb(var(--gray-9)/.25)}.text-gray-9\/30{color:rgb(var(--gray-9)/.3)}.text-gray-9\/40{color:rgb(var(--gray-9)/.4)}.text-gray-9\/5{color:rgb(var(--gray-9)/.05)}.text-gray-9\/50{color:rgb(var(--gray-9)/.5)}.text-gray-9\/60{color:rgb(var(--gray-9)/.6)}.text-gray-9\/70{color:rgb(var(--gray-9)/.7)}.text-gray-9\/75{color:rgb(var(--gray-9)/.75)}.text-gray-9\/80{color:rgb(var(--gray-9)/.8)}.text-gray-9\/90{color:rgb(var(--gray-9)/.9)}.text-gray-9\/95{color:rgb(var(--gray-9)/.95)}.text-green-1\/0{color:rgb(var(--green-1)/0)}.text-green-1\/10{color:rgb(var(--green-1)/.1)}.text-green-1\/100{color:rgb(var(--green-1)/1)}.text-green-1\/20{color:rgb(var(--green-1)/.2)}.text-green-1\/25{color:rgb(var(--green-1)/.25)}.text-green-1\/30{color:rgb(var(--green-1)/.3)}.text-green-1\/40{color:rgb(var(--green-1)/.4)}.text-green-1\/5{color:rgb(var(--green-1)/.05)}.text-green-1\/50{color:rgb(var(--green-1)/.5)}.text-green-1\/60{color:rgb(var(--green-1)/.6)}.text-green-1\/70{color:rgb(var(--green-1)/.7)}.text-green-1\/75{color:rgb(var(--green-1)/.75)}.text-green-1\/80{color:rgb(var(--green-1)/.8)}.text-green-1\/90{color:rgb(var(--green-1)/.9)}.text-green-1\/95{color:rgb(var(--green-1)/.95)}.text-green-10\/0{color:rgb(var(--green-10)/0)}.text-green-10\/10{color:rgb(var(--green-10)/.1)}.text-green-10\/100{color:rgb(var(--green-10)/1)}.text-green-10\/20{color:rgb(var(--green-10)/.2)}.text-green-10\/25{color:rgb(var(--green-10)/.25)}.text-green-10\/30{color:rgb(var(--green-10)/.3)}.text-green-10\/40{color:rgb(var(--green-10)/.4)}.text-green-10\/5{color:rgb(var(--green-10)/.05)}.text-green-10\/50{color:rgb(var(--green-10)/.5)}.text-green-10\/60{color:rgb(var(--green-10)/.6)}.text-green-10\/70{color:rgb(var(--green-10)/.7)}.text-green-10\/75{color:rgb(var(--green-10)/.75)}.text-green-10\/80{color:rgb(var(--green-10)/.8)}.text-green-10\/90{color:rgb(var(--green-10)/.9)}.text-green-10\/95{color:rgb(var(--green-10)/.95)}.text-green-2\/0{color:rgb(var(--green-2)/0)}.text-green-2\/10{color:rgb(var(--green-2)/.1)}.text-green-2\/100{color:rgb(var(--green-2)/1)}.text-green-2\/20{color:rgb(var(--green-2)/.2)}.text-green-2\/25{color:rgb(var(--green-2)/.25)}.text-green-2\/30{color:rgb(var(--green-2)/.3)}.text-green-2\/40{color:rgb(var(--green-2)/.4)}.text-green-2\/5{color:rgb(var(--green-2)/.05)}.text-green-2\/50{color:rgb(var(--green-2)/.5)}.text-green-2\/60{color:rgb(var(--green-2)/.6)}.text-green-2\/70{color:rgb(var(--green-2)/.7)}.text-green-2\/75{color:rgb(var(--green-2)/.75)}.text-green-2\/80{color:rgb(var(--green-2)/.8)}.text-green-2\/90{color:rgb(var(--green-2)/.9)}.text-green-2\/95{color:rgb(var(--green-2)/.95)}.text-green-3\/0{color:rgb(var(--green-3)/0)}.text-green-3\/10{color:rgb(var(--green-3)/.1)}.text-green-3\/100{color:rgb(var(--green-3)/1)}.text-green-3\/20{color:rgb(var(--green-3)/.2)}.text-green-3\/25{color:rgb(var(--green-3)/.25)}.text-green-3\/30{color:rgb(var(--green-3)/.3)}.text-green-3\/40{color:rgb(var(--green-3)/.4)}.text-green-3\/5{color:rgb(var(--green-3)/.05)}.text-green-3\/50{color:rgb(var(--green-3)/.5)}.text-green-3\/60{color:rgb(var(--green-3)/.6)}.text-green-3\/70{color:rgb(var(--green-3)/.7)}.text-green-3\/75{color:rgb(var(--green-3)/.75)}.text-green-3\/80{color:rgb(var(--green-3)/.8)}.text-green-3\/90{color:rgb(var(--green-3)/.9)}.text-green-3\/95{color:rgb(var(--green-3)/.95)}.text-green-4\/0{color:rgb(var(--green-4)/0)}.text-green-4\/10{color:rgb(var(--green-4)/.1)}.text-green-4\/100{color:rgb(var(--green-4)/1)}.text-green-4\/20{color:rgb(var(--green-4)/.2)}.text-green-4\/25{color:rgb(var(--green-4)/.25)}.text-green-4\/30{color:rgb(var(--green-4)/.3)}.text-green-4\/40{color:rgb(var(--green-4)/.4)}.text-green-4\/5{color:rgb(var(--green-4)/.05)}.text-green-4\/50{color:rgb(var(--green-4)/.5)}.text-green-4\/60{color:rgb(var(--green-4)/.6)}.text-green-4\/70{color:rgb(var(--green-4)/.7)}.text-green-4\/75{color:rgb(var(--green-4)/.75)}.text-green-4\/80{color:rgb(var(--green-4)/.8)}.text-green-4\/90{color:rgb(var(--green-4)/.9)}.text-green-4\/95{color:rgb(var(--green-4)/.95)}.text-green-5\/0{color:rgb(var(--green-5)/0)}.text-green-5\/10{color:rgb(var(--green-5)/.1)}.text-green-5\/100{color:rgb(var(--green-5)/1)}.text-green-5\/20{color:rgb(var(--green-5)/.2)}.text-green-5\/25{color:rgb(var(--green-5)/.25)}.text-green-5\/30{color:rgb(var(--green-5)/.3)}.text-green-5\/40{color:rgb(var(--green-5)/.4)}.text-green-5\/5{color:rgb(var(--green-5)/.05)}.text-green-5\/50{color:rgb(var(--green-5)/.5)}.text-green-5\/60{color:rgb(var(--green-5)/.6)}.text-green-5\/70{color:rgb(var(--green-5)/.7)}.text-green-5\/75{color:rgb(var(--green-5)/.75)}.text-green-5\/80{color:rgb(var(--green-5)/.8)}.text-green-5\/90{color:rgb(var(--green-5)/.9)}.text-green-5\/95{color:rgb(var(--green-5)/.95)}.text-green-6\/0{color:rgb(var(--green-6)/0)}.text-green-6\/10{color:rgb(var(--green-6)/.1)}.text-green-6\/100{color:rgb(var(--green-6)/1)}.text-green-6\/20{color:rgb(var(--green-6)/.2)}.text-green-6\/25{color:rgb(var(--green-6)/.25)}.text-green-6\/30{color:rgb(var(--green-6)/.3)}.text-green-6\/40{color:rgb(var(--green-6)/.4)}.text-green-6\/5{color:rgb(var(--green-6)/.05)}.text-green-6\/50{color:rgb(var(--green-6)/.5)}.text-green-6\/60{color:rgb(var(--green-6)/.6)}.text-green-6\/70{color:rgb(var(--green-6)/.7)}.text-green-6\/75{color:rgb(var(--green-6)/.75)}.text-green-6\/80{color:rgb(var(--green-6)/.8)}.text-green-6\/90{color:rgb(var(--green-6)/.9)}.text-green-6\/95{color:rgb(var(--green-6)/.95)}.text-green-7\/0{color:rgb(var(--green-7)/0)}.text-green-7\/10{color:rgb(var(--green-7)/.1)}.text-green-7\/100{color:rgb(var(--green-7)/1)}.text-green-7\/20{color:rgb(var(--green-7)/.2)}.text-green-7\/25{color:rgb(var(--green-7)/.25)}.text-green-7\/30{color:rgb(var(--green-7)/.3)}.text-green-7\/40{color:rgb(var(--green-7)/.4)}.text-green-7\/5{color:rgb(var(--green-7)/.05)}.text-green-7\/50{color:rgb(var(--green-7)/.5)}.text-green-7\/60{color:rgb(var(--green-7)/.6)}.text-green-7\/70{color:rgb(var(--green-7)/.7)}.text-green-7\/75{color:rgb(var(--green-7)/.75)}.text-green-7\/80{color:rgb(var(--green-7)/.8)}.text-green-7\/90{color:rgb(var(--green-7)/.9)}.text-green-7\/95{color:rgb(var(--green-7)/.95)}.text-green-8\/0{color:rgb(var(--green-8)/0)}.text-green-8\/10{color:rgb(var(--green-8)/.1)}.text-green-8\/100{color:rgb(var(--green-8)/1)}.text-green-8\/20{color:rgb(var(--green-8)/.2)}.text-green-8\/25{color:rgb(var(--green-8)/.25)}.text-green-8\/30{color:rgb(var(--green-8)/.3)}.text-green-8\/40{color:rgb(var(--green-8)/.4)}.text-green-8\/5{color:rgb(var(--green-8)/.05)}.text-green-8\/50{color:rgb(var(--green-8)/.5)}.text-green-8\/60{color:rgb(var(--green-8)/.6)}.text-green-8\/70{color:rgb(var(--green-8)/.7)}.text-green-8\/75{color:rgb(var(--green-8)/.75)}.text-green-8\/80{color:rgb(var(--green-8)/.8)}.text-green-8\/90{color:rgb(var(--green-8)/.9)}.text-green-8\/95{color:rgb(var(--green-8)/.95)}.text-green-9\/0{color:rgb(var(--green-9)/0)}.text-green-9\/10{color:rgb(var(--green-9)/.1)}.text-green-9\/100{color:rgb(var(--green-9)/1)}.text-green-9\/20{color:rgb(var(--green-9)/.2)}.text-green-9\/25{color:rgb(var(--green-9)/.25)}.text-green-9\/30{color:rgb(var(--green-9)/.3)}.text-green-9\/40{color:rgb(var(--green-9)/.4)}.text-green-9\/5{color:rgb(var(--green-9)/.05)}.text-green-9\/50{color:rgb(var(--green-9)/.5)}.text-green-9\/60{color:rgb(var(--green-9)/.6)}.text-green-9\/70{color:rgb(var(--green-9)/.7)}.text-green-9\/75{color:rgb(var(--green-9)/.75)}.text-green-9\/80{color:rgb(var(--green-9)/.8)}.text-green-9\/90{color:rgb(var(--green-9)/.9)}.text-green-9\/95{color:rgb(var(--green-9)/.95)}.text-pink-1\/0{color:rgb(var(--pink-1)/0)}.text-pink-1\/10{color:rgb(var(--pink-1)/.1)}.text-pink-1\/100{color:rgb(var(--pink-1)/1)}.text-pink-1\/20{color:rgb(var(--pink-1)/.2)}.text-pink-1\/25{color:rgb(var(--pink-1)/.25)}.text-pink-1\/30{color:rgb(var(--pink-1)/.3)}.text-pink-1\/40{color:rgb(var(--pink-1)/.4)}.text-pink-1\/5{color:rgb(var(--pink-1)/.05)}.text-pink-1\/50{color:rgb(var(--pink-1)/.5)}.text-pink-1\/60{color:rgb(var(--pink-1)/.6)}.text-pink-1\/70{color:rgb(var(--pink-1)/.7)}.text-pink-1\/75{color:rgb(var(--pink-1)/.75)}.text-pink-1\/80{color:rgb(var(--pink-1)/.8)}.text-pink-1\/90{color:rgb(var(--pink-1)/.9)}.text-pink-1\/95{color:rgb(var(--pink-1)/.95)}.text-pink-10\/0{color:rgb(var(--pink-10)/0)}.text-pink-10\/10{color:rgb(var(--pink-10)/.1)}.text-pink-10\/100{color:rgb(var(--pink-10)/1)}.text-pink-10\/20{color:rgb(var(--pink-10)/.2)}.text-pink-10\/25{color:rgb(var(--pink-10)/.25)}.text-pink-10\/30{color:rgb(var(--pink-10)/.3)}.text-pink-10\/40{color:rgb(var(--pink-10)/.4)}.text-pink-10\/5{color:rgb(var(--pink-10)/.05)}.text-pink-10\/50{color:rgb(var(--pink-10)/.5)}.text-pink-10\/60{color:rgb(var(--pink-10)/.6)}.text-pink-10\/70{color:rgb(var(--pink-10)/.7)}.text-pink-10\/75{color:rgb(var(--pink-10)/.75)}.text-pink-10\/80{color:rgb(var(--pink-10)/.8)}.text-pink-10\/90{color:rgb(var(--pink-10)/.9)}.text-pink-10\/95{color:rgb(var(--pink-10)/.95)}.text-pink-2\/0{color:rgb(var(--pink-2)/0)}.text-pink-2\/10{color:rgb(var(--pink-2)/.1)}.text-pink-2\/100{color:rgb(var(--pink-2)/1)}.text-pink-2\/20{color:rgb(var(--pink-2)/.2)}.text-pink-2\/25{color:rgb(var(--pink-2)/.25)}.text-pink-2\/30{color:rgb(var(--pink-2)/.3)}.text-pink-2\/40{color:rgb(var(--pink-2)/.4)}.text-pink-2\/5{color:rgb(var(--pink-2)/.05)}.text-pink-2\/50{color:rgb(var(--pink-2)/.5)}.text-pink-2\/60{color:rgb(var(--pink-2)/.6)}.text-pink-2\/70{color:rgb(var(--pink-2)/.7)}.text-pink-2\/75{color:rgb(var(--pink-2)/.75)}.text-pink-2\/80{color:rgb(var(--pink-2)/.8)}.text-pink-2\/90{color:rgb(var(--pink-2)/.9)}.text-pink-2\/95{color:rgb(var(--pink-2)/.95)}.text-pink-3\/0{color:rgb(var(--pink-3)/0)}.text-pink-3\/10{color:rgb(var(--pink-3)/.1)}.text-pink-3\/100{color:rgb(var(--pink-3)/1)}.text-pink-3\/20{color:rgb(var(--pink-3)/.2)}.text-pink-3\/25{color:rgb(var(--pink-3)/.25)}.text-pink-3\/30{color:rgb(var(--pink-3)/.3)}.text-pink-3\/40{color:rgb(var(--pink-3)/.4)}.text-pink-3\/5{color:rgb(var(--pink-3)/.05)}.text-pink-3\/50{color:rgb(var(--pink-3)/.5)}.text-pink-3\/60{color:rgb(var(--pink-3)/.6)}.text-pink-3\/70{color:rgb(var(--pink-3)/.7)}.text-pink-3\/75{color:rgb(var(--pink-3)/.75)}.text-pink-3\/80{color:rgb(var(--pink-3)/.8)}.text-pink-3\/90{color:rgb(var(--pink-3)/.9)}.text-pink-3\/95{color:rgb(var(--pink-3)/.95)}.text-pink-4\/0{color:rgb(var(--pink-4)/0)}.text-pink-4\/10{color:rgb(var(--pink-4)/.1)}.text-pink-4\/100{color:rgb(var(--pink-4)/1)}.text-pink-4\/20{color:rgb(var(--pink-4)/.2)}.text-pink-4\/25{color:rgb(var(--pink-4)/.25)}.text-pink-4\/30{color:rgb(var(--pink-4)/.3)}.text-pink-4\/40{color:rgb(var(--pink-4)/.4)}.text-pink-4\/5{color:rgb(var(--pink-4)/.05)}.text-pink-4\/50{color:rgb(var(--pink-4)/.5)}.text-pink-4\/60{color:rgb(var(--pink-4)/.6)}.text-pink-4\/70{color:rgb(var(--pink-4)/.7)}.text-pink-4\/75{color:rgb(var(--pink-4)/.75)}.text-pink-4\/80{color:rgb(var(--pink-4)/.8)}.text-pink-4\/90{color:rgb(var(--pink-4)/.9)}.text-pink-4\/95{color:rgb(var(--pink-4)/.95)}.text-pink-5\/0{color:rgb(var(--pink-5)/0)}.text-pink-5\/10{color:rgb(var(--pink-5)/.1)}.text-pink-5\/100{color:rgb(var(--pink-5)/1)}.text-pink-5\/20{color:rgb(var(--pink-5)/.2)}.text-pink-5\/25{color:rgb(var(--pink-5)/.25)}.text-pink-5\/30{color:rgb(var(--pink-5)/.3)}.text-pink-5\/40{color:rgb(var(--pink-5)/.4)}.text-pink-5\/5{color:rgb(var(--pink-5)/.05)}.text-pink-5\/50{color:rgb(var(--pink-5)/.5)}.text-pink-5\/60{color:rgb(var(--pink-5)/.6)}.text-pink-5\/70{color:rgb(var(--pink-5)/.7)}.text-pink-5\/75{color:rgb(var(--pink-5)/.75)}.text-pink-5\/80{color:rgb(var(--pink-5)/.8)}.text-pink-5\/90{color:rgb(var(--pink-5)/.9)}.text-pink-5\/95{color:rgb(var(--pink-5)/.95)}.text-pink-6\/0{color:rgb(var(--pink-6)/0)}.text-pink-6\/10{color:rgb(var(--pink-6)/.1)}.text-pink-6\/100{color:rgb(var(--pink-6)/1)}.text-pink-6\/20{color:rgb(var(--pink-6)/.2)}.text-pink-6\/25{color:rgb(var(--pink-6)/.25)}.text-pink-6\/30{color:rgb(var(--pink-6)/.3)}.text-pink-6\/40{color:rgb(var(--pink-6)/.4)}.text-pink-6\/5{color:rgb(var(--pink-6)/.05)}.text-pink-6\/50{color:rgb(var(--pink-6)/.5)}.text-pink-6\/60{color:rgb(var(--pink-6)/.6)}.text-pink-6\/70{color:rgb(var(--pink-6)/.7)}.text-pink-6\/75{color:rgb(var(--pink-6)/.75)}.text-pink-6\/80{color:rgb(var(--pink-6)/.8)}.text-pink-6\/90{color:rgb(var(--pink-6)/.9)}.text-pink-6\/95{color:rgb(var(--pink-6)/.95)}.text-pink-7\/0{color:rgb(var(--pink-7)/0)}.text-pink-7\/10{color:rgb(var(--pink-7)/.1)}.text-pink-7\/100{color:rgb(var(--pink-7)/1)}.text-pink-7\/20{color:rgb(var(--pink-7)/.2)}.text-pink-7\/25{color:rgb(var(--pink-7)/.25)}.text-pink-7\/30{color:rgb(var(--pink-7)/.3)}.text-pink-7\/40{color:rgb(var(--pink-7)/.4)}.text-pink-7\/5{color:rgb(var(--pink-7)/.05)}.text-pink-7\/50{color:rgb(var(--pink-7)/.5)}.text-pink-7\/60{color:rgb(var(--pink-7)/.6)}.text-pink-7\/70{color:rgb(var(--pink-7)/.7)}.text-pink-7\/75{color:rgb(var(--pink-7)/.75)}.text-pink-7\/80{color:rgb(var(--pink-7)/.8)}.text-pink-7\/90{color:rgb(var(--pink-7)/.9)}.text-pink-7\/95{color:rgb(var(--pink-7)/.95)}.text-pink-8\/0{color:rgb(var(--pink-8)/0)}.text-pink-8\/10{color:rgb(var(--pink-8)/.1)}.text-pink-8\/100{color:rgb(var(--pink-8)/1)}.text-pink-8\/20{color:rgb(var(--pink-8)/.2)}.text-pink-8\/25{color:rgb(var(--pink-8)/.25)}.text-pink-8\/30{color:rgb(var(--pink-8)/.3)}.text-pink-8\/40{color:rgb(var(--pink-8)/.4)}.text-pink-8\/5{color:rgb(var(--pink-8)/.05)}.text-pink-8\/50{color:rgb(var(--pink-8)/.5)}.text-pink-8\/60{color:rgb(var(--pink-8)/.6)}.text-pink-8\/70{color:rgb(var(--pink-8)/.7)}.text-pink-8\/75{color:rgb(var(--pink-8)/.75)}.text-pink-8\/80{color:rgb(var(--pink-8)/.8)}.text-pink-8\/90{color:rgb(var(--pink-8)/.9)}.text-pink-8\/95{color:rgb(var(--pink-8)/.95)}.text-pink-9\/0{color:rgb(var(--pink-9)/0)}.text-pink-9\/10{color:rgb(var(--pink-9)/.1)}.text-pink-9\/100{color:rgb(var(--pink-9)/1)}.text-pink-9\/20{color:rgb(var(--pink-9)/.2)}.text-pink-9\/25{color:rgb(var(--pink-9)/.25)}.text-pink-9\/30{color:rgb(var(--pink-9)/.3)}.text-pink-9\/40{color:rgb(var(--pink-9)/.4)}.text-pink-9\/5{color:rgb(var(--pink-9)/.05)}.text-pink-9\/50{color:rgb(var(--pink-9)/.5)}.text-pink-9\/60{color:rgb(var(--pink-9)/.6)}.text-pink-9\/70{color:rgb(var(--pink-9)/.7)}.text-pink-9\/75{color:rgb(var(--pink-9)/.75)}.text-pink-9\/80{color:rgb(var(--pink-9)/.8)}.text-pink-9\/90{color:rgb(var(--pink-9)/.9)}.text-pink-9\/95{color:rgb(var(--pink-9)/.95)}.text-primary{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.text-primary\/0{color:rgb(var(--primary)/0)}.text-primary\/10{color:rgb(var(--primary)/.1)}.text-primary\/100{color:rgb(var(--primary)/1)}.text-primary\/20{color:rgb(var(--primary)/.2)}.text-primary\/25{color:rgb(var(--primary)/.25)}.text-primary\/30{color:rgb(var(--primary)/.3)}.text-primary\/40{color:rgb(var(--primary)/.4)}.text-primary\/5{color:rgb(var(--primary)/.05)}.text-primary\/50{color:rgb(var(--primary)/.5)}.text-primary\/60{color:rgb(var(--primary)/.6)}.text-primary\/70{color:rgb(var(--primary)/.7)}.text-primary\/75{color:rgb(var(--primary)/.75)}.text-primary\/80{color:rgb(var(--primary)/.8)}.text-primary\/90{color:rgb(var(--primary)/.9)}.text-primary\/95{color:rgb(var(--primary)/.95)}.text-purple-1\/0{color:rgb(var(--purple-1)/0)}.text-purple-1\/10{color:rgb(var(--purple-1)/.1)}.text-purple-1\/100{color:rgb(var(--purple-1)/1)}.text-purple-1\/20{color:rgb(var(--purple-1)/.2)}.text-purple-1\/25{color:rgb(var(--purple-1)/.25)}.text-purple-1\/30{color:rgb(var(--purple-1)/.3)}.text-purple-1\/40{color:rgb(var(--purple-1)/.4)}.text-purple-1\/5{color:rgb(var(--purple-1)/.05)}.text-purple-1\/50{color:rgb(var(--purple-1)/.5)}.text-purple-1\/60{color:rgb(var(--purple-1)/.6)}.text-purple-1\/70{color:rgb(var(--purple-1)/.7)}.text-purple-1\/75{color:rgb(var(--purple-1)/.75)}.text-purple-1\/80{color:rgb(var(--purple-1)/.8)}.text-purple-1\/90{color:rgb(var(--purple-1)/.9)}.text-purple-1\/95{color:rgb(var(--purple-1)/.95)}.text-purple-10\/0{color:rgb(var(--purple-10)/0)}.text-purple-10\/10{color:rgb(var(--purple-10)/.1)}.text-purple-10\/100{color:rgb(var(--purple-10)/1)}.text-purple-10\/20{color:rgb(var(--purple-10)/.2)}.text-purple-10\/25{color:rgb(var(--purple-10)/.25)}.text-purple-10\/30{color:rgb(var(--purple-10)/.3)}.text-purple-10\/40{color:rgb(var(--purple-10)/.4)}.text-purple-10\/5{color:rgb(var(--purple-10)/.05)}.text-purple-10\/50{color:rgb(var(--purple-10)/.5)}.text-purple-10\/60{color:rgb(var(--purple-10)/.6)}.text-purple-10\/70{color:rgb(var(--purple-10)/.7)}.text-purple-10\/75{color:rgb(var(--purple-10)/.75)}.text-purple-10\/80{color:rgb(var(--purple-10)/.8)}.text-purple-10\/90{color:rgb(var(--purple-10)/.9)}.text-purple-10\/95{color:rgb(var(--purple-10)/.95)}.text-purple-2\/0{color:rgb(var(--purple-2)/0)}.text-purple-2\/10{color:rgb(var(--purple-2)/.1)}.text-purple-2\/100{color:rgb(var(--purple-2)/1)}.text-purple-2\/20{color:rgb(var(--purple-2)/.2)}.text-purple-2\/25{color:rgb(var(--purple-2)/.25)}.text-purple-2\/30{color:rgb(var(--purple-2)/.3)}.text-purple-2\/40{color:rgb(var(--purple-2)/.4)}.text-purple-2\/5{color:rgb(var(--purple-2)/.05)}.text-purple-2\/50{color:rgb(var(--purple-2)/.5)}.text-purple-2\/60{color:rgb(var(--purple-2)/.6)}.text-purple-2\/70{color:rgb(var(--purple-2)/.7)}.text-purple-2\/75{color:rgb(var(--purple-2)/.75)}.text-purple-2\/80{color:rgb(var(--purple-2)/.8)}.text-purple-2\/90{color:rgb(var(--purple-2)/.9)}.text-purple-2\/95{color:rgb(var(--purple-2)/.95)}.text-purple-3\/0{color:rgb(var(--purple-3)/0)}.text-purple-3\/10{color:rgb(var(--purple-3)/.1)}.text-purple-3\/100{color:rgb(var(--purple-3)/1)}.text-purple-3\/20{color:rgb(var(--purple-3)/.2)}.text-purple-3\/25{color:rgb(var(--purple-3)/.25)}.text-purple-3\/30{color:rgb(var(--purple-3)/.3)}.text-purple-3\/40{color:rgb(var(--purple-3)/.4)}.text-purple-3\/5{color:rgb(var(--purple-3)/.05)}.text-purple-3\/50{color:rgb(var(--purple-3)/.5)}.text-purple-3\/60{color:rgb(var(--purple-3)/.6)}.text-purple-3\/70{color:rgb(var(--purple-3)/.7)}.text-purple-3\/75{color:rgb(var(--purple-3)/.75)}.text-purple-3\/80{color:rgb(var(--purple-3)/.8)}.text-purple-3\/90{color:rgb(var(--purple-3)/.9)}.text-purple-3\/95{color:rgb(var(--purple-3)/.95)}.text-purple-4\/0{color:rgb(var(--purple-4)/0)}.text-purple-4\/10{color:rgb(var(--purple-4)/.1)}.text-purple-4\/100{color:rgb(var(--purple-4)/1)}.text-purple-4\/20{color:rgb(var(--purple-4)/.2)}.text-purple-4\/25{color:rgb(var(--purple-4)/.25)}.text-purple-4\/30{color:rgb(var(--purple-4)/.3)}.text-purple-4\/40{color:rgb(var(--purple-4)/.4)}.text-purple-4\/5{color:rgb(var(--purple-4)/.05)}.text-purple-4\/50{color:rgb(var(--purple-4)/.5)}.text-purple-4\/60{color:rgb(var(--purple-4)/.6)}.text-purple-4\/70{color:rgb(var(--purple-4)/.7)}.text-purple-4\/75{color:rgb(var(--purple-4)/.75)}.text-purple-4\/80{color:rgb(var(--purple-4)/.8)}.text-purple-4\/90{color:rgb(var(--purple-4)/.9)}.text-purple-4\/95{color:rgb(var(--purple-4)/.95)}.text-purple-5\/0{color:rgb(var(--purple-5)/0)}.text-purple-5\/10{color:rgb(var(--purple-5)/.1)}.text-purple-5\/100{color:rgb(var(--purple-5)/1)}.text-purple-5\/20{color:rgb(var(--purple-5)/.2)}.text-purple-5\/25{color:rgb(var(--purple-5)/.25)}.text-purple-5\/30{color:rgb(var(--purple-5)/.3)}.text-purple-5\/40{color:rgb(var(--purple-5)/.4)}.text-purple-5\/5{color:rgb(var(--purple-5)/.05)}.text-purple-5\/50{color:rgb(var(--purple-5)/.5)}.text-purple-5\/60{color:rgb(var(--purple-5)/.6)}.text-purple-5\/70{color:rgb(var(--purple-5)/.7)}.text-purple-5\/75{color:rgb(var(--purple-5)/.75)}.text-purple-5\/80{color:rgb(var(--purple-5)/.8)}.text-purple-5\/90{color:rgb(var(--purple-5)/.9)}.text-purple-5\/95{color:rgb(var(--purple-5)/.95)}.text-purple-6\/0{color:rgb(var(--purple-6)/0)}.text-purple-6\/10{color:rgb(var(--purple-6)/.1)}.text-purple-6\/100{color:rgb(var(--purple-6)/1)}.text-purple-6\/20{color:rgb(var(--purple-6)/.2)}.text-purple-6\/25{color:rgb(var(--purple-6)/.25)}.text-purple-6\/30{color:rgb(var(--purple-6)/.3)}.text-purple-6\/40{color:rgb(var(--purple-6)/.4)}.text-purple-6\/5{color:rgb(var(--purple-6)/.05)}.text-purple-6\/50{color:rgb(var(--purple-6)/.5)}.text-purple-6\/60{color:rgb(var(--purple-6)/.6)}.text-purple-6\/70{color:rgb(var(--purple-6)/.7)}.text-purple-6\/75{color:rgb(var(--purple-6)/.75)}.text-purple-6\/80{color:rgb(var(--purple-6)/.8)}.text-purple-6\/90{color:rgb(var(--purple-6)/.9)}.text-purple-6\/95{color:rgb(var(--purple-6)/.95)}.text-purple-7\/0{color:rgb(var(--purple-7)/0)}.text-purple-7\/10{color:rgb(var(--purple-7)/.1)}.text-purple-7\/100{color:rgb(var(--purple-7)/1)}.text-purple-7\/20{color:rgb(var(--purple-7)/.2)}.text-purple-7\/25{color:rgb(var(--purple-7)/.25)}.text-purple-7\/30{color:rgb(var(--purple-7)/.3)}.text-purple-7\/40{color:rgb(var(--purple-7)/.4)}.text-purple-7\/5{color:rgb(var(--purple-7)/.05)}.text-purple-7\/50{color:rgb(var(--purple-7)/.5)}.text-purple-7\/60{color:rgb(var(--purple-7)/.6)}.text-purple-7\/70{color:rgb(var(--purple-7)/.7)}.text-purple-7\/75{color:rgb(var(--purple-7)/.75)}.text-purple-7\/80{color:rgb(var(--purple-7)/.8)}.text-purple-7\/90{color:rgb(var(--purple-7)/.9)}.text-purple-7\/95{color:rgb(var(--purple-7)/.95)}.text-purple-8\/0{color:rgb(var(--purple-8)/0)}.text-purple-8\/10{color:rgb(var(--purple-8)/.1)}.text-purple-8\/100{color:rgb(var(--purple-8)/1)}.text-purple-8\/20{color:rgb(var(--purple-8)/.2)}.text-purple-8\/25{color:rgb(var(--purple-8)/.25)}.text-purple-8\/30{color:rgb(var(--purple-8)/.3)}.text-purple-8\/40{color:rgb(var(--purple-8)/.4)}.text-purple-8\/5{color:rgb(var(--purple-8)/.05)}.text-purple-8\/50{color:rgb(var(--purple-8)/.5)}.text-purple-8\/60{color:rgb(var(--purple-8)/.6)}.text-purple-8\/70{color:rgb(var(--purple-8)/.7)}.text-purple-8\/75{color:rgb(var(--purple-8)/.75)}.text-purple-8\/80{color:rgb(var(--purple-8)/.8)}.text-purple-8\/90{color:rgb(var(--purple-8)/.9)}.text-purple-8\/95{color:rgb(var(--purple-8)/.95)}.text-purple-9\/0{color:rgb(var(--purple-9)/0)}.text-purple-9\/10{color:rgb(var(--purple-9)/.1)}.text-purple-9\/100{color:rgb(var(--purple-9)/1)}.text-purple-9\/20{color:rgb(var(--purple-9)/.2)}.text-purple-9\/25{color:rgb(var(--purple-9)/.25)}.text-purple-9\/30{color:rgb(var(--purple-9)/.3)}.text-purple-9\/40{color:rgb(var(--purple-9)/.4)}.text-purple-9\/5{color:rgb(var(--purple-9)/.05)}.text-purple-9\/50{color:rgb(var(--purple-9)/.5)}.text-purple-9\/60{color:rgb(var(--purple-9)/.6)}.text-purple-9\/70{color:rgb(var(--purple-9)/.7)}.text-purple-9\/75{color:rgb(var(--purple-9)/.75)}.text-purple-9\/80{color:rgb(var(--purple-9)/.8)}.text-purple-9\/90{color:rgb(var(--purple-9)/.9)}.text-purple-9\/95{color:rgb(var(--purple-9)/.95)}.text-red-1\/0{color:rgb(var(--red-1)/0)}.text-red-1\/10{color:rgb(var(--red-1)/.1)}.text-red-1\/100{color:rgb(var(--red-1)/1)}.text-red-1\/20{color:rgb(var(--red-1)/.2)}.text-red-1\/25{color:rgb(var(--red-1)/.25)}.text-red-1\/30{color:rgb(var(--red-1)/.3)}.text-red-1\/40{color:rgb(var(--red-1)/.4)}.text-red-1\/5{color:rgb(var(--red-1)/.05)}.text-red-1\/50{color:rgb(var(--red-1)/.5)}.text-red-1\/60{color:rgb(var(--red-1)/.6)}.text-red-1\/70{color:rgb(var(--red-1)/.7)}.text-red-1\/75{color:rgb(var(--red-1)/.75)}.text-red-1\/80{color:rgb(var(--red-1)/.8)}.text-red-1\/90{color:rgb(var(--red-1)/.9)}.text-red-1\/95{color:rgb(var(--red-1)/.95)}.text-red-10\/0{color:rgb(var(--red-10)/0)}.text-red-10\/10{color:rgb(var(--red-10)/.1)}.text-red-10\/100{color:rgb(var(--red-10)/1)}.text-red-10\/20{color:rgb(var(--red-10)/.2)}.text-red-10\/25{color:rgb(var(--red-10)/.25)}.text-red-10\/30{color:rgb(var(--red-10)/.3)}.text-red-10\/40{color:rgb(var(--red-10)/.4)}.text-red-10\/5{color:rgb(var(--red-10)/.05)}.text-red-10\/50{color:rgb(var(--red-10)/.5)}.text-red-10\/60{color:rgb(var(--red-10)/.6)}.text-red-10\/70{color:rgb(var(--red-10)/.7)}.text-red-10\/75{color:rgb(var(--red-10)/.75)}.text-red-10\/80{color:rgb(var(--red-10)/.8)}.text-red-10\/90{color:rgb(var(--red-10)/.9)}.text-red-10\/95{color:rgb(var(--red-10)/.95)}.text-red-2\/0{color:rgb(var(--red-2)/0)}.text-red-2\/10{color:rgb(var(--red-2)/.1)}.text-red-2\/100{color:rgb(var(--red-2)/1)}.text-red-2\/20{color:rgb(var(--red-2)/.2)}.text-red-2\/25{color:rgb(var(--red-2)/.25)}.text-red-2\/30{color:rgb(var(--red-2)/.3)}.text-red-2\/40{color:rgb(var(--red-2)/.4)}.text-red-2\/5{color:rgb(var(--red-2)/.05)}.text-red-2\/50{color:rgb(var(--red-2)/.5)}.text-red-2\/60{color:rgb(var(--red-2)/.6)}.text-red-2\/70{color:rgb(var(--red-2)/.7)}.text-red-2\/75{color:rgb(var(--red-2)/.75)}.text-red-2\/80{color:rgb(var(--red-2)/.8)}.text-red-2\/90{color:rgb(var(--red-2)/.9)}.text-red-2\/95{color:rgb(var(--red-2)/.95)}.text-red-3\/0{color:rgb(var(--red-3)/0)}.text-red-3\/10{color:rgb(var(--red-3)/.1)}.text-red-3\/100{color:rgb(var(--red-3)/1)}.text-red-3\/20{color:rgb(var(--red-3)/.2)}.text-red-3\/25{color:rgb(var(--red-3)/.25)}.text-red-3\/30{color:rgb(var(--red-3)/.3)}.text-red-3\/40{color:rgb(var(--red-3)/.4)}.text-red-3\/5{color:rgb(var(--red-3)/.05)}.text-red-3\/50{color:rgb(var(--red-3)/.5)}.text-red-3\/60{color:rgb(var(--red-3)/.6)}.text-red-3\/70{color:rgb(var(--red-3)/.7)}.text-red-3\/75{color:rgb(var(--red-3)/.75)}.text-red-3\/80{color:rgb(var(--red-3)/.8)}.text-red-3\/90{color:rgb(var(--red-3)/.9)}.text-red-3\/95{color:rgb(var(--red-3)/.95)}.text-red-4\/0{color:rgb(var(--red-4)/0)}.text-red-4\/10{color:rgb(var(--red-4)/.1)}.text-red-4\/100{color:rgb(var(--red-4)/1)}.text-red-4\/20{color:rgb(var(--red-4)/.2)}.text-red-4\/25{color:rgb(var(--red-4)/.25)}.text-red-4\/30{color:rgb(var(--red-4)/.3)}.text-red-4\/40{color:rgb(var(--red-4)/.4)}.text-red-4\/5{color:rgb(var(--red-4)/.05)}.text-red-4\/50{color:rgb(var(--red-4)/.5)}.text-red-4\/60{color:rgb(var(--red-4)/.6)}.text-red-4\/70{color:rgb(var(--red-4)/.7)}.text-red-4\/75{color:rgb(var(--red-4)/.75)}.text-red-4\/80{color:rgb(var(--red-4)/.8)}.text-red-4\/90{color:rgb(var(--red-4)/.9)}.text-red-4\/95{color:rgb(var(--red-4)/.95)}.text-red-5\/0{color:rgb(var(--red-5)/0)}.text-red-5\/10{color:rgb(var(--red-5)/.1)}.text-red-5\/100{color:rgb(var(--red-5)/1)}.text-red-5\/20{color:rgb(var(--red-5)/.2)}.text-red-5\/25{color:rgb(var(--red-5)/.25)}.text-red-5\/30{color:rgb(var(--red-5)/.3)}.text-red-5\/40{color:rgb(var(--red-5)/.4)}.text-red-5\/5{color:rgb(var(--red-5)/.05)}.text-red-5\/50{color:rgb(var(--red-5)/.5)}.text-red-5\/60{color:rgb(var(--red-5)/.6)}.text-red-5\/70{color:rgb(var(--red-5)/.7)}.text-red-5\/75{color:rgb(var(--red-5)/.75)}.text-red-5\/80{color:rgb(var(--red-5)/.8)}.text-red-5\/90{color:rgb(var(--red-5)/.9)}.text-red-5\/95{color:rgb(var(--red-5)/.95)}.text-red-6\/0{color:rgb(var(--red-6)/0)}.text-red-6\/10{color:rgb(var(--red-6)/.1)}.text-red-6\/100{color:rgb(var(--red-6)/1)}.text-red-6\/20{color:rgb(var(--red-6)/.2)}.text-red-6\/25{color:rgb(var(--red-6)/.25)}.text-red-6\/30{color:rgb(var(--red-6)/.3)}.text-red-6\/40{color:rgb(var(--red-6)/.4)}.text-red-6\/5{color:rgb(var(--red-6)/.05)}.text-red-6\/50{color:rgb(var(--red-6)/.5)}.text-red-6\/60{color:rgb(var(--red-6)/.6)}.text-red-6\/70{color:rgb(var(--red-6)/.7)}.text-red-6\/75{color:rgb(var(--red-6)/.75)}.text-red-6\/80{color:rgb(var(--red-6)/.8)}.text-red-6\/90{color:rgb(var(--red-6)/.9)}.text-red-6\/95{color:rgb(var(--red-6)/.95)}.text-red-7\/0{color:rgb(var(--red-7)/0)}.text-red-7\/10{color:rgb(var(--red-7)/.1)}.text-red-7\/100{color:rgb(var(--red-7)/1)}.text-red-7\/20{color:rgb(var(--red-7)/.2)}.text-red-7\/25{color:rgb(var(--red-7)/.25)}.text-red-7\/30{color:rgb(var(--red-7)/.3)}.text-red-7\/40{color:rgb(var(--red-7)/.4)}.text-red-7\/5{color:rgb(var(--red-7)/.05)}.text-red-7\/50{color:rgb(var(--red-7)/.5)}.text-red-7\/60{color:rgb(var(--red-7)/.6)}.text-red-7\/70{color:rgb(var(--red-7)/.7)}.text-red-7\/75{color:rgb(var(--red-7)/.75)}.text-red-7\/80{color:rgb(var(--red-7)/.8)}.text-red-7\/90{color:rgb(var(--red-7)/.9)}.text-red-7\/95{color:rgb(var(--red-7)/.95)}.text-red-8\/0{color:rgb(var(--red-8)/0)}.text-red-8\/10{color:rgb(var(--red-8)/.1)}.text-red-8\/100{color:rgb(var(--red-8)/1)}.text-red-8\/20{color:rgb(var(--red-8)/.2)}.text-red-8\/25{color:rgb(var(--red-8)/.25)}.text-red-8\/30{color:rgb(var(--red-8)/.3)}.text-red-8\/40{color:rgb(var(--red-8)/.4)}.text-red-8\/5{color:rgb(var(--red-8)/.05)}.text-red-8\/50{color:rgb(var(--red-8)/.5)}.text-red-8\/60{color:rgb(var(--red-8)/.6)}.text-red-8\/70{color:rgb(var(--red-8)/.7)}.text-red-8\/75{color:rgb(var(--red-8)/.75)}.text-red-8\/80{color:rgb(var(--red-8)/.8)}.text-red-8\/90{color:rgb(var(--red-8)/.9)}.text-red-8\/95{color:rgb(var(--red-8)/.95)}.text-red-9\/0{color:rgb(var(--red-9)/0)}.text-red-9\/10{color:rgb(var(--red-9)/.1)}.text-red-9\/100{color:rgb(var(--red-9)/1)}.text-red-9\/20{color:rgb(var(--red-9)/.2)}.text-red-9\/25{color:rgb(var(--red-9)/.25)}.text-red-9\/30{color:rgb(var(--red-9)/.3)}.text-red-9\/40{color:rgb(var(--red-9)/.4)}.text-red-9\/5{color:rgb(var(--red-9)/.05)}.text-red-9\/50{color:rgb(var(--red-9)/.5)}.text-red-9\/60{color:rgb(var(--red-9)/.6)}.text-red-9\/70{color:rgb(var(--red-9)/.7)}.text-red-9\/75{color:rgb(var(--red-9)/.75)}.text-red-9\/80{color:rgb(var(--red-9)/.8)}.text-red-9\/90{color:rgb(var(--red-9)/.9)}.text-red-9\/95{color:rgb(var(--red-9)/.95)}.text-secondary{--tw-text-opacity:1;color:rgb(var(--secondary)/var(--tw-text-opacity))}.text-secondary\/0{color:rgb(var(--secondary)/0)}.text-secondary\/10{color:rgb(var(--secondary)/.1)}.text-secondary\/100{color:rgb(var(--secondary)/1)}.text-secondary\/20{color:rgb(var(--secondary)/.2)}.text-secondary\/25{color:rgb(var(--secondary)/.25)}.text-secondary\/30{color:rgb(var(--secondary)/.3)}.text-secondary\/40{color:rgb(var(--secondary)/.4)}.text-secondary\/5{color:rgb(var(--secondary)/.05)}.text-secondary\/50{color:rgb(var(--secondary)/.5)}.text-secondary\/60{color:rgb(var(--secondary)/.6)}.text-secondary\/70{color:rgb(var(--secondary)/.7)}.text-secondary\/75{color:rgb(var(--secondary)/.75)}.text-secondary\/80{color:rgb(var(--secondary)/.8)}.text-secondary\/90{color:rgb(var(--secondary)/.9)}.text-secondary\/95{color:rgb(var(--secondary)/.95)}.text-slate-1\/0{color:rgb(var(--slate-1)/0)}.text-slate-1\/10{color:rgb(var(--slate-1)/.1)}.text-slate-1\/100{color:rgb(var(--slate-1)/1)}.text-slate-1\/20{color:rgb(var(--slate-1)/.2)}.text-slate-1\/25{color:rgb(var(--slate-1)/.25)}.text-slate-1\/30{color:rgb(var(--slate-1)/.3)}.text-slate-1\/40{color:rgb(var(--slate-1)/.4)}.text-slate-1\/5{color:rgb(var(--slate-1)/.05)}.text-slate-1\/50{color:rgb(var(--slate-1)/.5)}.text-slate-1\/60{color:rgb(var(--slate-1)/.6)}.text-slate-1\/70{color:rgb(var(--slate-1)/.7)}.text-slate-1\/75{color:rgb(var(--slate-1)/.75)}.text-slate-1\/80{color:rgb(var(--slate-1)/.8)}.text-slate-1\/90{color:rgb(var(--slate-1)/.9)}.text-slate-1\/95{color:rgb(var(--slate-1)/.95)}.text-slate-10\/0{color:rgb(var(--slate-10)/0)}.text-slate-10\/10{color:rgb(var(--slate-10)/.1)}.text-slate-10\/100{color:rgb(var(--slate-10)/1)}.text-slate-10\/20{color:rgb(var(--slate-10)/.2)}.text-slate-10\/25{color:rgb(var(--slate-10)/.25)}.text-slate-10\/30{color:rgb(var(--slate-10)/.3)}.text-slate-10\/40{color:rgb(var(--slate-10)/.4)}.text-slate-10\/5{color:rgb(var(--slate-10)/.05)}.text-slate-10\/50{color:rgb(var(--slate-10)/.5)}.text-slate-10\/60{color:rgb(var(--slate-10)/.6)}.text-slate-10\/70{color:rgb(var(--slate-10)/.7)}.text-slate-10\/75{color:rgb(var(--slate-10)/.75)}.text-slate-10\/80{color:rgb(var(--slate-10)/.8)}.text-slate-10\/90{color:rgb(var(--slate-10)/.9)}.text-slate-10\/95{color:rgb(var(--slate-10)/.95)}.text-slate-2\/0{color:rgb(var(--slate-2)/0)}.text-slate-2\/10{color:rgb(var(--slate-2)/.1)}.text-slate-2\/100{color:rgb(var(--slate-2)/1)}.text-slate-2\/20{color:rgb(var(--slate-2)/.2)}.text-slate-2\/25{color:rgb(var(--slate-2)/.25)}.text-slate-2\/30{color:rgb(var(--slate-2)/.3)}.text-slate-2\/40{color:rgb(var(--slate-2)/.4)}.text-slate-2\/5{color:rgb(var(--slate-2)/.05)}.text-slate-2\/50{color:rgb(var(--slate-2)/.5)}.text-slate-2\/60{color:rgb(var(--slate-2)/.6)}.text-slate-2\/70{color:rgb(var(--slate-2)/.7)}.text-slate-2\/75{color:rgb(var(--slate-2)/.75)}.text-slate-2\/80{color:rgb(var(--slate-2)/.8)}.text-slate-2\/90{color:rgb(var(--slate-2)/.9)}.text-slate-2\/95{color:rgb(var(--slate-2)/.95)}.text-slate-3\/0{color:rgb(var(--slate-3)/0)}.text-slate-3\/10{color:rgb(var(--slate-3)/.1)}.text-slate-3\/100{color:rgb(var(--slate-3)/1)}.text-slate-3\/20{color:rgb(var(--slate-3)/.2)}.text-slate-3\/25{color:rgb(var(--slate-3)/.25)}.text-slate-3\/30{color:rgb(var(--slate-3)/.3)}.text-slate-3\/40{color:rgb(var(--slate-3)/.4)}.text-slate-3\/5{color:rgb(var(--slate-3)/.05)}.text-slate-3\/50{color:rgb(var(--slate-3)/.5)}.text-slate-3\/60{color:rgb(var(--slate-3)/.6)}.text-slate-3\/70{color:rgb(var(--slate-3)/.7)}.text-slate-3\/75{color:rgb(var(--slate-3)/.75)}.text-slate-3\/80{color:rgb(var(--slate-3)/.8)}.text-slate-3\/90{color:rgb(var(--slate-3)/.9)}.text-slate-3\/95{color:rgb(var(--slate-3)/.95)}.text-slate-4\/0{color:rgb(var(--slate-4)/0)}.text-slate-4\/10{color:rgb(var(--slate-4)/.1)}.text-slate-4\/100{color:rgb(var(--slate-4)/1)}.text-slate-4\/20{color:rgb(var(--slate-4)/.2)}.text-slate-4\/25{color:rgb(var(--slate-4)/.25)}.text-slate-4\/30{color:rgb(var(--slate-4)/.3)}.text-slate-4\/40{color:rgb(var(--slate-4)/.4)}.text-slate-4\/5{color:rgb(var(--slate-4)/.05)}.text-slate-4\/50{color:rgb(var(--slate-4)/.5)}.text-slate-4\/60{color:rgb(var(--slate-4)/.6)}.text-slate-4\/70{color:rgb(var(--slate-4)/.7)}.text-slate-4\/75{color:rgb(var(--slate-4)/.75)}.text-slate-4\/80{color:rgb(var(--slate-4)/.8)}.text-slate-4\/90{color:rgb(var(--slate-4)/.9)}.text-slate-4\/95{color:rgb(var(--slate-4)/.95)}.text-slate-5\/0{color:rgb(var(--slate-5)/0)}.text-slate-5\/10{color:rgb(var(--slate-5)/.1)}.text-slate-5\/100{color:rgb(var(--slate-5)/1)}.text-slate-5\/20{color:rgb(var(--slate-5)/.2)}.text-slate-5\/25{color:rgb(var(--slate-5)/.25)}.text-slate-5\/30{color:rgb(var(--slate-5)/.3)}.text-slate-5\/40{color:rgb(var(--slate-5)/.4)}.text-slate-5\/5{color:rgb(var(--slate-5)/.05)}.text-slate-5\/50{color:rgb(var(--slate-5)/.5)}.text-slate-5\/60{color:rgb(var(--slate-5)/.6)}.text-slate-5\/70{color:rgb(var(--slate-5)/.7)}.text-slate-5\/75{color:rgb(var(--slate-5)/.75)}.text-slate-5\/80{color:rgb(var(--slate-5)/.8)}.text-slate-5\/90{color:rgb(var(--slate-5)/.9)}.text-slate-5\/95{color:rgb(var(--slate-5)/.95)}.text-slate-6\/0{color:rgb(var(--slate-6)/0)}.text-slate-6\/10{color:rgb(var(--slate-6)/.1)}.text-slate-6\/100{color:rgb(var(--slate-6)/1)}.text-slate-6\/20{color:rgb(var(--slate-6)/.2)}.text-slate-6\/25{color:rgb(var(--slate-6)/.25)}.text-slate-6\/30{color:rgb(var(--slate-6)/.3)}.text-slate-6\/40{color:rgb(var(--slate-6)/.4)}.text-slate-6\/5{color:rgb(var(--slate-6)/.05)}.text-slate-6\/50{color:rgb(var(--slate-6)/.5)}.text-slate-6\/60{color:rgb(var(--slate-6)/.6)}.text-slate-6\/70{color:rgb(var(--slate-6)/.7)}.text-slate-6\/75{color:rgb(var(--slate-6)/.75)}.text-slate-6\/80{color:rgb(var(--slate-6)/.8)}.text-slate-6\/90{color:rgb(var(--slate-6)/.9)}.text-slate-6\/95{color:rgb(var(--slate-6)/.95)}.text-slate-7\/0{color:rgb(var(--slate-7)/0)}.text-slate-7\/10{color:rgb(var(--slate-7)/.1)}.text-slate-7\/100{color:rgb(var(--slate-7)/1)}.text-slate-7\/20{color:rgb(var(--slate-7)/.2)}.text-slate-7\/25{color:rgb(var(--slate-7)/.25)}.text-slate-7\/30{color:rgb(var(--slate-7)/.3)}.text-slate-7\/40{color:rgb(var(--slate-7)/.4)}.text-slate-7\/5{color:rgb(var(--slate-7)/.05)}.text-slate-7\/50{color:rgb(var(--slate-7)/.5)}.text-slate-7\/60{color:rgb(var(--slate-7)/.6)}.text-slate-7\/70{color:rgb(var(--slate-7)/.7)}.text-slate-7\/75{color:rgb(var(--slate-7)/.75)}.text-slate-7\/80{color:rgb(var(--slate-7)/.8)}.text-slate-7\/90{color:rgb(var(--slate-7)/.9)}.text-slate-7\/95{color:rgb(var(--slate-7)/.95)}.text-slate-8\/0{color:rgb(var(--slate-8)/0)}.text-slate-8\/10{color:rgb(var(--slate-8)/.1)}.text-slate-8\/100{color:rgb(var(--slate-8)/1)}.text-slate-8\/20{color:rgb(var(--slate-8)/.2)}.text-slate-8\/25{color:rgb(var(--slate-8)/.25)}.text-slate-8\/30{color:rgb(var(--slate-8)/.3)}.text-slate-8\/40{color:rgb(var(--slate-8)/.4)}.text-slate-8\/5{color:rgb(var(--slate-8)/.05)}.text-slate-8\/50{color:rgb(var(--slate-8)/.5)}.text-slate-8\/60{color:rgb(var(--slate-8)/.6)}.text-slate-8\/70{color:rgb(var(--slate-8)/.7)}.text-slate-8\/75{color:rgb(var(--slate-8)/.75)}.text-slate-8\/80{color:rgb(var(--slate-8)/.8)}.text-slate-8\/90{color:rgb(var(--slate-8)/.9)}.text-slate-8\/95{color:rgb(var(--slate-8)/.95)}.text-slate-9\/0{color:rgb(var(--slate-9)/0)}.text-slate-9\/10{color:rgb(var(--slate-9)/.1)}.text-slate-9\/100{color:rgb(var(--slate-9)/1)}.text-slate-9\/20{color:rgb(var(--slate-9)/.2)}.text-slate-9\/25{color:rgb(var(--slate-9)/.25)}.text-slate-9\/30{color:rgb(var(--slate-9)/.3)}.text-slate-9\/40{color:rgb(var(--slate-9)/.4)}.text-slate-9\/5{color:rgb(var(--slate-9)/.05)}.text-slate-9\/50{color:rgb(var(--slate-9)/.5)}.text-slate-9\/60{color:rgb(var(--slate-9)/.6)}.text-slate-9\/70{color:rgb(var(--slate-9)/.7)}.text-slate-9\/75{color:rgb(var(--slate-9)/.75)}.text-slate-9\/80{color:rgb(var(--slate-9)/.8)}.text-slate-9\/90{color:rgb(var(--slate-9)/.9)}.text-slate-9\/95{color:rgb(var(--slate-9)/.95)}.text-success{--tw-text-opacity:1;color:rgb(var(--success)/var(--tw-text-opacity))}.text-success\/0{color:rgb(var(--success)/0)}.text-success\/10{color:rgb(var(--success)/.1)}.text-success\/100{color:rgb(var(--success)/1)}.text-success\/20{color:rgb(var(--success)/.2)}.text-success\/25{color:rgb(var(--success)/.25)}.text-success\/30{color:rgb(var(--success)/.3)}.text-success\/40{color:rgb(var(--success)/.4)}.text-success\/5{color:rgb(var(--success)/.05)}.text-success\/50{color:rgb(var(--success)/.5)}.text-success\/60{color:rgb(var(--success)/.6)}.text-success\/70{color:rgb(var(--success)/.7)}.text-success\/75{color:rgb(var(--success)/.75)}.text-success\/80{color:rgb(var(--success)/.8)}.text-success\/90{color:rgb(var(--success)/.9)}.text-success\/95{color:rgb(var(--success)/.95)}.text-warning{--tw-text-opacity:1;color:rgb(var(--warning)/var(--tw-text-opacity))}.text-warning\/0{color:rgb(var(--warning)/0)}.text-warning\/10{color:rgb(var(--warning)/.1)}.text-warning\/100{color:rgb(var(--warning)/1)}.text-warning\/20{color:rgb(var(--warning)/.2)}.text-warning\/25{color:rgb(var(--warning)/.25)}.text-warning\/30{color:rgb(var(--warning)/.3)}.text-warning\/40{color:rgb(var(--warning)/.4)}.text-warning\/5{color:rgb(var(--warning)/.05)}.text-warning\/50{color:rgb(var(--warning)/.5)}.text-warning\/60{color:rgb(var(--warning)/.6)}.text-warning\/70{color:rgb(var(--warning)/.7)}.text-warning\/75{color:rgb(var(--warning)/.75)}.text-warning\/80{color:rgb(var(--warning)/.8)}.text-warning\/90{color:rgb(var(--warning)/.9)}.text-warning\/95{color:rgb(var(--warning)/.95)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-white\/0{color:hsla(0,0%,100%,0)}.text-white\/10{color:hsla(0,0%,100%,.1)}.text-white\/100{color:#fff}.text-white\/20{color:hsla(0,0%,100%,.2)}.text-white\/25{color:hsla(0,0%,100%,.25)}.text-white\/30{color:hsla(0,0%,100%,.3)}.text-white\/40{color:hsla(0,0%,100%,.4)}.text-white\/5{color:hsla(0,0%,100%,.05)}.text-white\/50{color:hsla(0,0%,100%,.5)}.text-white\/60{color:hsla(0,0%,100%,.6)}.text-white\/70{color:hsla(0,0%,100%,.7)}.text-white\/75{color:hsla(0,0%,100%,.75)}.text-white\/80{color:hsla(0,0%,100%,.8)}.text-white\/90{color:hsla(0,0%,100%,.9)}.text-white\/95{color:hsla(0,0%,100%,.95)}.text-whiteInverted{--tw-text-opacity:1;color:rgb(var(--whiteInverted)/var(--tw-text-opacity))}.text-whiteInverted\/0{color:rgb(var(--whiteInverted)/0)}.text-whiteInverted\/10{color:rgb(var(--whiteInverted)/.1)}.text-whiteInverted\/100{color:rgb(var(--whiteInverted)/1)}.text-whiteInverted\/20{color:rgb(var(--whiteInverted)/.2)}.text-whiteInverted\/25{color:rgb(var(--whiteInverted)/.25)}.text-whiteInverted\/30{color:rgb(var(--whiteInverted)/.3)}.text-whiteInverted\/40{color:rgb(var(--whiteInverted)/.4)}.text-whiteInverted\/5{color:rgb(var(--whiteInverted)/.05)}.text-whiteInverted\/50{color:rgb(var(--whiteInverted)/.5)}.text-whiteInverted\/60{color:rgb(var(--whiteInverted)/.6)}.text-whiteInverted\/70{color:rgb(var(--whiteInverted)/.7)}.text-whiteInverted\/75{color:rgb(var(--whiteInverted)/.75)}.text-whiteInverted\/80{color:rgb(var(--whiteInverted)/.8)}.text-whiteInverted\/90{color:rgb(var(--whiteInverted)/.9)}.text-whiteInverted\/95{color:rgb(var(--whiteInverted)/.95)}.outline-backgroundPrimary{outline-color:rgb(var(--backgroundPrimary))}.outline-backgroundPrimary\/0{outline-color:rgb(var(--backgroundPrimary)/0)}.outline-backgroundPrimary\/10{outline-color:rgb(var(--backgroundPrimary)/.1)}.outline-backgroundPrimary\/100{outline-color:rgb(var(--backgroundPrimary)/1)}.outline-backgroundPrimary\/20{outline-color:rgb(var(--backgroundPrimary)/.2)}.outline-backgroundPrimary\/25{outline-color:rgb(var(--backgroundPrimary)/.25)}.outline-backgroundPrimary\/30{outline-color:rgb(var(--backgroundPrimary)/.3)}.outline-backgroundPrimary\/40{outline-color:rgb(var(--backgroundPrimary)/.4)}.outline-backgroundPrimary\/5{outline-color:rgb(var(--backgroundPrimary)/.05)}.outline-backgroundPrimary\/50{outline-color:rgb(var(--backgroundPrimary)/.5)}.outline-backgroundPrimary\/60{outline-color:rgb(var(--backgroundPrimary)/.6)}.outline-backgroundPrimary\/70{outline-color:rgb(var(--backgroundPrimary)/.7)}.outline-backgroundPrimary\/75{outline-color:rgb(var(--backgroundPrimary)/.75)}.outline-backgroundPrimary\/80{outline-color:rgb(var(--backgroundPrimary)/.8)}.outline-backgroundPrimary\/90{outline-color:rgb(var(--backgroundPrimary)/.9)}.outline-backgroundPrimary\/95{outline-color:rgb(var(--backgroundPrimary)/.95)}.outline-backgroundSecondary{outline-color:rgb(var(--backgroundSecondary))}.outline-backgroundSecondary\/0{outline-color:rgb(var(--backgroundSecondary)/0)}.outline-backgroundSecondary\/10{outline-color:rgb(var(--backgroundSecondary)/.1)}.outline-backgroundSecondary\/100{outline-color:rgb(var(--backgroundSecondary)/1)}.outline-backgroundSecondary\/20{outline-color:rgb(var(--backgroundSecondary)/.2)}.outline-backgroundSecondary\/25{outline-color:rgb(var(--backgroundSecondary)/.25)}.outline-backgroundSecondary\/30{outline-color:rgb(var(--backgroundSecondary)/.3)}.outline-backgroundSecondary\/40{outline-color:rgb(var(--backgroundSecondary)/.4)}.outline-backgroundSecondary\/5{outline-color:rgb(var(--backgroundSecondary)/.05)}.outline-backgroundSecondary\/50{outline-color:rgb(var(--backgroundSecondary)/.5)}.outline-backgroundSecondary\/60{outline-color:rgb(var(--backgroundSecondary)/.6)}.outline-backgroundSecondary\/70{outline-color:rgb(var(--backgroundSecondary)/.7)}.outline-backgroundSecondary\/75{outline-color:rgb(var(--backgroundSecondary)/.75)}.outline-backgroundSecondary\/80{outline-color:rgb(var(--backgroundSecondary)/.8)}.outline-backgroundSecondary\/90{outline-color:rgb(var(--backgroundSecondary)/.9)}.outline-backgroundSecondary\/95{outline-color:rgb(var(--backgroundSecondary)/.95)}.outline-black{outline-color:#000}.outline-black\/0{outline-color:transparent}.outline-black\/10{outline-color:rgba(0,0,0,.1)}.outline-black\/100{outline-color:#000}.outline-black\/20{outline-color:rgba(0,0,0,.2)}.outline-black\/25{outline-color:rgba(0,0,0,.25)}.outline-black\/30{outline-color:rgba(0,0,0,.3)}.outline-black\/40{outline-color:rgba(0,0,0,.4)}.outline-black\/5{outline-color:rgba(0,0,0,.05)}.outline-black\/50{outline-color:rgba(0,0,0,.5)}.outline-black\/60{outline-color:rgba(0,0,0,.6)}.outline-black\/70{outline-color:rgba(0,0,0,.7)}.outline-black\/75{outline-color:rgba(0,0,0,.75)}.outline-black\/80{outline-color:rgba(0,0,0,.8)}.outline-black\/90{outline-color:rgba(0,0,0,.9)}.outline-black\/95{outline-color:rgba(0,0,0,.95)}.outline-blackInverted{outline-color:rgb(var(--blackInverted))}.outline-blackInverted\/0{outline-color:rgb(var(--blackInverted)/0)}.outline-blackInverted\/10{outline-color:rgb(var(--blackInverted)/.1)}.outline-blackInverted\/100{outline-color:rgb(var(--blackInverted)/1)}.outline-blackInverted\/20{outline-color:rgb(var(--blackInverted)/.2)}.outline-blackInverted\/25{outline-color:rgb(var(--blackInverted)/.25)}.outline-blackInverted\/30{outline-color:rgb(var(--blackInverted)/.3)}.outline-blackInverted\/40{outline-color:rgb(var(--blackInverted)/.4)}.outline-blackInverted\/5{outline-color:rgb(var(--blackInverted)/.05)}.outline-blackInverted\/50{outline-color:rgb(var(--blackInverted)/.5)}.outline-blackInverted\/60{outline-color:rgb(var(--blackInverted)/.6)}.outline-blackInverted\/70{outline-color:rgb(var(--blackInverted)/.7)}.outline-blackInverted\/75{outline-color:rgb(var(--blackInverted)/.75)}.outline-blackInverted\/80{outline-color:rgb(var(--blackInverted)/.8)}.outline-blackInverted\/90{outline-color:rgb(var(--blackInverted)/.9)}.outline-blackInverted\/95{outline-color:rgb(var(--blackInverted)/.95)}.outline-blue-1\/0{outline-color:rgb(var(--blue-1)/0)}.outline-blue-1\/10{outline-color:rgb(var(--blue-1)/.1)}.outline-blue-1\/100{outline-color:rgb(var(--blue-1)/1)}.outline-blue-1\/20{outline-color:rgb(var(--blue-1)/.2)}.outline-blue-1\/25{outline-color:rgb(var(--blue-1)/.25)}.outline-blue-1\/30{outline-color:rgb(var(--blue-1)/.3)}.outline-blue-1\/40{outline-color:rgb(var(--blue-1)/.4)}.outline-blue-1\/5{outline-color:rgb(var(--blue-1)/.05)}.outline-blue-1\/50{outline-color:rgb(var(--blue-1)/.5)}.outline-blue-1\/60{outline-color:rgb(var(--blue-1)/.6)}.outline-blue-1\/70{outline-color:rgb(var(--blue-1)/.7)}.outline-blue-1\/75{outline-color:rgb(var(--blue-1)/.75)}.outline-blue-1\/80{outline-color:rgb(var(--blue-1)/.8)}.outline-blue-1\/90{outline-color:rgb(var(--blue-1)/.9)}.outline-blue-1\/95{outline-color:rgb(var(--blue-1)/.95)}.outline-blue-10\/0{outline-color:rgb(var(--blue-10)/0)}.outline-blue-10\/10{outline-color:rgb(var(--blue-10)/.1)}.outline-blue-10\/100{outline-color:rgb(var(--blue-10)/1)}.outline-blue-10\/20{outline-color:rgb(var(--blue-10)/.2)}.outline-blue-10\/25{outline-color:rgb(var(--blue-10)/.25)}.outline-blue-10\/30{outline-color:rgb(var(--blue-10)/.3)}.outline-blue-10\/40{outline-color:rgb(var(--blue-10)/.4)}.outline-blue-10\/5{outline-color:rgb(var(--blue-10)/.05)}.outline-blue-10\/50{outline-color:rgb(var(--blue-10)/.5)}.outline-blue-10\/60{outline-color:rgb(var(--blue-10)/.6)}.outline-blue-10\/70{outline-color:rgb(var(--blue-10)/.7)}.outline-blue-10\/75{outline-color:rgb(var(--blue-10)/.75)}.outline-blue-10\/80{outline-color:rgb(var(--blue-10)/.8)}.outline-blue-10\/90{outline-color:rgb(var(--blue-10)/.9)}.outline-blue-10\/95{outline-color:rgb(var(--blue-10)/.95)}.outline-blue-2\/0{outline-color:rgb(var(--blue-2)/0)}.outline-blue-2\/10{outline-color:rgb(var(--blue-2)/.1)}.outline-blue-2\/100{outline-color:rgb(var(--blue-2)/1)}.outline-blue-2\/20{outline-color:rgb(var(--blue-2)/.2)}.outline-blue-2\/25{outline-color:rgb(var(--blue-2)/.25)}.outline-blue-2\/30{outline-color:rgb(var(--blue-2)/.3)}.outline-blue-2\/40{outline-color:rgb(var(--blue-2)/.4)}.outline-blue-2\/5{outline-color:rgb(var(--blue-2)/.05)}.outline-blue-2\/50{outline-color:rgb(var(--blue-2)/.5)}.outline-blue-2\/60{outline-color:rgb(var(--blue-2)/.6)}.outline-blue-2\/70{outline-color:rgb(var(--blue-2)/.7)}.outline-blue-2\/75{outline-color:rgb(var(--blue-2)/.75)}.outline-blue-2\/80{outline-color:rgb(var(--blue-2)/.8)}.outline-blue-2\/90{outline-color:rgb(var(--blue-2)/.9)}.outline-blue-2\/95{outline-color:rgb(var(--blue-2)/.95)}.outline-blue-3\/0{outline-color:rgb(var(--blue-3)/0)}.outline-blue-3\/10{outline-color:rgb(var(--blue-3)/.1)}.outline-blue-3\/100{outline-color:rgb(var(--blue-3)/1)}.outline-blue-3\/20{outline-color:rgb(var(--blue-3)/.2)}.outline-blue-3\/25{outline-color:rgb(var(--blue-3)/.25)}.outline-blue-3\/30{outline-color:rgb(var(--blue-3)/.3)}.outline-blue-3\/40{outline-color:rgb(var(--blue-3)/.4)}.outline-blue-3\/5{outline-color:rgb(var(--blue-3)/.05)}.outline-blue-3\/50{outline-color:rgb(var(--blue-3)/.5)}.outline-blue-3\/60{outline-color:rgb(var(--blue-3)/.6)}.outline-blue-3\/70{outline-color:rgb(var(--blue-3)/.7)}.outline-blue-3\/75{outline-color:rgb(var(--blue-3)/.75)}.outline-blue-3\/80{outline-color:rgb(var(--blue-3)/.8)}.outline-blue-3\/90{outline-color:rgb(var(--blue-3)/.9)}.outline-blue-3\/95{outline-color:rgb(var(--blue-3)/.95)}.outline-blue-4\/0{outline-color:rgb(var(--blue-4)/0)}.outline-blue-4\/10{outline-color:rgb(var(--blue-4)/.1)}.outline-blue-4\/100{outline-color:rgb(var(--blue-4)/1)}.outline-blue-4\/20{outline-color:rgb(var(--blue-4)/.2)}.outline-blue-4\/25{outline-color:rgb(var(--blue-4)/.25)}.outline-blue-4\/30{outline-color:rgb(var(--blue-4)/.3)}.outline-blue-4\/40{outline-color:rgb(var(--blue-4)/.4)}.outline-blue-4\/5{outline-color:rgb(var(--blue-4)/.05)}.outline-blue-4\/50{outline-color:rgb(var(--blue-4)/.5)}.outline-blue-4\/60{outline-color:rgb(var(--blue-4)/.6)}.outline-blue-4\/70{outline-color:rgb(var(--blue-4)/.7)}.outline-blue-4\/75{outline-color:rgb(var(--blue-4)/.75)}.outline-blue-4\/80{outline-color:rgb(var(--blue-4)/.8)}.outline-blue-4\/90{outline-color:rgb(var(--blue-4)/.9)}.outline-blue-4\/95{outline-color:rgb(var(--blue-4)/.95)}.outline-blue-5\/0{outline-color:rgb(var(--blue-5)/0)}.outline-blue-5\/10{outline-color:rgb(var(--blue-5)/.1)}.outline-blue-5\/100{outline-color:rgb(var(--blue-5)/1)}.outline-blue-5\/20{outline-color:rgb(var(--blue-5)/.2)}.outline-blue-5\/25{outline-color:rgb(var(--blue-5)/.25)}.outline-blue-5\/30{outline-color:rgb(var(--blue-5)/.3)}.outline-blue-5\/40{outline-color:rgb(var(--blue-5)/.4)}.outline-blue-5\/5{outline-color:rgb(var(--blue-5)/.05)}.outline-blue-5\/50{outline-color:rgb(var(--blue-5)/.5)}.outline-blue-5\/60{outline-color:rgb(var(--blue-5)/.6)}.outline-blue-5\/70{outline-color:rgb(var(--blue-5)/.7)}.outline-blue-5\/75{outline-color:rgb(var(--blue-5)/.75)}.outline-blue-5\/80{outline-color:rgb(var(--blue-5)/.8)}.outline-blue-5\/90{outline-color:rgb(var(--blue-5)/.9)}.outline-blue-5\/95{outline-color:rgb(var(--blue-5)/.95)}.outline-blue-6\/0{outline-color:rgb(var(--blue-6)/0)}.outline-blue-6\/10{outline-color:rgb(var(--blue-6)/.1)}.outline-blue-6\/100{outline-color:rgb(var(--blue-6)/1)}.outline-blue-6\/20{outline-color:rgb(var(--blue-6)/.2)}.outline-blue-6\/25{outline-color:rgb(var(--blue-6)/.25)}.outline-blue-6\/30{outline-color:rgb(var(--blue-6)/.3)}.outline-blue-6\/40{outline-color:rgb(var(--blue-6)/.4)}.outline-blue-6\/5{outline-color:rgb(var(--blue-6)/.05)}.outline-blue-6\/50{outline-color:rgb(var(--blue-6)/.5)}.outline-blue-6\/60{outline-color:rgb(var(--blue-6)/.6)}.outline-blue-6\/70{outline-color:rgb(var(--blue-6)/.7)}.outline-blue-6\/75{outline-color:rgb(var(--blue-6)/.75)}.outline-blue-6\/80{outline-color:rgb(var(--blue-6)/.8)}.outline-blue-6\/90{outline-color:rgb(var(--blue-6)/.9)}.outline-blue-6\/95{outline-color:rgb(var(--blue-6)/.95)}.outline-blue-7\/0{outline-color:rgb(var(--blue-7)/0)}.outline-blue-7\/10{outline-color:rgb(var(--blue-7)/.1)}.outline-blue-7\/100{outline-color:rgb(var(--blue-7)/1)}.outline-blue-7\/20{outline-color:rgb(var(--blue-7)/.2)}.outline-blue-7\/25{outline-color:rgb(var(--blue-7)/.25)}.outline-blue-7\/30{outline-color:rgb(var(--blue-7)/.3)}.outline-blue-7\/40{outline-color:rgb(var(--blue-7)/.4)}.outline-blue-7\/5{outline-color:rgb(var(--blue-7)/.05)}.outline-blue-7\/50{outline-color:rgb(var(--blue-7)/.5)}.outline-blue-7\/60{outline-color:rgb(var(--blue-7)/.6)}.outline-blue-7\/70{outline-color:rgb(var(--blue-7)/.7)}.outline-blue-7\/75{outline-color:rgb(var(--blue-7)/.75)}.outline-blue-7\/80{outline-color:rgb(var(--blue-7)/.8)}.outline-blue-7\/90{outline-color:rgb(var(--blue-7)/.9)}.outline-blue-7\/95{outline-color:rgb(var(--blue-7)/.95)}.outline-blue-8\/0{outline-color:rgb(var(--blue-8)/0)}.outline-blue-8\/10{outline-color:rgb(var(--blue-8)/.1)}.outline-blue-8\/100{outline-color:rgb(var(--blue-8)/1)}.outline-blue-8\/20{outline-color:rgb(var(--blue-8)/.2)}.outline-blue-8\/25{outline-color:rgb(var(--blue-8)/.25)}.outline-blue-8\/30{outline-color:rgb(var(--blue-8)/.3)}.outline-blue-8\/40{outline-color:rgb(var(--blue-8)/.4)}.outline-blue-8\/5{outline-color:rgb(var(--blue-8)/.05)}.outline-blue-8\/50{outline-color:rgb(var(--blue-8)/.5)}.outline-blue-8\/60{outline-color:rgb(var(--blue-8)/.6)}.outline-blue-8\/70{outline-color:rgb(var(--blue-8)/.7)}.outline-blue-8\/75{outline-color:rgb(var(--blue-8)/.75)}.outline-blue-8\/80{outline-color:rgb(var(--blue-8)/.8)}.outline-blue-8\/90{outline-color:rgb(var(--blue-8)/.9)}.outline-blue-8\/95{outline-color:rgb(var(--blue-8)/.95)}.outline-blue-9\/0{outline-color:rgb(var(--blue-9)/0)}.outline-blue-9\/10{outline-color:rgb(var(--blue-9)/.1)}.outline-blue-9\/100{outline-color:rgb(var(--blue-9)/1)}.outline-blue-9\/20{outline-color:rgb(var(--blue-9)/.2)}.outline-blue-9\/25{outline-color:rgb(var(--blue-9)/.25)}.outline-blue-9\/30{outline-color:rgb(var(--blue-9)/.3)}.outline-blue-9\/40{outline-color:rgb(var(--blue-9)/.4)}.outline-blue-9\/5{outline-color:rgb(var(--blue-9)/.05)}.outline-blue-9\/50{outline-color:rgb(var(--blue-9)/.5)}.outline-blue-9\/60{outline-color:rgb(var(--blue-9)/.6)}.outline-blue-9\/70{outline-color:rgb(var(--blue-9)/.7)}.outline-blue-9\/75{outline-color:rgb(var(--blue-9)/.75)}.outline-blue-9\/80{outline-color:rgb(var(--blue-9)/.8)}.outline-blue-9\/90{outline-color:rgb(var(--blue-9)/.9)}.outline-blue-9\/95{outline-color:rgb(var(--blue-9)/.95)}.outline-border{outline-color:rgb(var(--border))}.outline-border\/0{outline-color:rgb(var(--border)/0)}.outline-border\/10{outline-color:rgb(var(--border)/.1)}.outline-border\/100{outline-color:rgb(var(--border)/1)}.outline-border\/20{outline-color:rgb(var(--border)/.2)}.outline-border\/25{outline-color:rgb(var(--border)/.25)}.outline-border\/30{outline-color:rgb(var(--border)/.3)}.outline-border\/40{outline-color:rgb(var(--border)/.4)}.outline-border\/5{outline-color:rgb(var(--border)/.05)}.outline-border\/50{outline-color:rgb(var(--border)/.5)}.outline-border\/60{outline-color:rgb(var(--border)/.6)}.outline-border\/70{outline-color:rgb(var(--border)/.7)}.outline-border\/75{outline-color:rgb(var(--border)/.75)}.outline-border\/80{outline-color:rgb(var(--border)/.8)}.outline-border\/90{outline-color:rgb(var(--border)/.9)}.outline-border\/95{outline-color:rgb(var(--border)/.95)}.outline-content1{outline-color:rgb(var(--content1))}.outline-content1\/0{outline-color:rgb(var(--content1)/0)}.outline-content1\/10{outline-color:rgb(var(--content1)/.1)}.outline-content1\/100{outline-color:rgb(var(--content1)/1)}.outline-content1\/20{outline-color:rgb(var(--content1)/.2)}.outline-content1\/25{outline-color:rgb(var(--content1)/.25)}.outline-content1\/30{outline-color:rgb(var(--content1)/.3)}.outline-content1\/40{outline-color:rgb(var(--content1)/.4)}.outline-content1\/5{outline-color:rgb(var(--content1)/.05)}.outline-content1\/50{outline-color:rgb(var(--content1)/.5)}.outline-content1\/60{outline-color:rgb(var(--content1)/.6)}.outline-content1\/70{outline-color:rgb(var(--content1)/.7)}.outline-content1\/75{outline-color:rgb(var(--content1)/.75)}.outline-content1\/80{outline-color:rgb(var(--content1)/.8)}.outline-content1\/90{outline-color:rgb(var(--content1)/.9)}.outline-content1\/95{outline-color:rgb(var(--content1)/.95)}.outline-content2{outline-color:rgb(var(--content2))}.outline-content2\/0{outline-color:rgb(var(--content2)/0)}.outline-content2\/10{outline-color:rgb(var(--content2)/.1)}.outline-content2\/100{outline-color:rgb(var(--content2)/1)}.outline-content2\/20{outline-color:rgb(var(--content2)/.2)}.outline-content2\/25{outline-color:rgb(var(--content2)/.25)}.outline-content2\/30{outline-color:rgb(var(--content2)/.3)}.outline-content2\/40{outline-color:rgb(var(--content2)/.4)}.outline-content2\/5{outline-color:rgb(var(--content2)/.05)}.outline-content2\/50{outline-color:rgb(var(--content2)/.5)}.outline-content2\/60{outline-color:rgb(var(--content2)/.6)}.outline-content2\/70{outline-color:rgb(var(--content2)/.7)}.outline-content2\/75{outline-color:rgb(var(--content2)/.75)}.outline-content2\/80{outline-color:rgb(var(--content2)/.8)}.outline-content2\/90{outline-color:rgb(var(--content2)/.9)}.outline-content2\/95{outline-color:rgb(var(--content2)/.95)}.outline-content3{outline-color:rgb(var(--content3))}.outline-content3\/0{outline-color:rgb(var(--content3)/0)}.outline-content3\/10{outline-color:rgb(var(--content3)/.1)}.outline-content3\/100{outline-color:rgb(var(--content3)/1)}.outline-content3\/20{outline-color:rgb(var(--content3)/.2)}.outline-content3\/25{outline-color:rgb(var(--content3)/.25)}.outline-content3\/30{outline-color:rgb(var(--content3)/.3)}.outline-content3\/40{outline-color:rgb(var(--content3)/.4)}.outline-content3\/5{outline-color:rgb(var(--content3)/.05)}.outline-content3\/50{outline-color:rgb(var(--content3)/.5)}.outline-content3\/60{outline-color:rgb(var(--content3)/.6)}.outline-content3\/70{outline-color:rgb(var(--content3)/.7)}.outline-content3\/75{outline-color:rgb(var(--content3)/.75)}.outline-content3\/80{outline-color:rgb(var(--content3)/.8)}.outline-content3\/90{outline-color:rgb(var(--content3)/.9)}.outline-content3\/95{outline-color:rgb(var(--content3)/.95)}.outline-cyan-1\/0{outline-color:rgb(var(--cyan-1)/0)}.outline-cyan-1\/10{outline-color:rgb(var(--cyan-1)/.1)}.outline-cyan-1\/100{outline-color:rgb(var(--cyan-1)/1)}.outline-cyan-1\/20{outline-color:rgb(var(--cyan-1)/.2)}.outline-cyan-1\/25{outline-color:rgb(var(--cyan-1)/.25)}.outline-cyan-1\/30{outline-color:rgb(var(--cyan-1)/.3)}.outline-cyan-1\/40{outline-color:rgb(var(--cyan-1)/.4)}.outline-cyan-1\/5{outline-color:rgb(var(--cyan-1)/.05)}.outline-cyan-1\/50{outline-color:rgb(var(--cyan-1)/.5)}.outline-cyan-1\/60{outline-color:rgb(var(--cyan-1)/.6)}.outline-cyan-1\/70{outline-color:rgb(var(--cyan-1)/.7)}.outline-cyan-1\/75{outline-color:rgb(var(--cyan-1)/.75)}.outline-cyan-1\/80{outline-color:rgb(var(--cyan-1)/.8)}.outline-cyan-1\/90{outline-color:rgb(var(--cyan-1)/.9)}.outline-cyan-1\/95{outline-color:rgb(var(--cyan-1)/.95)}.outline-cyan-10\/0{outline-color:rgb(var(--cyan-10)/0)}.outline-cyan-10\/10{outline-color:rgb(var(--cyan-10)/.1)}.outline-cyan-10\/100{outline-color:rgb(var(--cyan-10)/1)}.outline-cyan-10\/20{outline-color:rgb(var(--cyan-10)/.2)}.outline-cyan-10\/25{outline-color:rgb(var(--cyan-10)/.25)}.outline-cyan-10\/30{outline-color:rgb(var(--cyan-10)/.3)}.outline-cyan-10\/40{outline-color:rgb(var(--cyan-10)/.4)}.outline-cyan-10\/5{outline-color:rgb(var(--cyan-10)/.05)}.outline-cyan-10\/50{outline-color:rgb(var(--cyan-10)/.5)}.outline-cyan-10\/60{outline-color:rgb(var(--cyan-10)/.6)}.outline-cyan-10\/70{outline-color:rgb(var(--cyan-10)/.7)}.outline-cyan-10\/75{outline-color:rgb(var(--cyan-10)/.75)}.outline-cyan-10\/80{outline-color:rgb(var(--cyan-10)/.8)}.outline-cyan-10\/90{outline-color:rgb(var(--cyan-10)/.9)}.outline-cyan-10\/95{outline-color:rgb(var(--cyan-10)/.95)}.outline-cyan-2\/0{outline-color:rgb(var(--cyan-2)/0)}.outline-cyan-2\/10{outline-color:rgb(var(--cyan-2)/.1)}.outline-cyan-2\/100{outline-color:rgb(var(--cyan-2)/1)}.outline-cyan-2\/20{outline-color:rgb(var(--cyan-2)/.2)}.outline-cyan-2\/25{outline-color:rgb(var(--cyan-2)/.25)}.outline-cyan-2\/30{outline-color:rgb(var(--cyan-2)/.3)}.outline-cyan-2\/40{outline-color:rgb(var(--cyan-2)/.4)}.outline-cyan-2\/5{outline-color:rgb(var(--cyan-2)/.05)}.outline-cyan-2\/50{outline-color:rgb(var(--cyan-2)/.5)}.outline-cyan-2\/60{outline-color:rgb(var(--cyan-2)/.6)}.outline-cyan-2\/70{outline-color:rgb(var(--cyan-2)/.7)}.outline-cyan-2\/75{outline-color:rgb(var(--cyan-2)/.75)}.outline-cyan-2\/80{outline-color:rgb(var(--cyan-2)/.8)}.outline-cyan-2\/90{outline-color:rgb(var(--cyan-2)/.9)}.outline-cyan-2\/95{outline-color:rgb(var(--cyan-2)/.95)}.outline-cyan-3\/0{outline-color:rgb(var(--cyan-3)/0)}.outline-cyan-3\/10{outline-color:rgb(var(--cyan-3)/.1)}.outline-cyan-3\/100{outline-color:rgb(var(--cyan-3)/1)}.outline-cyan-3\/20{outline-color:rgb(var(--cyan-3)/.2)}.outline-cyan-3\/25{outline-color:rgb(var(--cyan-3)/.25)}.outline-cyan-3\/30{outline-color:rgb(var(--cyan-3)/.3)}.outline-cyan-3\/40{outline-color:rgb(var(--cyan-3)/.4)}.outline-cyan-3\/5{outline-color:rgb(var(--cyan-3)/.05)}.outline-cyan-3\/50{outline-color:rgb(var(--cyan-3)/.5)}.outline-cyan-3\/60{outline-color:rgb(var(--cyan-3)/.6)}.outline-cyan-3\/70{outline-color:rgb(var(--cyan-3)/.7)}.outline-cyan-3\/75{outline-color:rgb(var(--cyan-3)/.75)}.outline-cyan-3\/80{outline-color:rgb(var(--cyan-3)/.8)}.outline-cyan-3\/90{outline-color:rgb(var(--cyan-3)/.9)}.outline-cyan-3\/95{outline-color:rgb(var(--cyan-3)/.95)}.outline-cyan-4\/0{outline-color:rgb(var(--cyan-4)/0)}.outline-cyan-4\/10{outline-color:rgb(var(--cyan-4)/.1)}.outline-cyan-4\/100{outline-color:rgb(var(--cyan-4)/1)}.outline-cyan-4\/20{outline-color:rgb(var(--cyan-4)/.2)}.outline-cyan-4\/25{outline-color:rgb(var(--cyan-4)/.25)}.outline-cyan-4\/30{outline-color:rgb(var(--cyan-4)/.3)}.outline-cyan-4\/40{outline-color:rgb(var(--cyan-4)/.4)}.outline-cyan-4\/5{outline-color:rgb(var(--cyan-4)/.05)}.outline-cyan-4\/50{outline-color:rgb(var(--cyan-4)/.5)}.outline-cyan-4\/60{outline-color:rgb(var(--cyan-4)/.6)}.outline-cyan-4\/70{outline-color:rgb(var(--cyan-4)/.7)}.outline-cyan-4\/75{outline-color:rgb(var(--cyan-4)/.75)}.outline-cyan-4\/80{outline-color:rgb(var(--cyan-4)/.8)}.outline-cyan-4\/90{outline-color:rgb(var(--cyan-4)/.9)}.outline-cyan-4\/95{outline-color:rgb(var(--cyan-4)/.95)}.outline-cyan-5\/0{outline-color:rgb(var(--cyan-5)/0)}.outline-cyan-5\/10{outline-color:rgb(var(--cyan-5)/.1)}.outline-cyan-5\/100{outline-color:rgb(var(--cyan-5)/1)}.outline-cyan-5\/20{outline-color:rgb(var(--cyan-5)/.2)}.outline-cyan-5\/25{outline-color:rgb(var(--cyan-5)/.25)}.outline-cyan-5\/30{outline-color:rgb(var(--cyan-5)/.3)}.outline-cyan-5\/40{outline-color:rgb(var(--cyan-5)/.4)}.outline-cyan-5\/5{outline-color:rgb(var(--cyan-5)/.05)}.outline-cyan-5\/50{outline-color:rgb(var(--cyan-5)/.5)}.outline-cyan-5\/60{outline-color:rgb(var(--cyan-5)/.6)}.outline-cyan-5\/70{outline-color:rgb(var(--cyan-5)/.7)}.outline-cyan-5\/75{outline-color:rgb(var(--cyan-5)/.75)}.outline-cyan-5\/80{outline-color:rgb(var(--cyan-5)/.8)}.outline-cyan-5\/90{outline-color:rgb(var(--cyan-5)/.9)}.outline-cyan-5\/95{outline-color:rgb(var(--cyan-5)/.95)}.outline-cyan-6\/0{outline-color:rgb(var(--cyan-6)/0)}.outline-cyan-6\/10{outline-color:rgb(var(--cyan-6)/.1)}.outline-cyan-6\/100{outline-color:rgb(var(--cyan-6)/1)}.outline-cyan-6\/20{outline-color:rgb(var(--cyan-6)/.2)}.outline-cyan-6\/25{outline-color:rgb(var(--cyan-6)/.25)}.outline-cyan-6\/30{outline-color:rgb(var(--cyan-6)/.3)}.outline-cyan-6\/40{outline-color:rgb(var(--cyan-6)/.4)}.outline-cyan-6\/5{outline-color:rgb(var(--cyan-6)/.05)}.outline-cyan-6\/50{outline-color:rgb(var(--cyan-6)/.5)}.outline-cyan-6\/60{outline-color:rgb(var(--cyan-6)/.6)}.outline-cyan-6\/70{outline-color:rgb(var(--cyan-6)/.7)}.outline-cyan-6\/75{outline-color:rgb(var(--cyan-6)/.75)}.outline-cyan-6\/80{outline-color:rgb(var(--cyan-6)/.8)}.outline-cyan-6\/90{outline-color:rgb(var(--cyan-6)/.9)}.outline-cyan-6\/95{outline-color:rgb(var(--cyan-6)/.95)}.outline-cyan-7\/0{outline-color:rgb(var(--cyan-7)/0)}.outline-cyan-7\/10{outline-color:rgb(var(--cyan-7)/.1)}.outline-cyan-7\/100{outline-color:rgb(var(--cyan-7)/1)}.outline-cyan-7\/20{outline-color:rgb(var(--cyan-7)/.2)}.outline-cyan-7\/25{outline-color:rgb(var(--cyan-7)/.25)}.outline-cyan-7\/30{outline-color:rgb(var(--cyan-7)/.3)}.outline-cyan-7\/40{outline-color:rgb(var(--cyan-7)/.4)}.outline-cyan-7\/5{outline-color:rgb(var(--cyan-7)/.05)}.outline-cyan-7\/50{outline-color:rgb(var(--cyan-7)/.5)}.outline-cyan-7\/60{outline-color:rgb(var(--cyan-7)/.6)}.outline-cyan-7\/70{outline-color:rgb(var(--cyan-7)/.7)}.outline-cyan-7\/75{outline-color:rgb(var(--cyan-7)/.75)}.outline-cyan-7\/80{outline-color:rgb(var(--cyan-7)/.8)}.outline-cyan-7\/90{outline-color:rgb(var(--cyan-7)/.9)}.outline-cyan-7\/95{outline-color:rgb(var(--cyan-7)/.95)}.outline-cyan-8\/0{outline-color:rgb(var(--cyan-8)/0)}.outline-cyan-8\/10{outline-color:rgb(var(--cyan-8)/.1)}.outline-cyan-8\/100{outline-color:rgb(var(--cyan-8)/1)}.outline-cyan-8\/20{outline-color:rgb(var(--cyan-8)/.2)}.outline-cyan-8\/25{outline-color:rgb(var(--cyan-8)/.25)}.outline-cyan-8\/30{outline-color:rgb(var(--cyan-8)/.3)}.outline-cyan-8\/40{outline-color:rgb(var(--cyan-8)/.4)}.outline-cyan-8\/5{outline-color:rgb(var(--cyan-8)/.05)}.outline-cyan-8\/50{outline-color:rgb(var(--cyan-8)/.5)}.outline-cyan-8\/60{outline-color:rgb(var(--cyan-8)/.6)}.outline-cyan-8\/70{outline-color:rgb(var(--cyan-8)/.7)}.outline-cyan-8\/75{outline-color:rgb(var(--cyan-8)/.75)}.outline-cyan-8\/80{outline-color:rgb(var(--cyan-8)/.8)}.outline-cyan-8\/90{outline-color:rgb(var(--cyan-8)/.9)}.outline-cyan-8\/95{outline-color:rgb(var(--cyan-8)/.95)}.outline-cyan-9\/0{outline-color:rgb(var(--cyan-9)/0)}.outline-cyan-9\/10{outline-color:rgb(var(--cyan-9)/.1)}.outline-cyan-9\/100{outline-color:rgb(var(--cyan-9)/1)}.outline-cyan-9\/20{outline-color:rgb(var(--cyan-9)/.2)}.outline-cyan-9\/25{outline-color:rgb(var(--cyan-9)/.25)}.outline-cyan-9\/30{outline-color:rgb(var(--cyan-9)/.3)}.outline-cyan-9\/40{outline-color:rgb(var(--cyan-9)/.4)}.outline-cyan-9\/5{outline-color:rgb(var(--cyan-9)/.05)}.outline-cyan-9\/50{outline-color:rgb(var(--cyan-9)/.5)}.outline-cyan-9\/60{outline-color:rgb(var(--cyan-9)/.6)}.outline-cyan-9\/70{outline-color:rgb(var(--cyan-9)/.7)}.outline-cyan-9\/75{outline-color:rgb(var(--cyan-9)/.75)}.outline-cyan-9\/80{outline-color:rgb(var(--cyan-9)/.8)}.outline-cyan-9\/90{outline-color:rgb(var(--cyan-9)/.9)}.outline-cyan-9\/95{outline-color:rgb(var(--cyan-9)/.95)}.outline-error{outline-color:rgb(var(--error))}.outline-error\/0{outline-color:rgb(var(--error)/0)}.outline-error\/10{outline-color:rgb(var(--error)/.1)}.outline-error\/100{outline-color:rgb(var(--error)/1)}.outline-error\/20{outline-color:rgb(var(--error)/.2)}.outline-error\/25{outline-color:rgb(var(--error)/.25)}.outline-error\/30{outline-color:rgb(var(--error)/.3)}.outline-error\/40{outline-color:rgb(var(--error)/.4)}.outline-error\/5{outline-color:rgb(var(--error)/.05)}.outline-error\/50{outline-color:rgb(var(--error)/.5)}.outline-error\/60{outline-color:rgb(var(--error)/.6)}.outline-error\/70{outline-color:rgb(var(--error)/.7)}.outline-error\/75{outline-color:rgb(var(--error)/.75)}.outline-error\/80{outline-color:rgb(var(--error)/.8)}.outline-error\/90{outline-color:rgb(var(--error)/.9)}.outline-error\/95{outline-color:rgb(var(--error)/.95)}.outline-gray-1\/0{outline-color:rgb(var(--gray-1)/0)}.outline-gray-1\/10{outline-color:rgb(var(--gray-1)/.1)}.outline-gray-1\/100{outline-color:rgb(var(--gray-1)/1)}.outline-gray-1\/20{outline-color:rgb(var(--gray-1)/.2)}.outline-gray-1\/25{outline-color:rgb(var(--gray-1)/.25)}.outline-gray-1\/30{outline-color:rgb(var(--gray-1)/.3)}.outline-gray-1\/40{outline-color:rgb(var(--gray-1)/.4)}.outline-gray-1\/5{outline-color:rgb(var(--gray-1)/.05)}.outline-gray-1\/50{outline-color:rgb(var(--gray-1)/.5)}.outline-gray-1\/60{outline-color:rgb(var(--gray-1)/.6)}.outline-gray-1\/70{outline-color:rgb(var(--gray-1)/.7)}.outline-gray-1\/75{outline-color:rgb(var(--gray-1)/.75)}.outline-gray-1\/80{outline-color:rgb(var(--gray-1)/.8)}.outline-gray-1\/90{outline-color:rgb(var(--gray-1)/.9)}.outline-gray-1\/95{outline-color:rgb(var(--gray-1)/.95)}.outline-gray-10\/0{outline-color:rgb(var(--gray-10)/0)}.outline-gray-10\/10{outline-color:rgb(var(--gray-10)/.1)}.outline-gray-10\/100{outline-color:rgb(var(--gray-10)/1)}.outline-gray-10\/20{outline-color:rgb(var(--gray-10)/.2)}.outline-gray-10\/25{outline-color:rgb(var(--gray-10)/.25)}.outline-gray-10\/30{outline-color:rgb(var(--gray-10)/.3)}.outline-gray-10\/40{outline-color:rgb(var(--gray-10)/.4)}.outline-gray-10\/5{outline-color:rgb(var(--gray-10)/.05)}.outline-gray-10\/50{outline-color:rgb(var(--gray-10)/.5)}.outline-gray-10\/60{outline-color:rgb(var(--gray-10)/.6)}.outline-gray-10\/70{outline-color:rgb(var(--gray-10)/.7)}.outline-gray-10\/75{outline-color:rgb(var(--gray-10)/.75)}.outline-gray-10\/80{outline-color:rgb(var(--gray-10)/.8)}.outline-gray-10\/90{outline-color:rgb(var(--gray-10)/.9)}.outline-gray-10\/95{outline-color:rgb(var(--gray-10)/.95)}.outline-gray-2\/0{outline-color:rgb(var(--gray-2)/0)}.outline-gray-2\/10{outline-color:rgb(var(--gray-2)/.1)}.outline-gray-2\/100{outline-color:rgb(var(--gray-2)/1)}.outline-gray-2\/20{outline-color:rgb(var(--gray-2)/.2)}.outline-gray-2\/25{outline-color:rgb(var(--gray-2)/.25)}.outline-gray-2\/30{outline-color:rgb(var(--gray-2)/.3)}.outline-gray-2\/40{outline-color:rgb(var(--gray-2)/.4)}.outline-gray-2\/5{outline-color:rgb(var(--gray-2)/.05)}.outline-gray-2\/50{outline-color:rgb(var(--gray-2)/.5)}.outline-gray-2\/60{outline-color:rgb(var(--gray-2)/.6)}.outline-gray-2\/70{outline-color:rgb(var(--gray-2)/.7)}.outline-gray-2\/75{outline-color:rgb(var(--gray-2)/.75)}.outline-gray-2\/80{outline-color:rgb(var(--gray-2)/.8)}.outline-gray-2\/90{outline-color:rgb(var(--gray-2)/.9)}.outline-gray-2\/95{outline-color:rgb(var(--gray-2)/.95)}.outline-gray-3\/0{outline-color:rgb(var(--gray-3)/0)}.outline-gray-3\/10{outline-color:rgb(var(--gray-3)/.1)}.outline-gray-3\/100{outline-color:rgb(var(--gray-3)/1)}.outline-gray-3\/20{outline-color:rgb(var(--gray-3)/.2)}.outline-gray-3\/25{outline-color:rgb(var(--gray-3)/.25)}.outline-gray-3\/30{outline-color:rgb(var(--gray-3)/.3)}.outline-gray-3\/40{outline-color:rgb(var(--gray-3)/.4)}.outline-gray-3\/5{outline-color:rgb(var(--gray-3)/.05)}.outline-gray-3\/50{outline-color:rgb(var(--gray-3)/.5)}.outline-gray-3\/60{outline-color:rgb(var(--gray-3)/.6)}.outline-gray-3\/70{outline-color:rgb(var(--gray-3)/.7)}.outline-gray-3\/75{outline-color:rgb(var(--gray-3)/.75)}.outline-gray-3\/80{outline-color:rgb(var(--gray-3)/.8)}.outline-gray-3\/90{outline-color:rgb(var(--gray-3)/.9)}.outline-gray-3\/95{outline-color:rgb(var(--gray-3)/.95)}.outline-gray-4\/0{outline-color:rgb(var(--gray-4)/0)}.outline-gray-4\/10{outline-color:rgb(var(--gray-4)/.1)}.outline-gray-4\/100{outline-color:rgb(var(--gray-4)/1)}.outline-gray-4\/20{outline-color:rgb(var(--gray-4)/.2)}.outline-gray-4\/25{outline-color:rgb(var(--gray-4)/.25)}.outline-gray-4\/30{outline-color:rgb(var(--gray-4)/.3)}.outline-gray-4\/40{outline-color:rgb(var(--gray-4)/.4)}.outline-gray-4\/5{outline-color:rgb(var(--gray-4)/.05)}.outline-gray-4\/50{outline-color:rgb(var(--gray-4)/.5)}.outline-gray-4\/60{outline-color:rgb(var(--gray-4)/.6)}.outline-gray-4\/70{outline-color:rgb(var(--gray-4)/.7)}.outline-gray-4\/75{outline-color:rgb(var(--gray-4)/.75)}.outline-gray-4\/80{outline-color:rgb(var(--gray-4)/.8)}.outline-gray-4\/90{outline-color:rgb(var(--gray-4)/.9)}.outline-gray-4\/95{outline-color:rgb(var(--gray-4)/.95)}.outline-gray-5\/0{outline-color:rgb(var(--gray-5)/0)}.outline-gray-5\/10{outline-color:rgb(var(--gray-5)/.1)}.outline-gray-5\/100{outline-color:rgb(var(--gray-5)/1)}.outline-gray-5\/20{outline-color:rgb(var(--gray-5)/.2)}.outline-gray-5\/25{outline-color:rgb(var(--gray-5)/.25)}.outline-gray-5\/30{outline-color:rgb(var(--gray-5)/.3)}.outline-gray-5\/40{outline-color:rgb(var(--gray-5)/.4)}.outline-gray-5\/5{outline-color:rgb(var(--gray-5)/.05)}.outline-gray-5\/50{outline-color:rgb(var(--gray-5)/.5)}.outline-gray-5\/60{outline-color:rgb(var(--gray-5)/.6)}.outline-gray-5\/70{outline-color:rgb(var(--gray-5)/.7)}.outline-gray-5\/75{outline-color:rgb(var(--gray-5)/.75)}.outline-gray-5\/80{outline-color:rgb(var(--gray-5)/.8)}.outline-gray-5\/90{outline-color:rgb(var(--gray-5)/.9)}.outline-gray-5\/95{outline-color:rgb(var(--gray-5)/.95)}.outline-gray-6\/0{outline-color:rgb(var(--gray-6)/0)}.outline-gray-6\/10{outline-color:rgb(var(--gray-6)/.1)}.outline-gray-6\/100{outline-color:rgb(var(--gray-6)/1)}.outline-gray-6\/20{outline-color:rgb(var(--gray-6)/.2)}.outline-gray-6\/25{outline-color:rgb(var(--gray-6)/.25)}.outline-gray-6\/30{outline-color:rgb(var(--gray-6)/.3)}.outline-gray-6\/40{outline-color:rgb(var(--gray-6)/.4)}.outline-gray-6\/5{outline-color:rgb(var(--gray-6)/.05)}.outline-gray-6\/50{outline-color:rgb(var(--gray-6)/.5)}.outline-gray-6\/60{outline-color:rgb(var(--gray-6)/.6)}.outline-gray-6\/70{outline-color:rgb(var(--gray-6)/.7)}.outline-gray-6\/75{outline-color:rgb(var(--gray-6)/.75)}.outline-gray-6\/80{outline-color:rgb(var(--gray-6)/.8)}.outline-gray-6\/90{outline-color:rgb(var(--gray-6)/.9)}.outline-gray-6\/95{outline-color:rgb(var(--gray-6)/.95)}.outline-gray-7\/0{outline-color:rgb(var(--gray-7)/0)}.outline-gray-7\/10{outline-color:rgb(var(--gray-7)/.1)}.outline-gray-7\/100{outline-color:rgb(var(--gray-7)/1)}.outline-gray-7\/20{outline-color:rgb(var(--gray-7)/.2)}.outline-gray-7\/25{outline-color:rgb(var(--gray-7)/.25)}.outline-gray-7\/30{outline-color:rgb(var(--gray-7)/.3)}.outline-gray-7\/40{outline-color:rgb(var(--gray-7)/.4)}.outline-gray-7\/5{outline-color:rgb(var(--gray-7)/.05)}.outline-gray-7\/50{outline-color:rgb(var(--gray-7)/.5)}.outline-gray-7\/60{outline-color:rgb(var(--gray-7)/.6)}.outline-gray-7\/70{outline-color:rgb(var(--gray-7)/.7)}.outline-gray-7\/75{outline-color:rgb(var(--gray-7)/.75)}.outline-gray-7\/80{outline-color:rgb(var(--gray-7)/.8)}.outline-gray-7\/90{outline-color:rgb(var(--gray-7)/.9)}.outline-gray-7\/95{outline-color:rgb(var(--gray-7)/.95)}.outline-gray-8\/0{outline-color:rgb(var(--gray-8)/0)}.outline-gray-8\/10{outline-color:rgb(var(--gray-8)/.1)}.outline-gray-8\/100{outline-color:rgb(var(--gray-8)/1)}.outline-gray-8\/20{outline-color:rgb(var(--gray-8)/.2)}.outline-gray-8\/25{outline-color:rgb(var(--gray-8)/.25)}.outline-gray-8\/30{outline-color:rgb(var(--gray-8)/.3)}.outline-gray-8\/40{outline-color:rgb(var(--gray-8)/.4)}.outline-gray-8\/5{outline-color:rgb(var(--gray-8)/.05)}.outline-gray-8\/50{outline-color:rgb(var(--gray-8)/.5)}.outline-gray-8\/60{outline-color:rgb(var(--gray-8)/.6)}.outline-gray-8\/70{outline-color:rgb(var(--gray-8)/.7)}.outline-gray-8\/75{outline-color:rgb(var(--gray-8)/.75)}.outline-gray-8\/80{outline-color:rgb(var(--gray-8)/.8)}.outline-gray-8\/90{outline-color:rgb(var(--gray-8)/.9)}.outline-gray-8\/95{outline-color:rgb(var(--gray-8)/.95)}.outline-gray-9\/0{outline-color:rgb(var(--gray-9)/0)}.outline-gray-9\/10{outline-color:rgb(var(--gray-9)/.1)}.outline-gray-9\/100{outline-color:rgb(var(--gray-9)/1)}.outline-gray-9\/20{outline-color:rgb(var(--gray-9)/.2)}.outline-gray-9\/25{outline-color:rgb(var(--gray-9)/.25)}.outline-gray-9\/30{outline-color:rgb(var(--gray-9)/.3)}.outline-gray-9\/40{outline-color:rgb(var(--gray-9)/.4)}.outline-gray-9\/5{outline-color:rgb(var(--gray-9)/.05)}.outline-gray-9\/50{outline-color:rgb(var(--gray-9)/.5)}.outline-gray-9\/60{outline-color:rgb(var(--gray-9)/.6)}.outline-gray-9\/70{outline-color:rgb(var(--gray-9)/.7)}.outline-gray-9\/75{outline-color:rgb(var(--gray-9)/.75)}.outline-gray-9\/80{outline-color:rgb(var(--gray-9)/.8)}.outline-gray-9\/90{outline-color:rgb(var(--gray-9)/.9)}.outline-gray-9\/95{outline-color:rgb(var(--gray-9)/.95)}.outline-green-1\/0{outline-color:rgb(var(--green-1)/0)}.outline-green-1\/10{outline-color:rgb(var(--green-1)/.1)}.outline-green-1\/100{outline-color:rgb(var(--green-1)/1)}.outline-green-1\/20{outline-color:rgb(var(--green-1)/.2)}.outline-green-1\/25{outline-color:rgb(var(--green-1)/.25)}.outline-green-1\/30{outline-color:rgb(var(--green-1)/.3)}.outline-green-1\/40{outline-color:rgb(var(--green-1)/.4)}.outline-green-1\/5{outline-color:rgb(var(--green-1)/.05)}.outline-green-1\/50{outline-color:rgb(var(--green-1)/.5)}.outline-green-1\/60{outline-color:rgb(var(--green-1)/.6)}.outline-green-1\/70{outline-color:rgb(var(--green-1)/.7)}.outline-green-1\/75{outline-color:rgb(var(--green-1)/.75)}.outline-green-1\/80{outline-color:rgb(var(--green-1)/.8)}.outline-green-1\/90{outline-color:rgb(var(--green-1)/.9)}.outline-green-1\/95{outline-color:rgb(var(--green-1)/.95)}.outline-green-10\/0{outline-color:rgb(var(--green-10)/0)}.outline-green-10\/10{outline-color:rgb(var(--green-10)/.1)}.outline-green-10\/100{outline-color:rgb(var(--green-10)/1)}.outline-green-10\/20{outline-color:rgb(var(--green-10)/.2)}.outline-green-10\/25{outline-color:rgb(var(--green-10)/.25)}.outline-green-10\/30{outline-color:rgb(var(--green-10)/.3)}.outline-green-10\/40{outline-color:rgb(var(--green-10)/.4)}.outline-green-10\/5{outline-color:rgb(var(--green-10)/.05)}.outline-green-10\/50{outline-color:rgb(var(--green-10)/.5)}.outline-green-10\/60{outline-color:rgb(var(--green-10)/.6)}.outline-green-10\/70{outline-color:rgb(var(--green-10)/.7)}.outline-green-10\/75{outline-color:rgb(var(--green-10)/.75)}.outline-green-10\/80{outline-color:rgb(var(--green-10)/.8)}.outline-green-10\/90{outline-color:rgb(var(--green-10)/.9)}.outline-green-10\/95{outline-color:rgb(var(--green-10)/.95)}.outline-green-2\/0{outline-color:rgb(var(--green-2)/0)}.outline-green-2\/10{outline-color:rgb(var(--green-2)/.1)}.outline-green-2\/100{outline-color:rgb(var(--green-2)/1)}.outline-green-2\/20{outline-color:rgb(var(--green-2)/.2)}.outline-green-2\/25{outline-color:rgb(var(--green-2)/.25)}.outline-green-2\/30{outline-color:rgb(var(--green-2)/.3)}.outline-green-2\/40{outline-color:rgb(var(--green-2)/.4)}.outline-green-2\/5{outline-color:rgb(var(--green-2)/.05)}.outline-green-2\/50{outline-color:rgb(var(--green-2)/.5)}.outline-green-2\/60{outline-color:rgb(var(--green-2)/.6)}.outline-green-2\/70{outline-color:rgb(var(--green-2)/.7)}.outline-green-2\/75{outline-color:rgb(var(--green-2)/.75)}.outline-green-2\/80{outline-color:rgb(var(--green-2)/.8)}.outline-green-2\/90{outline-color:rgb(var(--green-2)/.9)}.outline-green-2\/95{outline-color:rgb(var(--green-2)/.95)}.outline-green-3\/0{outline-color:rgb(var(--green-3)/0)}.outline-green-3\/10{outline-color:rgb(var(--green-3)/.1)}.outline-green-3\/100{outline-color:rgb(var(--green-3)/1)}.outline-green-3\/20{outline-color:rgb(var(--green-3)/.2)}.outline-green-3\/25{outline-color:rgb(var(--green-3)/.25)}.outline-green-3\/30{outline-color:rgb(var(--green-3)/.3)}.outline-green-3\/40{outline-color:rgb(var(--green-3)/.4)}.outline-green-3\/5{outline-color:rgb(var(--green-3)/.05)}.outline-green-3\/50{outline-color:rgb(var(--green-3)/.5)}.outline-green-3\/60{outline-color:rgb(var(--green-3)/.6)}.outline-green-3\/70{outline-color:rgb(var(--green-3)/.7)}.outline-green-3\/75{outline-color:rgb(var(--green-3)/.75)}.outline-green-3\/80{outline-color:rgb(var(--green-3)/.8)}.outline-green-3\/90{outline-color:rgb(var(--green-3)/.9)}.outline-green-3\/95{outline-color:rgb(var(--green-3)/.95)}.outline-green-4\/0{outline-color:rgb(var(--green-4)/0)}.outline-green-4\/10{outline-color:rgb(var(--green-4)/.1)}.outline-green-4\/100{outline-color:rgb(var(--green-4)/1)}.outline-green-4\/20{outline-color:rgb(var(--green-4)/.2)}.outline-green-4\/25{outline-color:rgb(var(--green-4)/.25)}.outline-green-4\/30{outline-color:rgb(var(--green-4)/.3)}.outline-green-4\/40{outline-color:rgb(var(--green-4)/.4)}.outline-green-4\/5{outline-color:rgb(var(--green-4)/.05)}.outline-green-4\/50{outline-color:rgb(var(--green-4)/.5)}.outline-green-4\/60{outline-color:rgb(var(--green-4)/.6)}.outline-green-4\/70{outline-color:rgb(var(--green-4)/.7)}.outline-green-4\/75{outline-color:rgb(var(--green-4)/.75)}.outline-green-4\/80{outline-color:rgb(var(--green-4)/.8)}.outline-green-4\/90{outline-color:rgb(var(--green-4)/.9)}.outline-green-4\/95{outline-color:rgb(var(--green-4)/.95)}.outline-green-5\/0{outline-color:rgb(var(--green-5)/0)}.outline-green-5\/10{outline-color:rgb(var(--green-5)/.1)}.outline-green-5\/100{outline-color:rgb(var(--green-5)/1)}.outline-green-5\/20{outline-color:rgb(var(--green-5)/.2)}.outline-green-5\/25{outline-color:rgb(var(--green-5)/.25)}.outline-green-5\/30{outline-color:rgb(var(--green-5)/.3)}.outline-green-5\/40{outline-color:rgb(var(--green-5)/.4)}.outline-green-5\/5{outline-color:rgb(var(--green-5)/.05)}.outline-green-5\/50{outline-color:rgb(var(--green-5)/.5)}.outline-green-5\/60{outline-color:rgb(var(--green-5)/.6)}.outline-green-5\/70{outline-color:rgb(var(--green-5)/.7)}.outline-green-5\/75{outline-color:rgb(var(--green-5)/.75)}.outline-green-5\/80{outline-color:rgb(var(--green-5)/.8)}.outline-green-5\/90{outline-color:rgb(var(--green-5)/.9)}.outline-green-5\/95{outline-color:rgb(var(--green-5)/.95)}.outline-green-6\/0{outline-color:rgb(var(--green-6)/0)}.outline-green-6\/10{outline-color:rgb(var(--green-6)/.1)}.outline-green-6\/100{outline-color:rgb(var(--green-6)/1)}.outline-green-6\/20{outline-color:rgb(var(--green-6)/.2)}.outline-green-6\/25{outline-color:rgb(var(--green-6)/.25)}.outline-green-6\/30{outline-color:rgb(var(--green-6)/.3)}.outline-green-6\/40{outline-color:rgb(var(--green-6)/.4)}.outline-green-6\/5{outline-color:rgb(var(--green-6)/.05)}.outline-green-6\/50{outline-color:rgb(var(--green-6)/.5)}.outline-green-6\/60{outline-color:rgb(var(--green-6)/.6)}.outline-green-6\/70{outline-color:rgb(var(--green-6)/.7)}.outline-green-6\/75{outline-color:rgb(var(--green-6)/.75)}.outline-green-6\/80{outline-color:rgb(var(--green-6)/.8)}.outline-green-6\/90{outline-color:rgb(var(--green-6)/.9)}.outline-green-6\/95{outline-color:rgb(var(--green-6)/.95)}.outline-green-7\/0{outline-color:rgb(var(--green-7)/0)}.outline-green-7\/10{outline-color:rgb(var(--green-7)/.1)}.outline-green-7\/100{outline-color:rgb(var(--green-7)/1)}.outline-green-7\/20{outline-color:rgb(var(--green-7)/.2)}.outline-green-7\/25{outline-color:rgb(var(--green-7)/.25)}.outline-green-7\/30{outline-color:rgb(var(--green-7)/.3)}.outline-green-7\/40{outline-color:rgb(var(--green-7)/.4)}.outline-green-7\/5{outline-color:rgb(var(--green-7)/.05)}.outline-green-7\/50{outline-color:rgb(var(--green-7)/.5)}.outline-green-7\/60{outline-color:rgb(var(--green-7)/.6)}.outline-green-7\/70{outline-color:rgb(var(--green-7)/.7)}.outline-green-7\/75{outline-color:rgb(var(--green-7)/.75)}.outline-green-7\/80{outline-color:rgb(var(--green-7)/.8)}.outline-green-7\/90{outline-color:rgb(var(--green-7)/.9)}.outline-green-7\/95{outline-color:rgb(var(--green-7)/.95)}.outline-green-8\/0{outline-color:rgb(var(--green-8)/0)}.outline-green-8\/10{outline-color:rgb(var(--green-8)/.1)}.outline-green-8\/100{outline-color:rgb(var(--green-8)/1)}.outline-green-8\/20{outline-color:rgb(var(--green-8)/.2)}.outline-green-8\/25{outline-color:rgb(var(--green-8)/.25)}.outline-green-8\/30{outline-color:rgb(var(--green-8)/.3)}.outline-green-8\/40{outline-color:rgb(var(--green-8)/.4)}.outline-green-8\/5{outline-color:rgb(var(--green-8)/.05)}.outline-green-8\/50{outline-color:rgb(var(--green-8)/.5)}.outline-green-8\/60{outline-color:rgb(var(--green-8)/.6)}.outline-green-8\/70{outline-color:rgb(var(--green-8)/.7)}.outline-green-8\/75{outline-color:rgb(var(--green-8)/.75)}.outline-green-8\/80{outline-color:rgb(var(--green-8)/.8)}.outline-green-8\/90{outline-color:rgb(var(--green-8)/.9)}.outline-green-8\/95{outline-color:rgb(var(--green-8)/.95)}.outline-green-9\/0{outline-color:rgb(var(--green-9)/0)}.outline-green-9\/10{outline-color:rgb(var(--green-9)/.1)}.outline-green-9\/100{outline-color:rgb(var(--green-9)/1)}.outline-green-9\/20{outline-color:rgb(var(--green-9)/.2)}.outline-green-9\/25{outline-color:rgb(var(--green-9)/.25)}.outline-green-9\/30{outline-color:rgb(var(--green-9)/.3)}.outline-green-9\/40{outline-color:rgb(var(--green-9)/.4)}.outline-green-9\/5{outline-color:rgb(var(--green-9)/.05)}.outline-green-9\/50{outline-color:rgb(var(--green-9)/.5)}.outline-green-9\/60{outline-color:rgb(var(--green-9)/.6)}.outline-green-9\/70{outline-color:rgb(var(--green-9)/.7)}.outline-green-9\/75{outline-color:rgb(var(--green-9)/.75)}.outline-green-9\/80{outline-color:rgb(var(--green-9)/.8)}.outline-green-9\/90{outline-color:rgb(var(--green-9)/.9)}.outline-green-9\/95{outline-color:rgb(var(--green-9)/.95)}.outline-pink-1\/0{outline-color:rgb(var(--pink-1)/0)}.outline-pink-1\/10{outline-color:rgb(var(--pink-1)/.1)}.outline-pink-1\/100{outline-color:rgb(var(--pink-1)/1)}.outline-pink-1\/20{outline-color:rgb(var(--pink-1)/.2)}.outline-pink-1\/25{outline-color:rgb(var(--pink-1)/.25)}.outline-pink-1\/30{outline-color:rgb(var(--pink-1)/.3)}.outline-pink-1\/40{outline-color:rgb(var(--pink-1)/.4)}.outline-pink-1\/5{outline-color:rgb(var(--pink-1)/.05)}.outline-pink-1\/50{outline-color:rgb(var(--pink-1)/.5)}.outline-pink-1\/60{outline-color:rgb(var(--pink-1)/.6)}.outline-pink-1\/70{outline-color:rgb(var(--pink-1)/.7)}.outline-pink-1\/75{outline-color:rgb(var(--pink-1)/.75)}.outline-pink-1\/80{outline-color:rgb(var(--pink-1)/.8)}.outline-pink-1\/90{outline-color:rgb(var(--pink-1)/.9)}.outline-pink-1\/95{outline-color:rgb(var(--pink-1)/.95)}.outline-pink-10\/0{outline-color:rgb(var(--pink-10)/0)}.outline-pink-10\/10{outline-color:rgb(var(--pink-10)/.1)}.outline-pink-10\/100{outline-color:rgb(var(--pink-10)/1)}.outline-pink-10\/20{outline-color:rgb(var(--pink-10)/.2)}.outline-pink-10\/25{outline-color:rgb(var(--pink-10)/.25)}.outline-pink-10\/30{outline-color:rgb(var(--pink-10)/.3)}.outline-pink-10\/40{outline-color:rgb(var(--pink-10)/.4)}.outline-pink-10\/5{outline-color:rgb(var(--pink-10)/.05)}.outline-pink-10\/50{outline-color:rgb(var(--pink-10)/.5)}.outline-pink-10\/60{outline-color:rgb(var(--pink-10)/.6)}.outline-pink-10\/70{outline-color:rgb(var(--pink-10)/.7)}.outline-pink-10\/75{outline-color:rgb(var(--pink-10)/.75)}.outline-pink-10\/80{outline-color:rgb(var(--pink-10)/.8)}.outline-pink-10\/90{outline-color:rgb(var(--pink-10)/.9)}.outline-pink-10\/95{outline-color:rgb(var(--pink-10)/.95)}.outline-pink-2\/0{outline-color:rgb(var(--pink-2)/0)}.outline-pink-2\/10{outline-color:rgb(var(--pink-2)/.1)}.outline-pink-2\/100{outline-color:rgb(var(--pink-2)/1)}.outline-pink-2\/20{outline-color:rgb(var(--pink-2)/.2)}.outline-pink-2\/25{outline-color:rgb(var(--pink-2)/.25)}.outline-pink-2\/30{outline-color:rgb(var(--pink-2)/.3)}.outline-pink-2\/40{outline-color:rgb(var(--pink-2)/.4)}.outline-pink-2\/5{outline-color:rgb(var(--pink-2)/.05)}.outline-pink-2\/50{outline-color:rgb(var(--pink-2)/.5)}.outline-pink-2\/60{outline-color:rgb(var(--pink-2)/.6)}.outline-pink-2\/70{outline-color:rgb(var(--pink-2)/.7)}.outline-pink-2\/75{outline-color:rgb(var(--pink-2)/.75)}.outline-pink-2\/80{outline-color:rgb(var(--pink-2)/.8)}.outline-pink-2\/90{outline-color:rgb(var(--pink-2)/.9)}.outline-pink-2\/95{outline-color:rgb(var(--pink-2)/.95)}.outline-pink-3\/0{outline-color:rgb(var(--pink-3)/0)}.outline-pink-3\/10{outline-color:rgb(var(--pink-3)/.1)}.outline-pink-3\/100{outline-color:rgb(var(--pink-3)/1)}.outline-pink-3\/20{outline-color:rgb(var(--pink-3)/.2)}.outline-pink-3\/25{outline-color:rgb(var(--pink-3)/.25)}.outline-pink-3\/30{outline-color:rgb(var(--pink-3)/.3)}.outline-pink-3\/40{outline-color:rgb(var(--pink-3)/.4)}.outline-pink-3\/5{outline-color:rgb(var(--pink-3)/.05)}.outline-pink-3\/50{outline-color:rgb(var(--pink-3)/.5)}.outline-pink-3\/60{outline-color:rgb(var(--pink-3)/.6)}.outline-pink-3\/70{outline-color:rgb(var(--pink-3)/.7)}.outline-pink-3\/75{outline-color:rgb(var(--pink-3)/.75)}.outline-pink-3\/80{outline-color:rgb(var(--pink-3)/.8)}.outline-pink-3\/90{outline-color:rgb(var(--pink-3)/.9)}.outline-pink-3\/95{outline-color:rgb(var(--pink-3)/.95)}.outline-pink-4\/0{outline-color:rgb(var(--pink-4)/0)}.outline-pink-4\/10{outline-color:rgb(var(--pink-4)/.1)}.outline-pink-4\/100{outline-color:rgb(var(--pink-4)/1)}.outline-pink-4\/20{outline-color:rgb(var(--pink-4)/.2)}.outline-pink-4\/25{outline-color:rgb(var(--pink-4)/.25)}.outline-pink-4\/30{outline-color:rgb(var(--pink-4)/.3)}.outline-pink-4\/40{outline-color:rgb(var(--pink-4)/.4)}.outline-pink-4\/5{outline-color:rgb(var(--pink-4)/.05)}.outline-pink-4\/50{outline-color:rgb(var(--pink-4)/.5)}.outline-pink-4\/60{outline-color:rgb(var(--pink-4)/.6)}.outline-pink-4\/70{outline-color:rgb(var(--pink-4)/.7)}.outline-pink-4\/75{outline-color:rgb(var(--pink-4)/.75)}.outline-pink-4\/80{outline-color:rgb(var(--pink-4)/.8)}.outline-pink-4\/90{outline-color:rgb(var(--pink-4)/.9)}.outline-pink-4\/95{outline-color:rgb(var(--pink-4)/.95)}.outline-pink-5\/0{outline-color:rgb(var(--pink-5)/0)}.outline-pink-5\/10{outline-color:rgb(var(--pink-5)/.1)}.outline-pink-5\/100{outline-color:rgb(var(--pink-5)/1)}.outline-pink-5\/20{outline-color:rgb(var(--pink-5)/.2)}.outline-pink-5\/25{outline-color:rgb(var(--pink-5)/.25)}.outline-pink-5\/30{outline-color:rgb(var(--pink-5)/.3)}.outline-pink-5\/40{outline-color:rgb(var(--pink-5)/.4)}.outline-pink-5\/5{outline-color:rgb(var(--pink-5)/.05)}.outline-pink-5\/50{outline-color:rgb(var(--pink-5)/.5)}.outline-pink-5\/60{outline-color:rgb(var(--pink-5)/.6)}.outline-pink-5\/70{outline-color:rgb(var(--pink-5)/.7)}.outline-pink-5\/75{outline-color:rgb(var(--pink-5)/.75)}.outline-pink-5\/80{outline-color:rgb(var(--pink-5)/.8)}.outline-pink-5\/90{outline-color:rgb(var(--pink-5)/.9)}.outline-pink-5\/95{outline-color:rgb(var(--pink-5)/.95)}.outline-pink-6\/0{outline-color:rgb(var(--pink-6)/0)}.outline-pink-6\/10{outline-color:rgb(var(--pink-6)/.1)}.outline-pink-6\/100{outline-color:rgb(var(--pink-6)/1)}.outline-pink-6\/20{outline-color:rgb(var(--pink-6)/.2)}.outline-pink-6\/25{outline-color:rgb(var(--pink-6)/.25)}.outline-pink-6\/30{outline-color:rgb(var(--pink-6)/.3)}.outline-pink-6\/40{outline-color:rgb(var(--pink-6)/.4)}.outline-pink-6\/5{outline-color:rgb(var(--pink-6)/.05)}.outline-pink-6\/50{outline-color:rgb(var(--pink-6)/.5)}.outline-pink-6\/60{outline-color:rgb(var(--pink-6)/.6)}.outline-pink-6\/70{outline-color:rgb(var(--pink-6)/.7)}.outline-pink-6\/75{outline-color:rgb(var(--pink-6)/.75)}.outline-pink-6\/80{outline-color:rgb(var(--pink-6)/.8)}.outline-pink-6\/90{outline-color:rgb(var(--pink-6)/.9)}.outline-pink-6\/95{outline-color:rgb(var(--pink-6)/.95)}.outline-pink-7\/0{outline-color:rgb(var(--pink-7)/0)}.outline-pink-7\/10{outline-color:rgb(var(--pink-7)/.1)}.outline-pink-7\/100{outline-color:rgb(var(--pink-7)/1)}.outline-pink-7\/20{outline-color:rgb(var(--pink-7)/.2)}.outline-pink-7\/25{outline-color:rgb(var(--pink-7)/.25)}.outline-pink-7\/30{outline-color:rgb(var(--pink-7)/.3)}.outline-pink-7\/40{outline-color:rgb(var(--pink-7)/.4)}.outline-pink-7\/5{outline-color:rgb(var(--pink-7)/.05)}.outline-pink-7\/50{outline-color:rgb(var(--pink-7)/.5)}.outline-pink-7\/60{outline-color:rgb(var(--pink-7)/.6)}.outline-pink-7\/70{outline-color:rgb(var(--pink-7)/.7)}.outline-pink-7\/75{outline-color:rgb(var(--pink-7)/.75)}.outline-pink-7\/80{outline-color:rgb(var(--pink-7)/.8)}.outline-pink-7\/90{outline-color:rgb(var(--pink-7)/.9)}.outline-pink-7\/95{outline-color:rgb(var(--pink-7)/.95)}.outline-pink-8\/0{outline-color:rgb(var(--pink-8)/0)}.outline-pink-8\/10{outline-color:rgb(var(--pink-8)/.1)}.outline-pink-8\/100{outline-color:rgb(var(--pink-8)/1)}.outline-pink-8\/20{outline-color:rgb(var(--pink-8)/.2)}.outline-pink-8\/25{outline-color:rgb(var(--pink-8)/.25)}.outline-pink-8\/30{outline-color:rgb(var(--pink-8)/.3)}.outline-pink-8\/40{outline-color:rgb(var(--pink-8)/.4)}.outline-pink-8\/5{outline-color:rgb(var(--pink-8)/.05)}.outline-pink-8\/50{outline-color:rgb(var(--pink-8)/.5)}.outline-pink-8\/60{outline-color:rgb(var(--pink-8)/.6)}.outline-pink-8\/70{outline-color:rgb(var(--pink-8)/.7)}.outline-pink-8\/75{outline-color:rgb(var(--pink-8)/.75)}.outline-pink-8\/80{outline-color:rgb(var(--pink-8)/.8)}.outline-pink-8\/90{outline-color:rgb(var(--pink-8)/.9)}.outline-pink-8\/95{outline-color:rgb(var(--pink-8)/.95)}.outline-pink-9\/0{outline-color:rgb(var(--pink-9)/0)}.outline-pink-9\/10{outline-color:rgb(var(--pink-9)/.1)}.outline-pink-9\/100{outline-color:rgb(var(--pink-9)/1)}.outline-pink-9\/20{outline-color:rgb(var(--pink-9)/.2)}.outline-pink-9\/25{outline-color:rgb(var(--pink-9)/.25)}.outline-pink-9\/30{outline-color:rgb(var(--pink-9)/.3)}.outline-pink-9\/40{outline-color:rgb(var(--pink-9)/.4)}.outline-pink-9\/5{outline-color:rgb(var(--pink-9)/.05)}.outline-pink-9\/50{outline-color:rgb(var(--pink-9)/.5)}.outline-pink-9\/60{outline-color:rgb(var(--pink-9)/.6)}.outline-pink-9\/70{outline-color:rgb(var(--pink-9)/.7)}.outline-pink-9\/75{outline-color:rgb(var(--pink-9)/.75)}.outline-pink-9\/80{outline-color:rgb(var(--pink-9)/.8)}.outline-pink-9\/90{outline-color:rgb(var(--pink-9)/.9)}.outline-pink-9\/95{outline-color:rgb(var(--pink-9)/.95)}.outline-primary{outline-color:rgb(var(--primary))}.outline-primary\/0{outline-color:rgb(var(--primary)/0)}.outline-primary\/10{outline-color:rgb(var(--primary)/.1)}.outline-primary\/100{outline-color:rgb(var(--primary)/1)}.outline-primary\/20{outline-color:rgb(var(--primary)/.2)}.outline-primary\/25{outline-color:rgb(var(--primary)/.25)}.outline-primary\/30{outline-color:rgb(var(--primary)/.3)}.outline-primary\/40{outline-color:rgb(var(--primary)/.4)}.outline-primary\/5{outline-color:rgb(var(--primary)/.05)}.outline-primary\/50{outline-color:rgb(var(--primary)/.5)}.outline-primary\/60{outline-color:rgb(var(--primary)/.6)}.outline-primary\/70{outline-color:rgb(var(--primary)/.7)}.outline-primary\/75{outline-color:rgb(var(--primary)/.75)}.outline-primary\/80{outline-color:rgb(var(--primary)/.8)}.outline-primary\/90{outline-color:rgb(var(--primary)/.9)}.outline-primary\/95{outline-color:rgb(var(--primary)/.95)}.outline-purple-1\/0{outline-color:rgb(var(--purple-1)/0)}.outline-purple-1\/10{outline-color:rgb(var(--purple-1)/.1)}.outline-purple-1\/100{outline-color:rgb(var(--purple-1)/1)}.outline-purple-1\/20{outline-color:rgb(var(--purple-1)/.2)}.outline-purple-1\/25{outline-color:rgb(var(--purple-1)/.25)}.outline-purple-1\/30{outline-color:rgb(var(--purple-1)/.3)}.outline-purple-1\/40{outline-color:rgb(var(--purple-1)/.4)}.outline-purple-1\/5{outline-color:rgb(var(--purple-1)/.05)}.outline-purple-1\/50{outline-color:rgb(var(--purple-1)/.5)}.outline-purple-1\/60{outline-color:rgb(var(--purple-1)/.6)}.outline-purple-1\/70{outline-color:rgb(var(--purple-1)/.7)}.outline-purple-1\/75{outline-color:rgb(var(--purple-1)/.75)}.outline-purple-1\/80{outline-color:rgb(var(--purple-1)/.8)}.outline-purple-1\/90{outline-color:rgb(var(--purple-1)/.9)}.outline-purple-1\/95{outline-color:rgb(var(--purple-1)/.95)}.outline-purple-10\/0{outline-color:rgb(var(--purple-10)/0)}.outline-purple-10\/10{outline-color:rgb(var(--purple-10)/.1)}.outline-purple-10\/100{outline-color:rgb(var(--purple-10)/1)}.outline-purple-10\/20{outline-color:rgb(var(--purple-10)/.2)}.outline-purple-10\/25{outline-color:rgb(var(--purple-10)/.25)}.outline-purple-10\/30{outline-color:rgb(var(--purple-10)/.3)}.outline-purple-10\/40{outline-color:rgb(var(--purple-10)/.4)}.outline-purple-10\/5{outline-color:rgb(var(--purple-10)/.05)}.outline-purple-10\/50{outline-color:rgb(var(--purple-10)/.5)}.outline-purple-10\/60{outline-color:rgb(var(--purple-10)/.6)}.outline-purple-10\/70{outline-color:rgb(var(--purple-10)/.7)}.outline-purple-10\/75{outline-color:rgb(var(--purple-10)/.75)}.outline-purple-10\/80{outline-color:rgb(var(--purple-10)/.8)}.outline-purple-10\/90{outline-color:rgb(var(--purple-10)/.9)}.outline-purple-10\/95{outline-color:rgb(var(--purple-10)/.95)}.outline-purple-2\/0{outline-color:rgb(var(--purple-2)/0)}.outline-purple-2\/10{outline-color:rgb(var(--purple-2)/.1)}.outline-purple-2\/100{outline-color:rgb(var(--purple-2)/1)}.outline-purple-2\/20{outline-color:rgb(var(--purple-2)/.2)}.outline-purple-2\/25{outline-color:rgb(var(--purple-2)/.25)}.outline-purple-2\/30{outline-color:rgb(var(--purple-2)/.3)}.outline-purple-2\/40{outline-color:rgb(var(--purple-2)/.4)}.outline-purple-2\/5{outline-color:rgb(var(--purple-2)/.05)}.outline-purple-2\/50{outline-color:rgb(var(--purple-2)/.5)}.outline-purple-2\/60{outline-color:rgb(var(--purple-2)/.6)}.outline-purple-2\/70{outline-color:rgb(var(--purple-2)/.7)}.outline-purple-2\/75{outline-color:rgb(var(--purple-2)/.75)}.outline-purple-2\/80{outline-color:rgb(var(--purple-2)/.8)}.outline-purple-2\/90{outline-color:rgb(var(--purple-2)/.9)}.outline-purple-2\/95{outline-color:rgb(var(--purple-2)/.95)}.outline-purple-3\/0{outline-color:rgb(var(--purple-3)/0)}.outline-purple-3\/10{outline-color:rgb(var(--purple-3)/.1)}.outline-purple-3\/100{outline-color:rgb(var(--purple-3)/1)}.outline-purple-3\/20{outline-color:rgb(var(--purple-3)/.2)}.outline-purple-3\/25{outline-color:rgb(var(--purple-3)/.25)}.outline-purple-3\/30{outline-color:rgb(var(--purple-3)/.3)}.outline-purple-3\/40{outline-color:rgb(var(--purple-3)/.4)}.outline-purple-3\/5{outline-color:rgb(var(--purple-3)/.05)}.outline-purple-3\/50{outline-color:rgb(var(--purple-3)/.5)}.outline-purple-3\/60{outline-color:rgb(var(--purple-3)/.6)}.outline-purple-3\/70{outline-color:rgb(var(--purple-3)/.7)}.outline-purple-3\/75{outline-color:rgb(var(--purple-3)/.75)}.outline-purple-3\/80{outline-color:rgb(var(--purple-3)/.8)}.outline-purple-3\/90{outline-color:rgb(var(--purple-3)/.9)}.outline-purple-3\/95{outline-color:rgb(var(--purple-3)/.95)}.outline-purple-4\/0{outline-color:rgb(var(--purple-4)/0)}.outline-purple-4\/10{outline-color:rgb(var(--purple-4)/.1)}.outline-purple-4\/100{outline-color:rgb(var(--purple-4)/1)}.outline-purple-4\/20{outline-color:rgb(var(--purple-4)/.2)}.outline-purple-4\/25{outline-color:rgb(var(--purple-4)/.25)}.outline-purple-4\/30{outline-color:rgb(var(--purple-4)/.3)}.outline-purple-4\/40{outline-color:rgb(var(--purple-4)/.4)}.outline-purple-4\/5{outline-color:rgb(var(--purple-4)/.05)}.outline-purple-4\/50{outline-color:rgb(var(--purple-4)/.5)}.outline-purple-4\/60{outline-color:rgb(var(--purple-4)/.6)}.outline-purple-4\/70{outline-color:rgb(var(--purple-4)/.7)}.outline-purple-4\/75{outline-color:rgb(var(--purple-4)/.75)}.outline-purple-4\/80{outline-color:rgb(var(--purple-4)/.8)}.outline-purple-4\/90{outline-color:rgb(var(--purple-4)/.9)}.outline-purple-4\/95{outline-color:rgb(var(--purple-4)/.95)}.outline-purple-5\/0{outline-color:rgb(var(--purple-5)/0)}.outline-purple-5\/10{outline-color:rgb(var(--purple-5)/.1)}.outline-purple-5\/100{outline-color:rgb(var(--purple-5)/1)}.outline-purple-5\/20{outline-color:rgb(var(--purple-5)/.2)}.outline-purple-5\/25{outline-color:rgb(var(--purple-5)/.25)}.outline-purple-5\/30{outline-color:rgb(var(--purple-5)/.3)}.outline-purple-5\/40{outline-color:rgb(var(--purple-5)/.4)}.outline-purple-5\/5{outline-color:rgb(var(--purple-5)/.05)}.outline-purple-5\/50{outline-color:rgb(var(--purple-5)/.5)}.outline-purple-5\/60{outline-color:rgb(var(--purple-5)/.6)}.outline-purple-5\/70{outline-color:rgb(var(--purple-5)/.7)}.outline-purple-5\/75{outline-color:rgb(var(--purple-5)/.75)}.outline-purple-5\/80{outline-color:rgb(var(--purple-5)/.8)}.outline-purple-5\/90{outline-color:rgb(var(--purple-5)/.9)}.outline-purple-5\/95{outline-color:rgb(var(--purple-5)/.95)}.outline-purple-6\/0{outline-color:rgb(var(--purple-6)/0)}.outline-purple-6\/10{outline-color:rgb(var(--purple-6)/.1)}.outline-purple-6\/100{outline-color:rgb(var(--purple-6)/1)}.outline-purple-6\/20{outline-color:rgb(var(--purple-6)/.2)}.outline-purple-6\/25{outline-color:rgb(var(--purple-6)/.25)}.outline-purple-6\/30{outline-color:rgb(var(--purple-6)/.3)}.outline-purple-6\/40{outline-color:rgb(var(--purple-6)/.4)}.outline-purple-6\/5{outline-color:rgb(var(--purple-6)/.05)}.outline-purple-6\/50{outline-color:rgb(var(--purple-6)/.5)}.outline-purple-6\/60{outline-color:rgb(var(--purple-6)/.6)}.outline-purple-6\/70{outline-color:rgb(var(--purple-6)/.7)}.outline-purple-6\/75{outline-color:rgb(var(--purple-6)/.75)}.outline-purple-6\/80{outline-color:rgb(var(--purple-6)/.8)}.outline-purple-6\/90{outline-color:rgb(var(--purple-6)/.9)}.outline-purple-6\/95{outline-color:rgb(var(--purple-6)/.95)}.outline-purple-7\/0{outline-color:rgb(var(--purple-7)/0)}.outline-purple-7\/10{outline-color:rgb(var(--purple-7)/.1)}.outline-purple-7\/100{outline-color:rgb(var(--purple-7)/1)}.outline-purple-7\/20{outline-color:rgb(var(--purple-7)/.2)}.outline-purple-7\/25{outline-color:rgb(var(--purple-7)/.25)}.outline-purple-7\/30{outline-color:rgb(var(--purple-7)/.3)}.outline-purple-7\/40{outline-color:rgb(var(--purple-7)/.4)}.outline-purple-7\/5{outline-color:rgb(var(--purple-7)/.05)}.outline-purple-7\/50{outline-color:rgb(var(--purple-7)/.5)}.outline-purple-7\/60{outline-color:rgb(var(--purple-7)/.6)}.outline-purple-7\/70{outline-color:rgb(var(--purple-7)/.7)}.outline-purple-7\/75{outline-color:rgb(var(--purple-7)/.75)}.outline-purple-7\/80{outline-color:rgb(var(--purple-7)/.8)}.outline-purple-7\/90{outline-color:rgb(var(--purple-7)/.9)}.outline-purple-7\/95{outline-color:rgb(var(--purple-7)/.95)}.outline-purple-8\/0{outline-color:rgb(var(--purple-8)/0)}.outline-purple-8\/10{outline-color:rgb(var(--purple-8)/.1)}.outline-purple-8\/100{outline-color:rgb(var(--purple-8)/1)}.outline-purple-8\/20{outline-color:rgb(var(--purple-8)/.2)}.outline-purple-8\/25{outline-color:rgb(var(--purple-8)/.25)}.outline-purple-8\/30{outline-color:rgb(var(--purple-8)/.3)}.outline-purple-8\/40{outline-color:rgb(var(--purple-8)/.4)}.outline-purple-8\/5{outline-color:rgb(var(--purple-8)/.05)}.outline-purple-8\/50{outline-color:rgb(var(--purple-8)/.5)}.outline-purple-8\/60{outline-color:rgb(var(--purple-8)/.6)}.outline-purple-8\/70{outline-color:rgb(var(--purple-8)/.7)}.outline-purple-8\/75{outline-color:rgb(var(--purple-8)/.75)}.outline-purple-8\/80{outline-color:rgb(var(--purple-8)/.8)}.outline-purple-8\/90{outline-color:rgb(var(--purple-8)/.9)}.outline-purple-8\/95{outline-color:rgb(var(--purple-8)/.95)}.outline-purple-9\/0{outline-color:rgb(var(--purple-9)/0)}.outline-purple-9\/10{outline-color:rgb(var(--purple-9)/.1)}.outline-purple-9\/100{outline-color:rgb(var(--purple-9)/1)}.outline-purple-9\/20{outline-color:rgb(var(--purple-9)/.2)}.outline-purple-9\/25{outline-color:rgb(var(--purple-9)/.25)}.outline-purple-9\/30{outline-color:rgb(var(--purple-9)/.3)}.outline-purple-9\/40{outline-color:rgb(var(--purple-9)/.4)}.outline-purple-9\/5{outline-color:rgb(var(--purple-9)/.05)}.outline-purple-9\/50{outline-color:rgb(var(--purple-9)/.5)}.outline-purple-9\/60{outline-color:rgb(var(--purple-9)/.6)}.outline-purple-9\/70{outline-color:rgb(var(--purple-9)/.7)}.outline-purple-9\/75{outline-color:rgb(var(--purple-9)/.75)}.outline-purple-9\/80{outline-color:rgb(var(--purple-9)/.8)}.outline-purple-9\/90{outline-color:rgb(var(--purple-9)/.9)}.outline-purple-9\/95{outline-color:rgb(var(--purple-9)/.95)}.outline-red-1\/0{outline-color:rgb(var(--red-1)/0)}.outline-red-1\/10{outline-color:rgb(var(--red-1)/.1)}.outline-red-1\/100{outline-color:rgb(var(--red-1)/1)}.outline-red-1\/20{outline-color:rgb(var(--red-1)/.2)}.outline-red-1\/25{outline-color:rgb(var(--red-1)/.25)}.outline-red-1\/30{outline-color:rgb(var(--red-1)/.3)}.outline-red-1\/40{outline-color:rgb(var(--red-1)/.4)}.outline-red-1\/5{outline-color:rgb(var(--red-1)/.05)}.outline-red-1\/50{outline-color:rgb(var(--red-1)/.5)}.outline-red-1\/60{outline-color:rgb(var(--red-1)/.6)}.outline-red-1\/70{outline-color:rgb(var(--red-1)/.7)}.outline-red-1\/75{outline-color:rgb(var(--red-1)/.75)}.outline-red-1\/80{outline-color:rgb(var(--red-1)/.8)}.outline-red-1\/90{outline-color:rgb(var(--red-1)/.9)}.outline-red-1\/95{outline-color:rgb(var(--red-1)/.95)}.outline-red-10\/0{outline-color:rgb(var(--red-10)/0)}.outline-red-10\/10{outline-color:rgb(var(--red-10)/.1)}.outline-red-10\/100{outline-color:rgb(var(--red-10)/1)}.outline-red-10\/20{outline-color:rgb(var(--red-10)/.2)}.outline-red-10\/25{outline-color:rgb(var(--red-10)/.25)}.outline-red-10\/30{outline-color:rgb(var(--red-10)/.3)}.outline-red-10\/40{outline-color:rgb(var(--red-10)/.4)}.outline-red-10\/5{outline-color:rgb(var(--red-10)/.05)}.outline-red-10\/50{outline-color:rgb(var(--red-10)/.5)}.outline-red-10\/60{outline-color:rgb(var(--red-10)/.6)}.outline-red-10\/70{outline-color:rgb(var(--red-10)/.7)}.outline-red-10\/75{outline-color:rgb(var(--red-10)/.75)}.outline-red-10\/80{outline-color:rgb(var(--red-10)/.8)}.outline-red-10\/90{outline-color:rgb(var(--red-10)/.9)}.outline-red-10\/95{outline-color:rgb(var(--red-10)/.95)}.outline-red-2\/0{outline-color:rgb(var(--red-2)/0)}.outline-red-2\/10{outline-color:rgb(var(--red-2)/.1)}.outline-red-2\/100{outline-color:rgb(var(--red-2)/1)}.outline-red-2\/20{outline-color:rgb(var(--red-2)/.2)}.outline-red-2\/25{outline-color:rgb(var(--red-2)/.25)}.outline-red-2\/30{outline-color:rgb(var(--red-2)/.3)}.outline-red-2\/40{outline-color:rgb(var(--red-2)/.4)}.outline-red-2\/5{outline-color:rgb(var(--red-2)/.05)}.outline-red-2\/50{outline-color:rgb(var(--red-2)/.5)}.outline-red-2\/60{outline-color:rgb(var(--red-2)/.6)}.outline-red-2\/70{outline-color:rgb(var(--red-2)/.7)}.outline-red-2\/75{outline-color:rgb(var(--red-2)/.75)}.outline-red-2\/80{outline-color:rgb(var(--red-2)/.8)}.outline-red-2\/90{outline-color:rgb(var(--red-2)/.9)}.outline-red-2\/95{outline-color:rgb(var(--red-2)/.95)}.outline-red-3\/0{outline-color:rgb(var(--red-3)/0)}.outline-red-3\/10{outline-color:rgb(var(--red-3)/.1)}.outline-red-3\/100{outline-color:rgb(var(--red-3)/1)}.outline-red-3\/20{outline-color:rgb(var(--red-3)/.2)}.outline-red-3\/25{outline-color:rgb(var(--red-3)/.25)}.outline-red-3\/30{outline-color:rgb(var(--red-3)/.3)}.outline-red-3\/40{outline-color:rgb(var(--red-3)/.4)}.outline-red-3\/5{outline-color:rgb(var(--red-3)/.05)}.outline-red-3\/50{outline-color:rgb(var(--red-3)/.5)}.outline-red-3\/60{outline-color:rgb(var(--red-3)/.6)}.outline-red-3\/70{outline-color:rgb(var(--red-3)/.7)}.outline-red-3\/75{outline-color:rgb(var(--red-3)/.75)}.outline-red-3\/80{outline-color:rgb(var(--red-3)/.8)}.outline-red-3\/90{outline-color:rgb(var(--red-3)/.9)}.outline-red-3\/95{outline-color:rgb(var(--red-3)/.95)}.outline-red-4\/0{outline-color:rgb(var(--red-4)/0)}.outline-red-4\/10{outline-color:rgb(var(--red-4)/.1)}.outline-red-4\/100{outline-color:rgb(var(--red-4)/1)}.outline-red-4\/20{outline-color:rgb(var(--red-4)/.2)}.outline-red-4\/25{outline-color:rgb(var(--red-4)/.25)}.outline-red-4\/30{outline-color:rgb(var(--red-4)/.3)}.outline-red-4\/40{outline-color:rgb(var(--red-4)/.4)}.outline-red-4\/5{outline-color:rgb(var(--red-4)/.05)}.outline-red-4\/50{outline-color:rgb(var(--red-4)/.5)}.outline-red-4\/60{outline-color:rgb(var(--red-4)/.6)}.outline-red-4\/70{outline-color:rgb(var(--red-4)/.7)}.outline-red-4\/75{outline-color:rgb(var(--red-4)/.75)}.outline-red-4\/80{outline-color:rgb(var(--red-4)/.8)}.outline-red-4\/90{outline-color:rgb(var(--red-4)/.9)}.outline-red-4\/95{outline-color:rgb(var(--red-4)/.95)}.outline-red-5\/0{outline-color:rgb(var(--red-5)/0)}.outline-red-5\/10{outline-color:rgb(var(--red-5)/.1)}.outline-red-5\/100{outline-color:rgb(var(--red-5)/1)}.outline-red-5\/20{outline-color:rgb(var(--red-5)/.2)}.outline-red-5\/25{outline-color:rgb(var(--red-5)/.25)}.outline-red-5\/30{outline-color:rgb(var(--red-5)/.3)}.outline-red-5\/40{outline-color:rgb(var(--red-5)/.4)}.outline-red-5\/5{outline-color:rgb(var(--red-5)/.05)}.outline-red-5\/50{outline-color:rgb(var(--red-5)/.5)}.outline-red-5\/60{outline-color:rgb(var(--red-5)/.6)}.outline-red-5\/70{outline-color:rgb(var(--red-5)/.7)}.outline-red-5\/75{outline-color:rgb(var(--red-5)/.75)}.outline-red-5\/80{outline-color:rgb(var(--red-5)/.8)}.outline-red-5\/90{outline-color:rgb(var(--red-5)/.9)}.outline-red-5\/95{outline-color:rgb(var(--red-5)/.95)}.outline-red-6\/0{outline-color:rgb(var(--red-6)/0)}.outline-red-6\/10{outline-color:rgb(var(--red-6)/.1)}.outline-red-6\/100{outline-color:rgb(var(--red-6)/1)}.outline-red-6\/20{outline-color:rgb(var(--red-6)/.2)}.outline-red-6\/25{outline-color:rgb(var(--red-6)/.25)}.outline-red-6\/30{outline-color:rgb(var(--red-6)/.3)}.outline-red-6\/40{outline-color:rgb(var(--red-6)/.4)}.outline-red-6\/5{outline-color:rgb(var(--red-6)/.05)}.outline-red-6\/50{outline-color:rgb(var(--red-6)/.5)}.outline-red-6\/60{outline-color:rgb(var(--red-6)/.6)}.outline-red-6\/70{outline-color:rgb(var(--red-6)/.7)}.outline-red-6\/75{outline-color:rgb(var(--red-6)/.75)}.outline-red-6\/80{outline-color:rgb(var(--red-6)/.8)}.outline-red-6\/90{outline-color:rgb(var(--red-6)/.9)}.outline-red-6\/95{outline-color:rgb(var(--red-6)/.95)}.outline-red-7\/0{outline-color:rgb(var(--red-7)/0)}.outline-red-7\/10{outline-color:rgb(var(--red-7)/.1)}.outline-red-7\/100{outline-color:rgb(var(--red-7)/1)}.outline-red-7\/20{outline-color:rgb(var(--red-7)/.2)}.outline-red-7\/25{outline-color:rgb(var(--red-7)/.25)}.outline-red-7\/30{outline-color:rgb(var(--red-7)/.3)}.outline-red-7\/40{outline-color:rgb(var(--red-7)/.4)}.outline-red-7\/5{outline-color:rgb(var(--red-7)/.05)}.outline-red-7\/50{outline-color:rgb(var(--red-7)/.5)}.outline-red-7\/60{outline-color:rgb(var(--red-7)/.6)}.outline-red-7\/70{outline-color:rgb(var(--red-7)/.7)}.outline-red-7\/75{outline-color:rgb(var(--red-7)/.75)}.outline-red-7\/80{outline-color:rgb(var(--red-7)/.8)}.outline-red-7\/90{outline-color:rgb(var(--red-7)/.9)}.outline-red-7\/95{outline-color:rgb(var(--red-7)/.95)}.outline-red-8\/0{outline-color:rgb(var(--red-8)/0)}.outline-red-8\/10{outline-color:rgb(var(--red-8)/.1)}.outline-red-8\/100{outline-color:rgb(var(--red-8)/1)}.outline-red-8\/20{outline-color:rgb(var(--red-8)/.2)}.outline-red-8\/25{outline-color:rgb(var(--red-8)/.25)}.outline-red-8\/30{outline-color:rgb(var(--red-8)/.3)}.outline-red-8\/40{outline-color:rgb(var(--red-8)/.4)}.outline-red-8\/5{outline-color:rgb(var(--red-8)/.05)}.outline-red-8\/50{outline-color:rgb(var(--red-8)/.5)}.outline-red-8\/60{outline-color:rgb(var(--red-8)/.6)}.outline-red-8\/70{outline-color:rgb(var(--red-8)/.7)}.outline-red-8\/75{outline-color:rgb(var(--red-8)/.75)}.outline-red-8\/80{outline-color:rgb(var(--red-8)/.8)}.outline-red-8\/90{outline-color:rgb(var(--red-8)/.9)}.outline-red-8\/95{outline-color:rgb(var(--red-8)/.95)}.outline-red-9\/0{outline-color:rgb(var(--red-9)/0)}.outline-red-9\/10{outline-color:rgb(var(--red-9)/.1)}.outline-red-9\/100{outline-color:rgb(var(--red-9)/1)}.outline-red-9\/20{outline-color:rgb(var(--red-9)/.2)}.outline-red-9\/25{outline-color:rgb(var(--red-9)/.25)}.outline-red-9\/30{outline-color:rgb(var(--red-9)/.3)}.outline-red-9\/40{outline-color:rgb(var(--red-9)/.4)}.outline-red-9\/5{outline-color:rgb(var(--red-9)/.05)}.outline-red-9\/50{outline-color:rgb(var(--red-9)/.5)}.outline-red-9\/60{outline-color:rgb(var(--red-9)/.6)}.outline-red-9\/70{outline-color:rgb(var(--red-9)/.7)}.outline-red-9\/75{outline-color:rgb(var(--red-9)/.75)}.outline-red-9\/80{outline-color:rgb(var(--red-9)/.8)}.outline-red-9\/90{outline-color:rgb(var(--red-9)/.9)}.outline-red-9\/95{outline-color:rgb(var(--red-9)/.95)}.outline-secondary{outline-color:rgb(var(--secondary))}.outline-secondary\/0{outline-color:rgb(var(--secondary)/0)}.outline-secondary\/10{outline-color:rgb(var(--secondary)/.1)}.outline-secondary\/100{outline-color:rgb(var(--secondary)/1)}.outline-secondary\/20{outline-color:rgb(var(--secondary)/.2)}.outline-secondary\/25{outline-color:rgb(var(--secondary)/.25)}.outline-secondary\/30{outline-color:rgb(var(--secondary)/.3)}.outline-secondary\/40{outline-color:rgb(var(--secondary)/.4)}.outline-secondary\/5{outline-color:rgb(var(--secondary)/.05)}.outline-secondary\/50{outline-color:rgb(var(--secondary)/.5)}.outline-secondary\/60{outline-color:rgb(var(--secondary)/.6)}.outline-secondary\/70{outline-color:rgb(var(--secondary)/.7)}.outline-secondary\/75{outline-color:rgb(var(--secondary)/.75)}.outline-secondary\/80{outline-color:rgb(var(--secondary)/.8)}.outline-secondary\/90{outline-color:rgb(var(--secondary)/.9)}.outline-secondary\/95{outline-color:rgb(var(--secondary)/.95)}.outline-slate-1\/0{outline-color:rgb(var(--slate-1)/0)}.outline-slate-1\/10{outline-color:rgb(var(--slate-1)/.1)}.outline-slate-1\/100{outline-color:rgb(var(--slate-1)/1)}.outline-slate-1\/20{outline-color:rgb(var(--slate-1)/.2)}.outline-slate-1\/25{outline-color:rgb(var(--slate-1)/.25)}.outline-slate-1\/30{outline-color:rgb(var(--slate-1)/.3)}.outline-slate-1\/40{outline-color:rgb(var(--slate-1)/.4)}.outline-slate-1\/5{outline-color:rgb(var(--slate-1)/.05)}.outline-slate-1\/50{outline-color:rgb(var(--slate-1)/.5)}.outline-slate-1\/60{outline-color:rgb(var(--slate-1)/.6)}.outline-slate-1\/70{outline-color:rgb(var(--slate-1)/.7)}.outline-slate-1\/75{outline-color:rgb(var(--slate-1)/.75)}.outline-slate-1\/80{outline-color:rgb(var(--slate-1)/.8)}.outline-slate-1\/90{outline-color:rgb(var(--slate-1)/.9)}.outline-slate-1\/95{outline-color:rgb(var(--slate-1)/.95)}.outline-slate-10\/0{outline-color:rgb(var(--slate-10)/0)}.outline-slate-10\/10{outline-color:rgb(var(--slate-10)/.1)}.outline-slate-10\/100{outline-color:rgb(var(--slate-10)/1)}.outline-slate-10\/20{outline-color:rgb(var(--slate-10)/.2)}.outline-slate-10\/25{outline-color:rgb(var(--slate-10)/.25)}.outline-slate-10\/30{outline-color:rgb(var(--slate-10)/.3)}.outline-slate-10\/40{outline-color:rgb(var(--slate-10)/.4)}.outline-slate-10\/5{outline-color:rgb(var(--slate-10)/.05)}.outline-slate-10\/50{outline-color:rgb(var(--slate-10)/.5)}.outline-slate-10\/60{outline-color:rgb(var(--slate-10)/.6)}.outline-slate-10\/70{outline-color:rgb(var(--slate-10)/.7)}.outline-slate-10\/75{outline-color:rgb(var(--slate-10)/.75)}.outline-slate-10\/80{outline-color:rgb(var(--slate-10)/.8)}.outline-slate-10\/90{outline-color:rgb(var(--slate-10)/.9)}.outline-slate-10\/95{outline-color:rgb(var(--slate-10)/.95)}.outline-slate-2\/0{outline-color:rgb(var(--slate-2)/0)}.outline-slate-2\/10{outline-color:rgb(var(--slate-2)/.1)}.outline-slate-2\/100{outline-color:rgb(var(--slate-2)/1)}.outline-slate-2\/20{outline-color:rgb(var(--slate-2)/.2)}.outline-slate-2\/25{outline-color:rgb(var(--slate-2)/.25)}.outline-slate-2\/30{outline-color:rgb(var(--slate-2)/.3)}.outline-slate-2\/40{outline-color:rgb(var(--slate-2)/.4)}.outline-slate-2\/5{outline-color:rgb(var(--slate-2)/.05)}.outline-slate-2\/50{outline-color:rgb(var(--slate-2)/.5)}.outline-slate-2\/60{outline-color:rgb(var(--slate-2)/.6)}.outline-slate-2\/70{outline-color:rgb(var(--slate-2)/.7)}.outline-slate-2\/75{outline-color:rgb(var(--slate-2)/.75)}.outline-slate-2\/80{outline-color:rgb(var(--slate-2)/.8)}.outline-slate-2\/90{outline-color:rgb(var(--slate-2)/.9)}.outline-slate-2\/95{outline-color:rgb(var(--slate-2)/.95)}.outline-slate-3\/0{outline-color:rgb(var(--slate-3)/0)}.outline-slate-3\/10{outline-color:rgb(var(--slate-3)/.1)}.outline-slate-3\/100{outline-color:rgb(var(--slate-3)/1)}.outline-slate-3\/20{outline-color:rgb(var(--slate-3)/.2)}.outline-slate-3\/25{outline-color:rgb(var(--slate-3)/.25)}.outline-slate-3\/30{outline-color:rgb(var(--slate-3)/.3)}.outline-slate-3\/40{outline-color:rgb(var(--slate-3)/.4)}.outline-slate-3\/5{outline-color:rgb(var(--slate-3)/.05)}.outline-slate-3\/50{outline-color:rgb(var(--slate-3)/.5)}.outline-slate-3\/60{outline-color:rgb(var(--slate-3)/.6)}.outline-slate-3\/70{outline-color:rgb(var(--slate-3)/.7)}.outline-slate-3\/75{outline-color:rgb(var(--slate-3)/.75)}.outline-slate-3\/80{outline-color:rgb(var(--slate-3)/.8)}.outline-slate-3\/90{outline-color:rgb(var(--slate-3)/.9)}.outline-slate-3\/95{outline-color:rgb(var(--slate-3)/.95)}.outline-slate-4\/0{outline-color:rgb(var(--slate-4)/0)}.outline-slate-4\/10{outline-color:rgb(var(--slate-4)/.1)}.outline-slate-4\/100{outline-color:rgb(var(--slate-4)/1)}.outline-slate-4\/20{outline-color:rgb(var(--slate-4)/.2)}.outline-slate-4\/25{outline-color:rgb(var(--slate-4)/.25)}.outline-slate-4\/30{outline-color:rgb(var(--slate-4)/.3)}.outline-slate-4\/40{outline-color:rgb(var(--slate-4)/.4)}.outline-slate-4\/5{outline-color:rgb(var(--slate-4)/.05)}.outline-slate-4\/50{outline-color:rgb(var(--slate-4)/.5)}.outline-slate-4\/60{outline-color:rgb(var(--slate-4)/.6)}.outline-slate-4\/70{outline-color:rgb(var(--slate-4)/.7)}.outline-slate-4\/75{outline-color:rgb(var(--slate-4)/.75)}.outline-slate-4\/80{outline-color:rgb(var(--slate-4)/.8)}.outline-slate-4\/90{outline-color:rgb(var(--slate-4)/.9)}.outline-slate-4\/95{outline-color:rgb(var(--slate-4)/.95)}.outline-slate-5\/0{outline-color:rgb(var(--slate-5)/0)}.outline-slate-5\/10{outline-color:rgb(var(--slate-5)/.1)}.outline-slate-5\/100{outline-color:rgb(var(--slate-5)/1)}.outline-slate-5\/20{outline-color:rgb(var(--slate-5)/.2)}.outline-slate-5\/25{outline-color:rgb(var(--slate-5)/.25)}.outline-slate-5\/30{outline-color:rgb(var(--slate-5)/.3)}.outline-slate-5\/40{outline-color:rgb(var(--slate-5)/.4)}.outline-slate-5\/5{outline-color:rgb(var(--slate-5)/.05)}.outline-slate-5\/50{outline-color:rgb(var(--slate-5)/.5)}.outline-slate-5\/60{outline-color:rgb(var(--slate-5)/.6)}.outline-slate-5\/70{outline-color:rgb(var(--slate-5)/.7)}.outline-slate-5\/75{outline-color:rgb(var(--slate-5)/.75)}.outline-slate-5\/80{outline-color:rgb(var(--slate-5)/.8)}.outline-slate-5\/90{outline-color:rgb(var(--slate-5)/.9)}.outline-slate-5\/95{outline-color:rgb(var(--slate-5)/.95)}.outline-slate-6\/0{outline-color:rgb(var(--slate-6)/0)}.outline-slate-6\/10{outline-color:rgb(var(--slate-6)/.1)}.outline-slate-6\/100{outline-color:rgb(var(--slate-6)/1)}.outline-slate-6\/20{outline-color:rgb(var(--slate-6)/.2)}.outline-slate-6\/25{outline-color:rgb(var(--slate-6)/.25)}.outline-slate-6\/30{outline-color:rgb(var(--slate-6)/.3)}.outline-slate-6\/40{outline-color:rgb(var(--slate-6)/.4)}.outline-slate-6\/5{outline-color:rgb(var(--slate-6)/.05)}.outline-slate-6\/50{outline-color:rgb(var(--slate-6)/.5)}.outline-slate-6\/60{outline-color:rgb(var(--slate-6)/.6)}.outline-slate-6\/70{outline-color:rgb(var(--slate-6)/.7)}.outline-slate-6\/75{outline-color:rgb(var(--slate-6)/.75)}.outline-slate-6\/80{outline-color:rgb(var(--slate-6)/.8)}.outline-slate-6\/90{outline-color:rgb(var(--slate-6)/.9)}.outline-slate-6\/95{outline-color:rgb(var(--slate-6)/.95)}.outline-slate-7\/0{outline-color:rgb(var(--slate-7)/0)}.outline-slate-7\/10{outline-color:rgb(var(--slate-7)/.1)}.outline-slate-7\/100{outline-color:rgb(var(--slate-7)/1)}.outline-slate-7\/20{outline-color:rgb(var(--slate-7)/.2)}.outline-slate-7\/25{outline-color:rgb(var(--slate-7)/.25)}.outline-slate-7\/30{outline-color:rgb(var(--slate-7)/.3)}.outline-slate-7\/40{outline-color:rgb(var(--slate-7)/.4)}.outline-slate-7\/5{outline-color:rgb(var(--slate-7)/.05)}.outline-slate-7\/50{outline-color:rgb(var(--slate-7)/.5)}.outline-slate-7\/60{outline-color:rgb(var(--slate-7)/.6)}.outline-slate-7\/70{outline-color:rgb(var(--slate-7)/.7)}.outline-slate-7\/75{outline-color:rgb(var(--slate-7)/.75)}.outline-slate-7\/80{outline-color:rgb(var(--slate-7)/.8)}.outline-slate-7\/90{outline-color:rgb(var(--slate-7)/.9)}.outline-slate-7\/95{outline-color:rgb(var(--slate-7)/.95)}.outline-slate-8\/0{outline-color:rgb(var(--slate-8)/0)}.outline-slate-8\/10{outline-color:rgb(var(--slate-8)/.1)}.outline-slate-8\/100{outline-color:rgb(var(--slate-8)/1)}.outline-slate-8\/20{outline-color:rgb(var(--slate-8)/.2)}.outline-slate-8\/25{outline-color:rgb(var(--slate-8)/.25)}.outline-slate-8\/30{outline-color:rgb(var(--slate-8)/.3)}.outline-slate-8\/40{outline-color:rgb(var(--slate-8)/.4)}.outline-slate-8\/5{outline-color:rgb(var(--slate-8)/.05)}.outline-slate-8\/50{outline-color:rgb(var(--slate-8)/.5)}.outline-slate-8\/60{outline-color:rgb(var(--slate-8)/.6)}.outline-slate-8\/70{outline-color:rgb(var(--slate-8)/.7)}.outline-slate-8\/75{outline-color:rgb(var(--slate-8)/.75)}.outline-slate-8\/80{outline-color:rgb(var(--slate-8)/.8)}.outline-slate-8\/90{outline-color:rgb(var(--slate-8)/.9)}.outline-slate-8\/95{outline-color:rgb(var(--slate-8)/.95)}.outline-slate-9\/0{outline-color:rgb(var(--slate-9)/0)}.outline-slate-9\/10{outline-color:rgb(var(--slate-9)/.1)}.outline-slate-9\/100{outline-color:rgb(var(--slate-9)/1)}.outline-slate-9\/20{outline-color:rgb(var(--slate-9)/.2)}.outline-slate-9\/25{outline-color:rgb(var(--slate-9)/.25)}.outline-slate-9\/30{outline-color:rgb(var(--slate-9)/.3)}.outline-slate-9\/40{outline-color:rgb(var(--slate-9)/.4)}.outline-slate-9\/5{outline-color:rgb(var(--slate-9)/.05)}.outline-slate-9\/50{outline-color:rgb(var(--slate-9)/.5)}.outline-slate-9\/60{outline-color:rgb(var(--slate-9)/.6)}.outline-slate-9\/70{outline-color:rgb(var(--slate-9)/.7)}.outline-slate-9\/75{outline-color:rgb(var(--slate-9)/.75)}.outline-slate-9\/80{outline-color:rgb(var(--slate-9)/.8)}.outline-slate-9\/90{outline-color:rgb(var(--slate-9)/.9)}.outline-slate-9\/95{outline-color:rgb(var(--slate-9)/.95)}.outline-success{outline-color:rgb(var(--success))}.outline-success\/0{outline-color:rgb(var(--success)/0)}.outline-success\/10{outline-color:rgb(var(--success)/.1)}.outline-success\/100{outline-color:rgb(var(--success)/1)}.outline-success\/20{outline-color:rgb(var(--success)/.2)}.outline-success\/25{outline-color:rgb(var(--success)/.25)}.outline-success\/30{outline-color:rgb(var(--success)/.3)}.outline-success\/40{outline-color:rgb(var(--success)/.4)}.outline-success\/5{outline-color:rgb(var(--success)/.05)}.outline-success\/50{outline-color:rgb(var(--success)/.5)}.outline-success\/60{outline-color:rgb(var(--success)/.6)}.outline-success\/70{outline-color:rgb(var(--success)/.7)}.outline-success\/75{outline-color:rgb(var(--success)/.75)}.outline-success\/80{outline-color:rgb(var(--success)/.8)}.outline-success\/90{outline-color:rgb(var(--success)/.9)}.outline-success\/95{outline-color:rgb(var(--success)/.95)}.outline-warning{outline-color:rgb(var(--warning))}.outline-warning\/0{outline-color:rgb(var(--warning)/0)}.outline-warning\/10{outline-color:rgb(var(--warning)/.1)}.outline-warning\/100{outline-color:rgb(var(--warning)/1)}.outline-warning\/20{outline-color:rgb(var(--warning)/.2)}.outline-warning\/25{outline-color:rgb(var(--warning)/.25)}.outline-warning\/30{outline-color:rgb(var(--warning)/.3)}.outline-warning\/40{outline-color:rgb(var(--warning)/.4)}.outline-warning\/5{outline-color:rgb(var(--warning)/.05)}.outline-warning\/50{outline-color:rgb(var(--warning)/.5)}.outline-warning\/60{outline-color:rgb(var(--warning)/.6)}.outline-warning\/70{outline-color:rgb(var(--warning)/.7)}.outline-warning\/75{outline-color:rgb(var(--warning)/.75)}.outline-warning\/80{outline-color:rgb(var(--warning)/.8)}.outline-warning\/90{outline-color:rgb(var(--warning)/.9)}.outline-warning\/95{outline-color:rgb(var(--warning)/.95)}.outline-white{outline-color:#fff}.outline-white\/0{outline-color:hsla(0,0%,100%,0)}.outline-white\/10{outline-color:hsla(0,0%,100%,.1)}.outline-white\/100{outline-color:#fff}.outline-white\/20{outline-color:hsla(0,0%,100%,.2)}.outline-white\/25{outline-color:hsla(0,0%,100%,.25)}.outline-white\/30{outline-color:hsla(0,0%,100%,.3)}.outline-white\/40{outline-color:hsla(0,0%,100%,.4)}.outline-white\/5{outline-color:hsla(0,0%,100%,.05)}.outline-white\/50{outline-color:hsla(0,0%,100%,.5)}.outline-white\/60{outline-color:hsla(0,0%,100%,.6)}.outline-white\/70{outline-color:hsla(0,0%,100%,.7)}.outline-white\/75{outline-color:hsla(0,0%,100%,.75)}.outline-white\/80{outline-color:hsla(0,0%,100%,.8)}.outline-white\/90{outline-color:hsla(0,0%,100%,.9)}.outline-white\/95{outline-color:hsla(0,0%,100%,.95)}.outline-whiteInverted{outline-color:rgb(var(--whiteInverted))}.outline-whiteInverted\/0{outline-color:rgb(var(--whiteInverted)/0)}.outline-whiteInverted\/10{outline-color:rgb(var(--whiteInverted)/.1)}.outline-whiteInverted\/100{outline-color:rgb(var(--whiteInverted)/1)}.outline-whiteInverted\/20{outline-color:rgb(var(--whiteInverted)/.2)}.outline-whiteInverted\/25{outline-color:rgb(var(--whiteInverted)/.25)}.outline-whiteInverted\/30{outline-color:rgb(var(--whiteInverted)/.3)}.outline-whiteInverted\/40{outline-color:rgb(var(--whiteInverted)/.4)}.outline-whiteInverted\/5{outline-color:rgb(var(--whiteInverted)/.05)}.outline-whiteInverted\/50{outline-color:rgb(var(--whiteInverted)/.5)}.outline-whiteInverted\/60{outline-color:rgb(var(--whiteInverted)/.6)}.outline-whiteInverted\/70{outline-color:rgb(var(--whiteInverted)/.7)}.outline-whiteInverted\/75{outline-color:rgb(var(--whiteInverted)/.75)}.outline-whiteInverted\/80{outline-color:rgb(var(--whiteInverted)/.8)}.outline-whiteInverted\/90{outline-color:rgb(var(--whiteInverted)/.9)}.outline-whiteInverted\/95{outline-color:rgb(var(--whiteInverted)/.95)}.hover\:border-backgroundPrimary:hover{--tw-border-opacity:1;border-color:rgb(var(--backgroundPrimary)/var(--tw-border-opacity))}.hover\:border-backgroundPrimary\/0:hover{border-color:rgb(var(--backgroundPrimary)/0)}.hover\:border-backgroundPrimary\/10:hover{border-color:rgb(var(--backgroundPrimary)/.1)}.hover\:border-backgroundPrimary\/100:hover{border-color:rgb(var(--backgroundPrimary)/1)}.hover\:border-backgroundPrimary\/20:hover{border-color:rgb(var(--backgroundPrimary)/.2)}.hover\:border-backgroundPrimary\/25:hover{border-color:rgb(var(--backgroundPrimary)/.25)}.hover\:border-backgroundPrimary\/30:hover{border-color:rgb(var(--backgroundPrimary)/.3)}.hover\:border-backgroundPrimary\/40:hover{border-color:rgb(var(--backgroundPrimary)/.4)}.hover\:border-backgroundPrimary\/5:hover{border-color:rgb(var(--backgroundPrimary)/.05)}.hover\:border-backgroundPrimary\/50:hover{border-color:rgb(var(--backgroundPrimary)/.5)}.hover\:border-backgroundPrimary\/60:hover{border-color:rgb(var(--backgroundPrimary)/.6)}.hover\:border-backgroundPrimary\/70:hover{border-color:rgb(var(--backgroundPrimary)/.7)}.hover\:border-backgroundPrimary\/75:hover{border-color:rgb(var(--backgroundPrimary)/.75)}.hover\:border-backgroundPrimary\/80:hover{border-color:rgb(var(--backgroundPrimary)/.8)}.hover\:border-backgroundPrimary\/90:hover{border-color:rgb(var(--backgroundPrimary)/.9)}.hover\:border-backgroundPrimary\/95:hover{border-color:rgb(var(--backgroundPrimary)/.95)}.hover\:border-backgroundSecondary:hover{--tw-border-opacity:1;border-color:rgb(var(--backgroundSecondary)/var(--tw-border-opacity))}.hover\:border-backgroundSecondary\/0:hover{border-color:rgb(var(--backgroundSecondary)/0)}.hover\:border-backgroundSecondary\/10:hover{border-color:rgb(var(--backgroundSecondary)/.1)}.hover\:border-backgroundSecondary\/100:hover{border-color:rgb(var(--backgroundSecondary)/1)}.hover\:border-backgroundSecondary\/20:hover{border-color:rgb(var(--backgroundSecondary)/.2)}.hover\:border-backgroundSecondary\/25:hover{border-color:rgb(var(--backgroundSecondary)/.25)}.hover\:border-backgroundSecondary\/30:hover{border-color:rgb(var(--backgroundSecondary)/.3)}.hover\:border-backgroundSecondary\/40:hover{border-color:rgb(var(--backgroundSecondary)/.4)}.hover\:border-backgroundSecondary\/5:hover{border-color:rgb(var(--backgroundSecondary)/.05)}.hover\:border-backgroundSecondary\/50:hover{border-color:rgb(var(--backgroundSecondary)/.5)}.hover\:border-backgroundSecondary\/60:hover{border-color:rgb(var(--backgroundSecondary)/.6)}.hover\:border-backgroundSecondary\/70:hover{border-color:rgb(var(--backgroundSecondary)/.7)}.hover\:border-backgroundSecondary\/75:hover{border-color:rgb(var(--backgroundSecondary)/.75)}.hover\:border-backgroundSecondary\/80:hover{border-color:rgb(var(--backgroundSecondary)/.8)}.hover\:border-backgroundSecondary\/90:hover{border-color:rgb(var(--backgroundSecondary)/.9)}.hover\:border-backgroundSecondary\/95:hover{border-color:rgb(var(--backgroundSecondary)/.95)}.hover\:border-black:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.hover\:border-black\/0:hover{border-color:transparent}.hover\:border-black\/10:hover{border-color:rgba(0,0,0,.1)}.hover\:border-black\/100:hover{border-color:#000}.hover\:border-black\/20:hover{border-color:rgba(0,0,0,.2)}.hover\:border-black\/25:hover{border-color:rgba(0,0,0,.25)}.hover\:border-black\/30:hover{border-color:rgba(0,0,0,.3)}.hover\:border-black\/40:hover{border-color:rgba(0,0,0,.4)}.hover\:border-black\/5:hover{border-color:rgba(0,0,0,.05)}.hover\:border-black\/50:hover{border-color:rgba(0,0,0,.5)}.hover\:border-black\/60:hover{border-color:rgba(0,0,0,.6)}.hover\:border-black\/70:hover{border-color:rgba(0,0,0,.7)}.hover\:border-black\/75:hover{border-color:rgba(0,0,0,.75)}.hover\:border-black\/80:hover{border-color:rgba(0,0,0,.8)}.hover\:border-black\/90:hover{border-color:rgba(0,0,0,.9)}.hover\:border-black\/95:hover{border-color:rgba(0,0,0,.95)}.hover\:border-blackInverted:hover{--tw-border-opacity:1;border-color:rgb(var(--blackInverted)/var(--tw-border-opacity))}.hover\:border-blackInverted\/0:hover{border-color:rgb(var(--blackInverted)/0)}.hover\:border-blackInverted\/10:hover{border-color:rgb(var(--blackInverted)/.1)}.hover\:border-blackInverted\/100:hover{border-color:rgb(var(--blackInverted)/1)}.hover\:border-blackInverted\/20:hover{border-color:rgb(var(--blackInverted)/.2)}.hover\:border-blackInverted\/25:hover{border-color:rgb(var(--blackInverted)/.25)}.hover\:border-blackInverted\/30:hover{border-color:rgb(var(--blackInverted)/.3)}.hover\:border-blackInverted\/40:hover{border-color:rgb(var(--blackInverted)/.4)}.hover\:border-blackInverted\/5:hover{border-color:rgb(var(--blackInverted)/.05)}.hover\:border-blackInverted\/50:hover{border-color:rgb(var(--blackInverted)/.5)}.hover\:border-blackInverted\/60:hover{border-color:rgb(var(--blackInverted)/.6)}.hover\:border-blackInverted\/70:hover{border-color:rgb(var(--blackInverted)/.7)}.hover\:border-blackInverted\/75:hover{border-color:rgb(var(--blackInverted)/.75)}.hover\:border-blackInverted\/80:hover{border-color:rgb(var(--blackInverted)/.8)}.hover\:border-blackInverted\/90:hover{border-color:rgb(var(--blackInverted)/.9)}.hover\:border-blackInverted\/95:hover{border-color:rgb(var(--blackInverted)/.95)}.hover\:border-blue-1\/0:hover{border-color:rgb(var(--blue-1)/0)}.hover\:border-blue-1\/10:hover{border-color:rgb(var(--blue-1)/.1)}.hover\:border-blue-1\/100:hover{border-color:rgb(var(--blue-1)/1)}.hover\:border-blue-1\/20:hover{border-color:rgb(var(--blue-1)/.2)}.hover\:border-blue-1\/25:hover{border-color:rgb(var(--blue-1)/.25)}.hover\:border-blue-1\/30:hover{border-color:rgb(var(--blue-1)/.3)}.hover\:border-blue-1\/40:hover{border-color:rgb(var(--blue-1)/.4)}.hover\:border-blue-1\/5:hover{border-color:rgb(var(--blue-1)/.05)}.hover\:border-blue-1\/50:hover{border-color:rgb(var(--blue-1)/.5)}.hover\:border-blue-1\/60:hover{border-color:rgb(var(--blue-1)/.6)}.hover\:border-blue-1\/70:hover{border-color:rgb(var(--blue-1)/.7)}.hover\:border-blue-1\/75:hover{border-color:rgb(var(--blue-1)/.75)}.hover\:border-blue-1\/80:hover{border-color:rgb(var(--blue-1)/.8)}.hover\:border-blue-1\/90:hover{border-color:rgb(var(--blue-1)/.9)}.hover\:border-blue-1\/95:hover{border-color:rgb(var(--blue-1)/.95)}.hover\:border-blue-10\/0:hover{border-color:rgb(var(--blue-10)/0)}.hover\:border-blue-10\/10:hover{border-color:rgb(var(--blue-10)/.1)}.hover\:border-blue-10\/100:hover{border-color:rgb(var(--blue-10)/1)}.hover\:border-blue-10\/20:hover{border-color:rgb(var(--blue-10)/.2)}.hover\:border-blue-10\/25:hover{border-color:rgb(var(--blue-10)/.25)}.hover\:border-blue-10\/30:hover{border-color:rgb(var(--blue-10)/.3)}.hover\:border-blue-10\/40:hover{border-color:rgb(var(--blue-10)/.4)}.hover\:border-blue-10\/5:hover{border-color:rgb(var(--blue-10)/.05)}.hover\:border-blue-10\/50:hover{border-color:rgb(var(--blue-10)/.5)}.hover\:border-blue-10\/60:hover{border-color:rgb(var(--blue-10)/.6)}.hover\:border-blue-10\/70:hover{border-color:rgb(var(--blue-10)/.7)}.hover\:border-blue-10\/75:hover{border-color:rgb(var(--blue-10)/.75)}.hover\:border-blue-10\/80:hover{border-color:rgb(var(--blue-10)/.8)}.hover\:border-blue-10\/90:hover{border-color:rgb(var(--blue-10)/.9)}.hover\:border-blue-10\/95:hover{border-color:rgb(var(--blue-10)/.95)}.hover\:border-blue-2\/0:hover{border-color:rgb(var(--blue-2)/0)}.hover\:border-blue-2\/10:hover{border-color:rgb(var(--blue-2)/.1)}.hover\:border-blue-2\/100:hover{border-color:rgb(var(--blue-2)/1)}.hover\:border-blue-2\/20:hover{border-color:rgb(var(--blue-2)/.2)}.hover\:border-blue-2\/25:hover{border-color:rgb(var(--blue-2)/.25)}.hover\:border-blue-2\/30:hover{border-color:rgb(var(--blue-2)/.3)}.hover\:border-blue-2\/40:hover{border-color:rgb(var(--blue-2)/.4)}.hover\:border-blue-2\/5:hover{border-color:rgb(var(--blue-2)/.05)}.hover\:border-blue-2\/50:hover{border-color:rgb(var(--blue-2)/.5)}.hover\:border-blue-2\/60:hover{border-color:rgb(var(--blue-2)/.6)}.hover\:border-blue-2\/70:hover{border-color:rgb(var(--blue-2)/.7)}.hover\:border-blue-2\/75:hover{border-color:rgb(var(--blue-2)/.75)}.hover\:border-blue-2\/80:hover{border-color:rgb(var(--blue-2)/.8)}.hover\:border-blue-2\/90:hover{border-color:rgb(var(--blue-2)/.9)}.hover\:border-blue-2\/95:hover{border-color:rgb(var(--blue-2)/.95)}.hover\:border-blue-3\/0:hover{border-color:rgb(var(--blue-3)/0)}.hover\:border-blue-3\/10:hover{border-color:rgb(var(--blue-3)/.1)}.hover\:border-blue-3\/100:hover{border-color:rgb(var(--blue-3)/1)}.hover\:border-blue-3\/20:hover{border-color:rgb(var(--blue-3)/.2)}.hover\:border-blue-3\/25:hover{border-color:rgb(var(--blue-3)/.25)}.hover\:border-blue-3\/30:hover{border-color:rgb(var(--blue-3)/.3)}.hover\:border-blue-3\/40:hover{border-color:rgb(var(--blue-3)/.4)}.hover\:border-blue-3\/5:hover{border-color:rgb(var(--blue-3)/.05)}.hover\:border-blue-3\/50:hover{border-color:rgb(var(--blue-3)/.5)}.hover\:border-blue-3\/60:hover{border-color:rgb(var(--blue-3)/.6)}.hover\:border-blue-3\/70:hover{border-color:rgb(var(--blue-3)/.7)}.hover\:border-blue-3\/75:hover{border-color:rgb(var(--blue-3)/.75)}.hover\:border-blue-3\/80:hover{border-color:rgb(var(--blue-3)/.8)}.hover\:border-blue-3\/90:hover{border-color:rgb(var(--blue-3)/.9)}.hover\:border-blue-3\/95:hover{border-color:rgb(var(--blue-3)/.95)}.hover\:border-blue-4\/0:hover{border-color:rgb(var(--blue-4)/0)}.hover\:border-blue-4\/10:hover{border-color:rgb(var(--blue-4)/.1)}.hover\:border-blue-4\/100:hover{border-color:rgb(var(--blue-4)/1)}.hover\:border-blue-4\/20:hover{border-color:rgb(var(--blue-4)/.2)}.hover\:border-blue-4\/25:hover{border-color:rgb(var(--blue-4)/.25)}.hover\:border-blue-4\/30:hover{border-color:rgb(var(--blue-4)/.3)}.hover\:border-blue-4\/40:hover{border-color:rgb(var(--blue-4)/.4)}.hover\:border-blue-4\/5:hover{border-color:rgb(var(--blue-4)/.05)}.hover\:border-blue-4\/50:hover{border-color:rgb(var(--blue-4)/.5)}.hover\:border-blue-4\/60:hover{border-color:rgb(var(--blue-4)/.6)}.hover\:border-blue-4\/70:hover{border-color:rgb(var(--blue-4)/.7)}.hover\:border-blue-4\/75:hover{border-color:rgb(var(--blue-4)/.75)}.hover\:border-blue-4\/80:hover{border-color:rgb(var(--blue-4)/.8)}.hover\:border-blue-4\/90:hover{border-color:rgb(var(--blue-4)/.9)}.hover\:border-blue-4\/95:hover{border-color:rgb(var(--blue-4)/.95)}.hover\:border-blue-5\/0:hover{border-color:rgb(var(--blue-5)/0)}.hover\:border-blue-5\/10:hover{border-color:rgb(var(--blue-5)/.1)}.hover\:border-blue-5\/100:hover{border-color:rgb(var(--blue-5)/1)}.hover\:border-blue-5\/20:hover{border-color:rgb(var(--blue-5)/.2)}.hover\:border-blue-5\/25:hover{border-color:rgb(var(--blue-5)/.25)}.hover\:border-blue-5\/30:hover{border-color:rgb(var(--blue-5)/.3)}.hover\:border-blue-5\/40:hover{border-color:rgb(var(--blue-5)/.4)}.hover\:border-blue-5\/5:hover{border-color:rgb(var(--blue-5)/.05)}.hover\:border-blue-5\/50:hover{border-color:rgb(var(--blue-5)/.5)}.hover\:border-blue-5\/60:hover{border-color:rgb(var(--blue-5)/.6)}.hover\:border-blue-5\/70:hover{border-color:rgb(var(--blue-5)/.7)}.hover\:border-blue-5\/75:hover{border-color:rgb(var(--blue-5)/.75)}.hover\:border-blue-5\/80:hover{border-color:rgb(var(--blue-5)/.8)}.hover\:border-blue-5\/90:hover{border-color:rgb(var(--blue-5)/.9)}.hover\:border-blue-5\/95:hover{border-color:rgb(var(--blue-5)/.95)}.hover\:border-blue-6\/0:hover{border-color:rgb(var(--blue-6)/0)}.hover\:border-blue-6\/10:hover{border-color:rgb(var(--blue-6)/.1)}.hover\:border-blue-6\/100:hover{border-color:rgb(var(--blue-6)/1)}.hover\:border-blue-6\/20:hover{border-color:rgb(var(--blue-6)/.2)}.hover\:border-blue-6\/25:hover{border-color:rgb(var(--blue-6)/.25)}.hover\:border-blue-6\/30:hover{border-color:rgb(var(--blue-6)/.3)}.hover\:border-blue-6\/40:hover{border-color:rgb(var(--blue-6)/.4)}.hover\:border-blue-6\/5:hover{border-color:rgb(var(--blue-6)/.05)}.hover\:border-blue-6\/50:hover{border-color:rgb(var(--blue-6)/.5)}.hover\:border-blue-6\/60:hover{border-color:rgb(var(--blue-6)/.6)}.hover\:border-blue-6\/70:hover{border-color:rgb(var(--blue-6)/.7)}.hover\:border-blue-6\/75:hover{border-color:rgb(var(--blue-6)/.75)}.hover\:border-blue-6\/80:hover{border-color:rgb(var(--blue-6)/.8)}.hover\:border-blue-6\/90:hover{border-color:rgb(var(--blue-6)/.9)}.hover\:border-blue-6\/95:hover{border-color:rgb(var(--blue-6)/.95)}.hover\:border-blue-7\/0:hover{border-color:rgb(var(--blue-7)/0)}.hover\:border-blue-7\/10:hover{border-color:rgb(var(--blue-7)/.1)}.hover\:border-blue-7\/100:hover{border-color:rgb(var(--blue-7)/1)}.hover\:border-blue-7\/20:hover{border-color:rgb(var(--blue-7)/.2)}.hover\:border-blue-7\/25:hover{border-color:rgb(var(--blue-7)/.25)}.hover\:border-blue-7\/30:hover{border-color:rgb(var(--blue-7)/.3)}.hover\:border-blue-7\/40:hover{border-color:rgb(var(--blue-7)/.4)}.hover\:border-blue-7\/5:hover{border-color:rgb(var(--blue-7)/.05)}.hover\:border-blue-7\/50:hover{border-color:rgb(var(--blue-7)/.5)}.hover\:border-blue-7\/60:hover{border-color:rgb(var(--blue-7)/.6)}.hover\:border-blue-7\/70:hover{border-color:rgb(var(--blue-7)/.7)}.hover\:border-blue-7\/75:hover{border-color:rgb(var(--blue-7)/.75)}.hover\:border-blue-7\/80:hover{border-color:rgb(var(--blue-7)/.8)}.hover\:border-blue-7\/90:hover{border-color:rgb(var(--blue-7)/.9)}.hover\:border-blue-7\/95:hover{border-color:rgb(var(--blue-7)/.95)}.hover\:border-blue-8\/0:hover{border-color:rgb(var(--blue-8)/0)}.hover\:border-blue-8\/10:hover{border-color:rgb(var(--blue-8)/.1)}.hover\:border-blue-8\/100:hover{border-color:rgb(var(--blue-8)/1)}.hover\:border-blue-8\/20:hover{border-color:rgb(var(--blue-8)/.2)}.hover\:border-blue-8\/25:hover{border-color:rgb(var(--blue-8)/.25)}.hover\:border-blue-8\/30:hover{border-color:rgb(var(--blue-8)/.3)}.hover\:border-blue-8\/40:hover{border-color:rgb(var(--blue-8)/.4)}.hover\:border-blue-8\/5:hover{border-color:rgb(var(--blue-8)/.05)}.hover\:border-blue-8\/50:hover{border-color:rgb(var(--blue-8)/.5)}.hover\:border-blue-8\/60:hover{border-color:rgb(var(--blue-8)/.6)}.hover\:border-blue-8\/70:hover{border-color:rgb(var(--blue-8)/.7)}.hover\:border-blue-8\/75:hover{border-color:rgb(var(--blue-8)/.75)}.hover\:border-blue-8\/80:hover{border-color:rgb(var(--blue-8)/.8)}.hover\:border-blue-8\/90:hover{border-color:rgb(var(--blue-8)/.9)}.hover\:border-blue-8\/95:hover{border-color:rgb(var(--blue-8)/.95)}.hover\:border-blue-9\/0:hover{border-color:rgb(var(--blue-9)/0)}.hover\:border-blue-9\/10:hover{border-color:rgb(var(--blue-9)/.1)}.hover\:border-blue-9\/100:hover{border-color:rgb(var(--blue-9)/1)}.hover\:border-blue-9\/20:hover{border-color:rgb(var(--blue-9)/.2)}.hover\:border-blue-9\/25:hover{border-color:rgb(var(--blue-9)/.25)}.hover\:border-blue-9\/30:hover{border-color:rgb(var(--blue-9)/.3)}.hover\:border-blue-9\/40:hover{border-color:rgb(var(--blue-9)/.4)}.hover\:border-blue-9\/5:hover{border-color:rgb(var(--blue-9)/.05)}.hover\:border-blue-9\/50:hover{border-color:rgb(var(--blue-9)/.5)}.hover\:border-blue-9\/60:hover{border-color:rgb(var(--blue-9)/.6)}.hover\:border-blue-9\/70:hover{border-color:rgb(var(--blue-9)/.7)}.hover\:border-blue-9\/75:hover{border-color:rgb(var(--blue-9)/.75)}.hover\:border-blue-9\/80:hover{border-color:rgb(var(--blue-9)/.8)}.hover\:border-blue-9\/90:hover{border-color:rgb(var(--blue-9)/.9)}.hover\:border-blue-9\/95:hover{border-color:rgb(var(--blue-9)/.95)}.hover\:border-border:hover{--tw-border-opacity:1;border-color:rgb(var(--border)/var(--tw-border-opacity))}.hover\:border-border\/0:hover{border-color:rgb(var(--border)/0)}.hover\:border-border\/10:hover{border-color:rgb(var(--border)/.1)}.hover\:border-border\/100:hover{border-color:rgb(var(--border)/1)}.hover\:border-border\/20:hover{border-color:rgb(var(--border)/.2)}.hover\:border-border\/25:hover{border-color:rgb(var(--border)/.25)}.hover\:border-border\/30:hover{border-color:rgb(var(--border)/.3)}.hover\:border-border\/40:hover{border-color:rgb(var(--border)/.4)}.hover\:border-border\/5:hover{border-color:rgb(var(--border)/.05)}.hover\:border-border\/50:hover{border-color:rgb(var(--border)/.5)}.hover\:border-border\/60:hover{border-color:rgb(var(--border)/.6)}.hover\:border-border\/70:hover{border-color:rgb(var(--border)/.7)}.hover\:border-border\/75:hover{border-color:rgb(var(--border)/.75)}.hover\:border-border\/80:hover{border-color:rgb(var(--border)/.8)}.hover\:border-border\/90:hover{border-color:rgb(var(--border)/.9)}.hover\:border-border\/95:hover{border-color:rgb(var(--border)/.95)}.hover\:border-content1:hover{--tw-border-opacity:1;border-color:rgb(var(--content1)/var(--tw-border-opacity))}.hover\:border-content1\/0:hover{border-color:rgb(var(--content1)/0)}.hover\:border-content1\/10:hover{border-color:rgb(var(--content1)/.1)}.hover\:border-content1\/100:hover{border-color:rgb(var(--content1)/1)}.hover\:border-content1\/20:hover{border-color:rgb(var(--content1)/.2)}.hover\:border-content1\/25:hover{border-color:rgb(var(--content1)/.25)}.hover\:border-content1\/30:hover{border-color:rgb(var(--content1)/.3)}.hover\:border-content1\/40:hover{border-color:rgb(var(--content1)/.4)}.hover\:border-content1\/5:hover{border-color:rgb(var(--content1)/.05)}.hover\:border-content1\/50:hover{border-color:rgb(var(--content1)/.5)}.hover\:border-content1\/60:hover{border-color:rgb(var(--content1)/.6)}.hover\:border-content1\/70:hover{border-color:rgb(var(--content1)/.7)}.hover\:border-content1\/75:hover{border-color:rgb(var(--content1)/.75)}.hover\:border-content1\/80:hover{border-color:rgb(var(--content1)/.8)}.hover\:border-content1\/90:hover{border-color:rgb(var(--content1)/.9)}.hover\:border-content1\/95:hover{border-color:rgb(var(--content1)/.95)}.hover\:border-content2:hover{--tw-border-opacity:1;border-color:rgb(var(--content2)/var(--tw-border-opacity))}.hover\:border-content2\/0:hover{border-color:rgb(var(--content2)/0)}.hover\:border-content2\/10:hover{border-color:rgb(var(--content2)/.1)}.hover\:border-content2\/100:hover{border-color:rgb(var(--content2)/1)}.hover\:border-content2\/20:hover{border-color:rgb(var(--content2)/.2)}.hover\:border-content2\/25:hover{border-color:rgb(var(--content2)/.25)}.hover\:border-content2\/30:hover{border-color:rgb(var(--content2)/.3)}.hover\:border-content2\/40:hover{border-color:rgb(var(--content2)/.4)}.hover\:border-content2\/5:hover{border-color:rgb(var(--content2)/.05)}.hover\:border-content2\/50:hover{border-color:rgb(var(--content2)/.5)}.hover\:border-content2\/60:hover{border-color:rgb(var(--content2)/.6)}.hover\:border-content2\/70:hover{border-color:rgb(var(--content2)/.7)}.hover\:border-content2\/75:hover{border-color:rgb(var(--content2)/.75)}.hover\:border-content2\/80:hover{border-color:rgb(var(--content2)/.8)}.hover\:border-content2\/90:hover{border-color:rgb(var(--content2)/.9)}.hover\:border-content2\/95:hover{border-color:rgb(var(--content2)/.95)}.hover\:border-content3:hover{--tw-border-opacity:1;border-color:rgb(var(--content3)/var(--tw-border-opacity))}.hover\:border-content3\/0:hover{border-color:rgb(var(--content3)/0)}.hover\:border-content3\/10:hover{border-color:rgb(var(--content3)/.1)}.hover\:border-content3\/100:hover{border-color:rgb(var(--content3)/1)}.hover\:border-content3\/20:hover{border-color:rgb(var(--content3)/.2)}.hover\:border-content3\/25:hover{border-color:rgb(var(--content3)/.25)}.hover\:border-content3\/30:hover{border-color:rgb(var(--content3)/.3)}.hover\:border-content3\/40:hover{border-color:rgb(var(--content3)/.4)}.hover\:border-content3\/5:hover{border-color:rgb(var(--content3)/.05)}.hover\:border-content3\/50:hover{border-color:rgb(var(--content3)/.5)}.hover\:border-content3\/60:hover{border-color:rgb(var(--content3)/.6)}.hover\:border-content3\/70:hover{border-color:rgb(var(--content3)/.7)}.hover\:border-content3\/75:hover{border-color:rgb(var(--content3)/.75)}.hover\:border-content3\/80:hover{border-color:rgb(var(--content3)/.8)}.hover\:border-content3\/90:hover{border-color:rgb(var(--content3)/.9)}.hover\:border-content3\/95:hover{border-color:rgb(var(--content3)/.95)}.hover\:border-cyan-1\/0:hover{border-color:rgb(var(--cyan-1)/0)}.hover\:border-cyan-1\/10:hover{border-color:rgb(var(--cyan-1)/.1)}.hover\:border-cyan-1\/100:hover{border-color:rgb(var(--cyan-1)/1)}.hover\:border-cyan-1\/20:hover{border-color:rgb(var(--cyan-1)/.2)}.hover\:border-cyan-1\/25:hover{border-color:rgb(var(--cyan-1)/.25)}.hover\:border-cyan-1\/30:hover{border-color:rgb(var(--cyan-1)/.3)}.hover\:border-cyan-1\/40:hover{border-color:rgb(var(--cyan-1)/.4)}.hover\:border-cyan-1\/5:hover{border-color:rgb(var(--cyan-1)/.05)}.hover\:border-cyan-1\/50:hover{border-color:rgb(var(--cyan-1)/.5)}.hover\:border-cyan-1\/60:hover{border-color:rgb(var(--cyan-1)/.6)}.hover\:border-cyan-1\/70:hover{border-color:rgb(var(--cyan-1)/.7)}.hover\:border-cyan-1\/75:hover{border-color:rgb(var(--cyan-1)/.75)}.hover\:border-cyan-1\/80:hover{border-color:rgb(var(--cyan-1)/.8)}.hover\:border-cyan-1\/90:hover{border-color:rgb(var(--cyan-1)/.9)}.hover\:border-cyan-1\/95:hover{border-color:rgb(var(--cyan-1)/.95)}.hover\:border-cyan-10\/0:hover{border-color:rgb(var(--cyan-10)/0)}.hover\:border-cyan-10\/10:hover{border-color:rgb(var(--cyan-10)/.1)}.hover\:border-cyan-10\/100:hover{border-color:rgb(var(--cyan-10)/1)}.hover\:border-cyan-10\/20:hover{border-color:rgb(var(--cyan-10)/.2)}.hover\:border-cyan-10\/25:hover{border-color:rgb(var(--cyan-10)/.25)}.hover\:border-cyan-10\/30:hover{border-color:rgb(var(--cyan-10)/.3)}.hover\:border-cyan-10\/40:hover{border-color:rgb(var(--cyan-10)/.4)}.hover\:border-cyan-10\/5:hover{border-color:rgb(var(--cyan-10)/.05)}.hover\:border-cyan-10\/50:hover{border-color:rgb(var(--cyan-10)/.5)}.hover\:border-cyan-10\/60:hover{border-color:rgb(var(--cyan-10)/.6)}.hover\:border-cyan-10\/70:hover{border-color:rgb(var(--cyan-10)/.7)}.hover\:border-cyan-10\/75:hover{border-color:rgb(var(--cyan-10)/.75)}.hover\:border-cyan-10\/80:hover{border-color:rgb(var(--cyan-10)/.8)}.hover\:border-cyan-10\/90:hover{border-color:rgb(var(--cyan-10)/.9)}.hover\:border-cyan-10\/95:hover{border-color:rgb(var(--cyan-10)/.95)}.hover\:border-cyan-2\/0:hover{border-color:rgb(var(--cyan-2)/0)}.hover\:border-cyan-2\/10:hover{border-color:rgb(var(--cyan-2)/.1)}.hover\:border-cyan-2\/100:hover{border-color:rgb(var(--cyan-2)/1)}.hover\:border-cyan-2\/20:hover{border-color:rgb(var(--cyan-2)/.2)}.hover\:border-cyan-2\/25:hover{border-color:rgb(var(--cyan-2)/.25)}.hover\:border-cyan-2\/30:hover{border-color:rgb(var(--cyan-2)/.3)}.hover\:border-cyan-2\/40:hover{border-color:rgb(var(--cyan-2)/.4)}.hover\:border-cyan-2\/5:hover{border-color:rgb(var(--cyan-2)/.05)}.hover\:border-cyan-2\/50:hover{border-color:rgb(var(--cyan-2)/.5)}.hover\:border-cyan-2\/60:hover{border-color:rgb(var(--cyan-2)/.6)}.hover\:border-cyan-2\/70:hover{border-color:rgb(var(--cyan-2)/.7)}.hover\:border-cyan-2\/75:hover{border-color:rgb(var(--cyan-2)/.75)}.hover\:border-cyan-2\/80:hover{border-color:rgb(var(--cyan-2)/.8)}.hover\:border-cyan-2\/90:hover{border-color:rgb(var(--cyan-2)/.9)}.hover\:border-cyan-2\/95:hover{border-color:rgb(var(--cyan-2)/.95)}.hover\:border-cyan-3\/0:hover{border-color:rgb(var(--cyan-3)/0)}.hover\:border-cyan-3\/10:hover{border-color:rgb(var(--cyan-3)/.1)}.hover\:border-cyan-3\/100:hover{border-color:rgb(var(--cyan-3)/1)}.hover\:border-cyan-3\/20:hover{border-color:rgb(var(--cyan-3)/.2)}.hover\:border-cyan-3\/25:hover{border-color:rgb(var(--cyan-3)/.25)}.hover\:border-cyan-3\/30:hover{border-color:rgb(var(--cyan-3)/.3)}.hover\:border-cyan-3\/40:hover{border-color:rgb(var(--cyan-3)/.4)}.hover\:border-cyan-3\/5:hover{border-color:rgb(var(--cyan-3)/.05)}.hover\:border-cyan-3\/50:hover{border-color:rgb(var(--cyan-3)/.5)}.hover\:border-cyan-3\/60:hover{border-color:rgb(var(--cyan-3)/.6)}.hover\:border-cyan-3\/70:hover{border-color:rgb(var(--cyan-3)/.7)}.hover\:border-cyan-3\/75:hover{border-color:rgb(var(--cyan-3)/.75)}.hover\:border-cyan-3\/80:hover{border-color:rgb(var(--cyan-3)/.8)}.hover\:border-cyan-3\/90:hover{border-color:rgb(var(--cyan-3)/.9)}.hover\:border-cyan-3\/95:hover{border-color:rgb(var(--cyan-3)/.95)}.hover\:border-cyan-4\/0:hover{border-color:rgb(var(--cyan-4)/0)}.hover\:border-cyan-4\/10:hover{border-color:rgb(var(--cyan-4)/.1)}.hover\:border-cyan-4\/100:hover{border-color:rgb(var(--cyan-4)/1)}.hover\:border-cyan-4\/20:hover{border-color:rgb(var(--cyan-4)/.2)}.hover\:border-cyan-4\/25:hover{border-color:rgb(var(--cyan-4)/.25)}.hover\:border-cyan-4\/30:hover{border-color:rgb(var(--cyan-4)/.3)}.hover\:border-cyan-4\/40:hover{border-color:rgb(var(--cyan-4)/.4)}.hover\:border-cyan-4\/5:hover{border-color:rgb(var(--cyan-4)/.05)}.hover\:border-cyan-4\/50:hover{border-color:rgb(var(--cyan-4)/.5)}.hover\:border-cyan-4\/60:hover{border-color:rgb(var(--cyan-4)/.6)}.hover\:border-cyan-4\/70:hover{border-color:rgb(var(--cyan-4)/.7)}.hover\:border-cyan-4\/75:hover{border-color:rgb(var(--cyan-4)/.75)}.hover\:border-cyan-4\/80:hover{border-color:rgb(var(--cyan-4)/.8)}.hover\:border-cyan-4\/90:hover{border-color:rgb(var(--cyan-4)/.9)}.hover\:border-cyan-4\/95:hover{border-color:rgb(var(--cyan-4)/.95)}.hover\:border-cyan-5\/0:hover{border-color:rgb(var(--cyan-5)/0)}.hover\:border-cyan-5\/10:hover{border-color:rgb(var(--cyan-5)/.1)}.hover\:border-cyan-5\/100:hover{border-color:rgb(var(--cyan-5)/1)}.hover\:border-cyan-5\/20:hover{border-color:rgb(var(--cyan-5)/.2)}.hover\:border-cyan-5\/25:hover{border-color:rgb(var(--cyan-5)/.25)}.hover\:border-cyan-5\/30:hover{border-color:rgb(var(--cyan-5)/.3)}.hover\:border-cyan-5\/40:hover{border-color:rgb(var(--cyan-5)/.4)}.hover\:border-cyan-5\/5:hover{border-color:rgb(var(--cyan-5)/.05)}.hover\:border-cyan-5\/50:hover{border-color:rgb(var(--cyan-5)/.5)}.hover\:border-cyan-5\/60:hover{border-color:rgb(var(--cyan-5)/.6)}.hover\:border-cyan-5\/70:hover{border-color:rgb(var(--cyan-5)/.7)}.hover\:border-cyan-5\/75:hover{border-color:rgb(var(--cyan-5)/.75)}.hover\:border-cyan-5\/80:hover{border-color:rgb(var(--cyan-5)/.8)}.hover\:border-cyan-5\/90:hover{border-color:rgb(var(--cyan-5)/.9)}.hover\:border-cyan-5\/95:hover{border-color:rgb(var(--cyan-5)/.95)}.hover\:border-cyan-6\/0:hover{border-color:rgb(var(--cyan-6)/0)}.hover\:border-cyan-6\/10:hover{border-color:rgb(var(--cyan-6)/.1)}.hover\:border-cyan-6\/100:hover{border-color:rgb(var(--cyan-6)/1)}.hover\:border-cyan-6\/20:hover{border-color:rgb(var(--cyan-6)/.2)}.hover\:border-cyan-6\/25:hover{border-color:rgb(var(--cyan-6)/.25)}.hover\:border-cyan-6\/30:hover{border-color:rgb(var(--cyan-6)/.3)}.hover\:border-cyan-6\/40:hover{border-color:rgb(var(--cyan-6)/.4)}.hover\:border-cyan-6\/5:hover{border-color:rgb(var(--cyan-6)/.05)}.hover\:border-cyan-6\/50:hover{border-color:rgb(var(--cyan-6)/.5)}.hover\:border-cyan-6\/60:hover{border-color:rgb(var(--cyan-6)/.6)}.hover\:border-cyan-6\/70:hover{border-color:rgb(var(--cyan-6)/.7)}.hover\:border-cyan-6\/75:hover{border-color:rgb(var(--cyan-6)/.75)}.hover\:border-cyan-6\/80:hover{border-color:rgb(var(--cyan-6)/.8)}.hover\:border-cyan-6\/90:hover{border-color:rgb(var(--cyan-6)/.9)}.hover\:border-cyan-6\/95:hover{border-color:rgb(var(--cyan-6)/.95)}.hover\:border-cyan-7\/0:hover{border-color:rgb(var(--cyan-7)/0)}.hover\:border-cyan-7\/10:hover{border-color:rgb(var(--cyan-7)/.1)}.hover\:border-cyan-7\/100:hover{border-color:rgb(var(--cyan-7)/1)}.hover\:border-cyan-7\/20:hover{border-color:rgb(var(--cyan-7)/.2)}.hover\:border-cyan-7\/25:hover{border-color:rgb(var(--cyan-7)/.25)}.hover\:border-cyan-7\/30:hover{border-color:rgb(var(--cyan-7)/.3)}.hover\:border-cyan-7\/40:hover{border-color:rgb(var(--cyan-7)/.4)}.hover\:border-cyan-7\/5:hover{border-color:rgb(var(--cyan-7)/.05)}.hover\:border-cyan-7\/50:hover{border-color:rgb(var(--cyan-7)/.5)}.hover\:border-cyan-7\/60:hover{border-color:rgb(var(--cyan-7)/.6)}.hover\:border-cyan-7\/70:hover{border-color:rgb(var(--cyan-7)/.7)}.hover\:border-cyan-7\/75:hover{border-color:rgb(var(--cyan-7)/.75)}.hover\:border-cyan-7\/80:hover{border-color:rgb(var(--cyan-7)/.8)}.hover\:border-cyan-7\/90:hover{border-color:rgb(var(--cyan-7)/.9)}.hover\:border-cyan-7\/95:hover{border-color:rgb(var(--cyan-7)/.95)}.hover\:border-cyan-8\/0:hover{border-color:rgb(var(--cyan-8)/0)}.hover\:border-cyan-8\/10:hover{border-color:rgb(var(--cyan-8)/.1)}.hover\:border-cyan-8\/100:hover{border-color:rgb(var(--cyan-8)/1)}.hover\:border-cyan-8\/20:hover{border-color:rgb(var(--cyan-8)/.2)}.hover\:border-cyan-8\/25:hover{border-color:rgb(var(--cyan-8)/.25)}.hover\:border-cyan-8\/30:hover{border-color:rgb(var(--cyan-8)/.3)}.hover\:border-cyan-8\/40:hover{border-color:rgb(var(--cyan-8)/.4)}.hover\:border-cyan-8\/5:hover{border-color:rgb(var(--cyan-8)/.05)}.hover\:border-cyan-8\/50:hover{border-color:rgb(var(--cyan-8)/.5)}.hover\:border-cyan-8\/60:hover{border-color:rgb(var(--cyan-8)/.6)}.hover\:border-cyan-8\/70:hover{border-color:rgb(var(--cyan-8)/.7)}.hover\:border-cyan-8\/75:hover{border-color:rgb(var(--cyan-8)/.75)}.hover\:border-cyan-8\/80:hover{border-color:rgb(var(--cyan-8)/.8)}.hover\:border-cyan-8\/90:hover{border-color:rgb(var(--cyan-8)/.9)}.hover\:border-cyan-8\/95:hover{border-color:rgb(var(--cyan-8)/.95)}.hover\:border-cyan-9\/0:hover{border-color:rgb(var(--cyan-9)/0)}.hover\:border-cyan-9\/10:hover{border-color:rgb(var(--cyan-9)/.1)}.hover\:border-cyan-9\/100:hover{border-color:rgb(var(--cyan-9)/1)}.hover\:border-cyan-9\/20:hover{border-color:rgb(var(--cyan-9)/.2)}.hover\:border-cyan-9\/25:hover{border-color:rgb(var(--cyan-9)/.25)}.hover\:border-cyan-9\/30:hover{border-color:rgb(var(--cyan-9)/.3)}.hover\:border-cyan-9\/40:hover{border-color:rgb(var(--cyan-9)/.4)}.hover\:border-cyan-9\/5:hover{border-color:rgb(var(--cyan-9)/.05)}.hover\:border-cyan-9\/50:hover{border-color:rgb(var(--cyan-9)/.5)}.hover\:border-cyan-9\/60:hover{border-color:rgb(var(--cyan-9)/.6)}.hover\:border-cyan-9\/70:hover{border-color:rgb(var(--cyan-9)/.7)}.hover\:border-cyan-9\/75:hover{border-color:rgb(var(--cyan-9)/.75)}.hover\:border-cyan-9\/80:hover{border-color:rgb(var(--cyan-9)/.8)}.hover\:border-cyan-9\/90:hover{border-color:rgb(var(--cyan-9)/.9)}.hover\:border-cyan-9\/95:hover{border-color:rgb(var(--cyan-9)/.95)}.hover\:border-error:hover{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.hover\:border-error\/0:hover{border-color:rgb(var(--error)/0)}.hover\:border-error\/10:hover{border-color:rgb(var(--error)/.1)}.hover\:border-error\/100:hover{border-color:rgb(var(--error)/1)}.hover\:border-error\/20:hover{border-color:rgb(var(--error)/.2)}.hover\:border-error\/25:hover{border-color:rgb(var(--error)/.25)}.hover\:border-error\/30:hover{border-color:rgb(var(--error)/.3)}.hover\:border-error\/40:hover{border-color:rgb(var(--error)/.4)}.hover\:border-error\/5:hover{border-color:rgb(var(--error)/.05)}.hover\:border-error\/50:hover{border-color:rgb(var(--error)/.5)}.hover\:border-error\/60:hover{border-color:rgb(var(--error)/.6)}.hover\:border-error\/70:hover{border-color:rgb(var(--error)/.7)}.hover\:border-error\/75:hover{border-color:rgb(var(--error)/.75)}.hover\:border-error\/80:hover{border-color:rgb(var(--error)/.8)}.hover\:border-error\/90:hover{border-color:rgb(var(--error)/.9)}.hover\:border-error\/95:hover{border-color:rgb(var(--error)/.95)}.hover\:border-gray-1\/0:hover{border-color:rgb(var(--gray-1)/0)}.hover\:border-gray-1\/10:hover{border-color:rgb(var(--gray-1)/.1)}.hover\:border-gray-1\/100:hover{border-color:rgb(var(--gray-1)/1)}.hover\:border-gray-1\/20:hover{border-color:rgb(var(--gray-1)/.2)}.hover\:border-gray-1\/25:hover{border-color:rgb(var(--gray-1)/.25)}.hover\:border-gray-1\/30:hover{border-color:rgb(var(--gray-1)/.3)}.hover\:border-gray-1\/40:hover{border-color:rgb(var(--gray-1)/.4)}.hover\:border-gray-1\/5:hover{border-color:rgb(var(--gray-1)/.05)}.hover\:border-gray-1\/50:hover{border-color:rgb(var(--gray-1)/.5)}.hover\:border-gray-1\/60:hover{border-color:rgb(var(--gray-1)/.6)}.hover\:border-gray-1\/70:hover{border-color:rgb(var(--gray-1)/.7)}.hover\:border-gray-1\/75:hover{border-color:rgb(var(--gray-1)/.75)}.hover\:border-gray-1\/80:hover{border-color:rgb(var(--gray-1)/.8)}.hover\:border-gray-1\/90:hover{border-color:rgb(var(--gray-1)/.9)}.hover\:border-gray-1\/95:hover{border-color:rgb(var(--gray-1)/.95)}.hover\:border-gray-10\/0:hover{border-color:rgb(var(--gray-10)/0)}.hover\:border-gray-10\/10:hover{border-color:rgb(var(--gray-10)/.1)}.hover\:border-gray-10\/100:hover{border-color:rgb(var(--gray-10)/1)}.hover\:border-gray-10\/20:hover{border-color:rgb(var(--gray-10)/.2)}.hover\:border-gray-10\/25:hover{border-color:rgb(var(--gray-10)/.25)}.hover\:border-gray-10\/30:hover{border-color:rgb(var(--gray-10)/.3)}.hover\:border-gray-10\/40:hover{border-color:rgb(var(--gray-10)/.4)}.hover\:border-gray-10\/5:hover{border-color:rgb(var(--gray-10)/.05)}.hover\:border-gray-10\/50:hover{border-color:rgb(var(--gray-10)/.5)}.hover\:border-gray-10\/60:hover{border-color:rgb(var(--gray-10)/.6)}.hover\:border-gray-10\/70:hover{border-color:rgb(var(--gray-10)/.7)}.hover\:border-gray-10\/75:hover{border-color:rgb(var(--gray-10)/.75)}.hover\:border-gray-10\/80:hover{border-color:rgb(var(--gray-10)/.8)}.hover\:border-gray-10\/90:hover{border-color:rgb(var(--gray-10)/.9)}.hover\:border-gray-10\/95:hover{border-color:rgb(var(--gray-10)/.95)}.hover\:border-gray-2\/0:hover{border-color:rgb(var(--gray-2)/0)}.hover\:border-gray-2\/10:hover{border-color:rgb(var(--gray-2)/.1)}.hover\:border-gray-2\/100:hover{border-color:rgb(var(--gray-2)/1)}.hover\:border-gray-2\/20:hover{border-color:rgb(var(--gray-2)/.2)}.hover\:border-gray-2\/25:hover{border-color:rgb(var(--gray-2)/.25)}.hover\:border-gray-2\/30:hover{border-color:rgb(var(--gray-2)/.3)}.hover\:border-gray-2\/40:hover{border-color:rgb(var(--gray-2)/.4)}.hover\:border-gray-2\/5:hover{border-color:rgb(var(--gray-2)/.05)}.hover\:border-gray-2\/50:hover{border-color:rgb(var(--gray-2)/.5)}.hover\:border-gray-2\/60:hover{border-color:rgb(var(--gray-2)/.6)}.hover\:border-gray-2\/70:hover{border-color:rgb(var(--gray-2)/.7)}.hover\:border-gray-2\/75:hover{border-color:rgb(var(--gray-2)/.75)}.hover\:border-gray-2\/80:hover{border-color:rgb(var(--gray-2)/.8)}.hover\:border-gray-2\/90:hover{border-color:rgb(var(--gray-2)/.9)}.hover\:border-gray-2\/95:hover{border-color:rgb(var(--gray-2)/.95)}.hover\:border-gray-3\/0:hover{border-color:rgb(var(--gray-3)/0)}.hover\:border-gray-3\/10:hover{border-color:rgb(var(--gray-3)/.1)}.hover\:border-gray-3\/100:hover{border-color:rgb(var(--gray-3)/1)}.hover\:border-gray-3\/20:hover{border-color:rgb(var(--gray-3)/.2)}.hover\:border-gray-3\/25:hover{border-color:rgb(var(--gray-3)/.25)}.hover\:border-gray-3\/30:hover{border-color:rgb(var(--gray-3)/.3)}.hover\:border-gray-3\/40:hover{border-color:rgb(var(--gray-3)/.4)}.hover\:border-gray-3\/5:hover{border-color:rgb(var(--gray-3)/.05)}.hover\:border-gray-3\/50:hover{border-color:rgb(var(--gray-3)/.5)}.hover\:border-gray-3\/60:hover{border-color:rgb(var(--gray-3)/.6)}.hover\:border-gray-3\/70:hover{border-color:rgb(var(--gray-3)/.7)}.hover\:border-gray-3\/75:hover{border-color:rgb(var(--gray-3)/.75)}.hover\:border-gray-3\/80:hover{border-color:rgb(var(--gray-3)/.8)}.hover\:border-gray-3\/90:hover{border-color:rgb(var(--gray-3)/.9)}.hover\:border-gray-3\/95:hover{border-color:rgb(var(--gray-3)/.95)}.hover\:border-gray-4\/0:hover{border-color:rgb(var(--gray-4)/0)}.hover\:border-gray-4\/10:hover{border-color:rgb(var(--gray-4)/.1)}.hover\:border-gray-4\/100:hover{border-color:rgb(var(--gray-4)/1)}.hover\:border-gray-4\/20:hover{border-color:rgb(var(--gray-4)/.2)}.hover\:border-gray-4\/25:hover{border-color:rgb(var(--gray-4)/.25)}.hover\:border-gray-4\/30:hover{border-color:rgb(var(--gray-4)/.3)}.hover\:border-gray-4\/40:hover{border-color:rgb(var(--gray-4)/.4)}.hover\:border-gray-4\/5:hover{border-color:rgb(var(--gray-4)/.05)}.hover\:border-gray-4\/50:hover{border-color:rgb(var(--gray-4)/.5)}.hover\:border-gray-4\/60:hover{border-color:rgb(var(--gray-4)/.6)}.hover\:border-gray-4\/70:hover{border-color:rgb(var(--gray-4)/.7)}.hover\:border-gray-4\/75:hover{border-color:rgb(var(--gray-4)/.75)}.hover\:border-gray-4\/80:hover{border-color:rgb(var(--gray-4)/.8)}.hover\:border-gray-4\/90:hover{border-color:rgb(var(--gray-4)/.9)}.hover\:border-gray-4\/95:hover{border-color:rgb(var(--gray-4)/.95)}.hover\:border-gray-5\/0:hover{border-color:rgb(var(--gray-5)/0)}.hover\:border-gray-5\/10:hover{border-color:rgb(var(--gray-5)/.1)}.hover\:border-gray-5\/100:hover{border-color:rgb(var(--gray-5)/1)}.hover\:border-gray-5\/20:hover{border-color:rgb(var(--gray-5)/.2)}.hover\:border-gray-5\/25:hover{border-color:rgb(var(--gray-5)/.25)}.hover\:border-gray-5\/30:hover{border-color:rgb(var(--gray-5)/.3)}.hover\:border-gray-5\/40:hover{border-color:rgb(var(--gray-5)/.4)}.hover\:border-gray-5\/5:hover{border-color:rgb(var(--gray-5)/.05)}.hover\:border-gray-5\/50:hover{border-color:rgb(var(--gray-5)/.5)}.hover\:border-gray-5\/60:hover{border-color:rgb(var(--gray-5)/.6)}.hover\:border-gray-5\/70:hover{border-color:rgb(var(--gray-5)/.7)}.hover\:border-gray-5\/75:hover{border-color:rgb(var(--gray-5)/.75)}.hover\:border-gray-5\/80:hover{border-color:rgb(var(--gray-5)/.8)}.hover\:border-gray-5\/90:hover{border-color:rgb(var(--gray-5)/.9)}.hover\:border-gray-5\/95:hover{border-color:rgb(var(--gray-5)/.95)}.hover\:border-gray-6\/0:hover{border-color:rgb(var(--gray-6)/0)}.hover\:border-gray-6\/10:hover{border-color:rgb(var(--gray-6)/.1)}.hover\:border-gray-6\/100:hover{border-color:rgb(var(--gray-6)/1)}.hover\:border-gray-6\/20:hover{border-color:rgb(var(--gray-6)/.2)}.hover\:border-gray-6\/25:hover{border-color:rgb(var(--gray-6)/.25)}.hover\:border-gray-6\/30:hover{border-color:rgb(var(--gray-6)/.3)}.hover\:border-gray-6\/40:hover{border-color:rgb(var(--gray-6)/.4)}.hover\:border-gray-6\/5:hover{border-color:rgb(var(--gray-6)/.05)}.hover\:border-gray-6\/50:hover{border-color:rgb(var(--gray-6)/.5)}.hover\:border-gray-6\/60:hover{border-color:rgb(var(--gray-6)/.6)}.hover\:border-gray-6\/70:hover{border-color:rgb(var(--gray-6)/.7)}.hover\:border-gray-6\/75:hover{border-color:rgb(var(--gray-6)/.75)}.hover\:border-gray-6\/80:hover{border-color:rgb(var(--gray-6)/.8)}.hover\:border-gray-6\/90:hover{border-color:rgb(var(--gray-6)/.9)}.hover\:border-gray-6\/95:hover{border-color:rgb(var(--gray-6)/.95)}.hover\:border-gray-7\/0:hover{border-color:rgb(var(--gray-7)/0)}.hover\:border-gray-7\/10:hover{border-color:rgb(var(--gray-7)/.1)}.hover\:border-gray-7\/100:hover{border-color:rgb(var(--gray-7)/1)}.hover\:border-gray-7\/20:hover{border-color:rgb(var(--gray-7)/.2)}.hover\:border-gray-7\/25:hover{border-color:rgb(var(--gray-7)/.25)}.hover\:border-gray-7\/30:hover{border-color:rgb(var(--gray-7)/.3)}.hover\:border-gray-7\/40:hover{border-color:rgb(var(--gray-7)/.4)}.hover\:border-gray-7\/5:hover{border-color:rgb(var(--gray-7)/.05)}.hover\:border-gray-7\/50:hover{border-color:rgb(var(--gray-7)/.5)}.hover\:border-gray-7\/60:hover{border-color:rgb(var(--gray-7)/.6)}.hover\:border-gray-7\/70:hover{border-color:rgb(var(--gray-7)/.7)}.hover\:border-gray-7\/75:hover{border-color:rgb(var(--gray-7)/.75)}.hover\:border-gray-7\/80:hover{border-color:rgb(var(--gray-7)/.8)}.hover\:border-gray-7\/90:hover{border-color:rgb(var(--gray-7)/.9)}.hover\:border-gray-7\/95:hover{border-color:rgb(var(--gray-7)/.95)}.hover\:border-gray-8\/0:hover{border-color:rgb(var(--gray-8)/0)}.hover\:border-gray-8\/10:hover{border-color:rgb(var(--gray-8)/.1)}.hover\:border-gray-8\/100:hover{border-color:rgb(var(--gray-8)/1)}.hover\:border-gray-8\/20:hover{border-color:rgb(var(--gray-8)/.2)}.hover\:border-gray-8\/25:hover{border-color:rgb(var(--gray-8)/.25)}.hover\:border-gray-8\/30:hover{border-color:rgb(var(--gray-8)/.3)}.hover\:border-gray-8\/40:hover{border-color:rgb(var(--gray-8)/.4)}.hover\:border-gray-8\/5:hover{border-color:rgb(var(--gray-8)/.05)}.hover\:border-gray-8\/50:hover{border-color:rgb(var(--gray-8)/.5)}.hover\:border-gray-8\/60:hover{border-color:rgb(var(--gray-8)/.6)}.hover\:border-gray-8\/70:hover{border-color:rgb(var(--gray-8)/.7)}.hover\:border-gray-8\/75:hover{border-color:rgb(var(--gray-8)/.75)}.hover\:border-gray-8\/80:hover{border-color:rgb(var(--gray-8)/.8)}.hover\:border-gray-8\/90:hover{border-color:rgb(var(--gray-8)/.9)}.hover\:border-gray-8\/95:hover{border-color:rgb(var(--gray-8)/.95)}.hover\:border-gray-9\/0:hover{border-color:rgb(var(--gray-9)/0)}.hover\:border-gray-9\/10:hover{border-color:rgb(var(--gray-9)/.1)}.hover\:border-gray-9\/100:hover{border-color:rgb(var(--gray-9)/1)}.hover\:border-gray-9\/20:hover{border-color:rgb(var(--gray-9)/.2)}.hover\:border-gray-9\/25:hover{border-color:rgb(var(--gray-9)/.25)}.hover\:border-gray-9\/30:hover{border-color:rgb(var(--gray-9)/.3)}.hover\:border-gray-9\/40:hover{border-color:rgb(var(--gray-9)/.4)}.hover\:border-gray-9\/5:hover{border-color:rgb(var(--gray-9)/.05)}.hover\:border-gray-9\/50:hover{border-color:rgb(var(--gray-9)/.5)}.hover\:border-gray-9\/60:hover{border-color:rgb(var(--gray-9)/.6)}.hover\:border-gray-9\/70:hover{border-color:rgb(var(--gray-9)/.7)}.hover\:border-gray-9\/75:hover{border-color:rgb(var(--gray-9)/.75)}.hover\:border-gray-9\/80:hover{border-color:rgb(var(--gray-9)/.8)}.hover\:border-gray-9\/90:hover{border-color:rgb(var(--gray-9)/.9)}.hover\:border-gray-9\/95:hover{border-color:rgb(var(--gray-9)/.95)}.hover\:border-green-1\/0:hover{border-color:rgb(var(--green-1)/0)}.hover\:border-green-1\/10:hover{border-color:rgb(var(--green-1)/.1)}.hover\:border-green-1\/100:hover{border-color:rgb(var(--green-1)/1)}.hover\:border-green-1\/20:hover{border-color:rgb(var(--green-1)/.2)}.hover\:border-green-1\/25:hover{border-color:rgb(var(--green-1)/.25)}.hover\:border-green-1\/30:hover{border-color:rgb(var(--green-1)/.3)}.hover\:border-green-1\/40:hover{border-color:rgb(var(--green-1)/.4)}.hover\:border-green-1\/5:hover{border-color:rgb(var(--green-1)/.05)}.hover\:border-green-1\/50:hover{border-color:rgb(var(--green-1)/.5)}.hover\:border-green-1\/60:hover{border-color:rgb(var(--green-1)/.6)}.hover\:border-green-1\/70:hover{border-color:rgb(var(--green-1)/.7)}.hover\:border-green-1\/75:hover{border-color:rgb(var(--green-1)/.75)}.hover\:border-green-1\/80:hover{border-color:rgb(var(--green-1)/.8)}.hover\:border-green-1\/90:hover{border-color:rgb(var(--green-1)/.9)}.hover\:border-green-1\/95:hover{border-color:rgb(var(--green-1)/.95)}.hover\:border-green-10\/0:hover{border-color:rgb(var(--green-10)/0)}.hover\:border-green-10\/10:hover{border-color:rgb(var(--green-10)/.1)}.hover\:border-green-10\/100:hover{border-color:rgb(var(--green-10)/1)}.hover\:border-green-10\/20:hover{border-color:rgb(var(--green-10)/.2)}.hover\:border-green-10\/25:hover{border-color:rgb(var(--green-10)/.25)}.hover\:border-green-10\/30:hover{border-color:rgb(var(--green-10)/.3)}.hover\:border-green-10\/40:hover{border-color:rgb(var(--green-10)/.4)}.hover\:border-green-10\/5:hover{border-color:rgb(var(--green-10)/.05)}.hover\:border-green-10\/50:hover{border-color:rgb(var(--green-10)/.5)}.hover\:border-green-10\/60:hover{border-color:rgb(var(--green-10)/.6)}.hover\:border-green-10\/70:hover{border-color:rgb(var(--green-10)/.7)}.hover\:border-green-10\/75:hover{border-color:rgb(var(--green-10)/.75)}.hover\:border-green-10\/80:hover{border-color:rgb(var(--green-10)/.8)}.hover\:border-green-10\/90:hover{border-color:rgb(var(--green-10)/.9)}.hover\:border-green-10\/95:hover{border-color:rgb(var(--green-10)/.95)}.hover\:border-green-2\/0:hover{border-color:rgb(var(--green-2)/0)}.hover\:border-green-2\/10:hover{border-color:rgb(var(--green-2)/.1)}.hover\:border-green-2\/100:hover{border-color:rgb(var(--green-2)/1)}.hover\:border-green-2\/20:hover{border-color:rgb(var(--green-2)/.2)}.hover\:border-green-2\/25:hover{border-color:rgb(var(--green-2)/.25)}.hover\:border-green-2\/30:hover{border-color:rgb(var(--green-2)/.3)}.hover\:border-green-2\/40:hover{border-color:rgb(var(--green-2)/.4)}.hover\:border-green-2\/5:hover{border-color:rgb(var(--green-2)/.05)}.hover\:border-green-2\/50:hover{border-color:rgb(var(--green-2)/.5)}.hover\:border-green-2\/60:hover{border-color:rgb(var(--green-2)/.6)}.hover\:border-green-2\/70:hover{border-color:rgb(var(--green-2)/.7)}.hover\:border-green-2\/75:hover{border-color:rgb(var(--green-2)/.75)}.hover\:border-green-2\/80:hover{border-color:rgb(var(--green-2)/.8)}.hover\:border-green-2\/90:hover{border-color:rgb(var(--green-2)/.9)}.hover\:border-green-2\/95:hover{border-color:rgb(var(--green-2)/.95)}.hover\:border-green-3\/0:hover{border-color:rgb(var(--green-3)/0)}.hover\:border-green-3\/10:hover{border-color:rgb(var(--green-3)/.1)}.hover\:border-green-3\/100:hover{border-color:rgb(var(--green-3)/1)}.hover\:border-green-3\/20:hover{border-color:rgb(var(--green-3)/.2)}.hover\:border-green-3\/25:hover{border-color:rgb(var(--green-3)/.25)}.hover\:border-green-3\/30:hover{border-color:rgb(var(--green-3)/.3)}.hover\:border-green-3\/40:hover{border-color:rgb(var(--green-3)/.4)}.hover\:border-green-3\/5:hover{border-color:rgb(var(--green-3)/.05)}.hover\:border-green-3\/50:hover{border-color:rgb(var(--green-3)/.5)}.hover\:border-green-3\/60:hover{border-color:rgb(var(--green-3)/.6)}.hover\:border-green-3\/70:hover{border-color:rgb(var(--green-3)/.7)}.hover\:border-green-3\/75:hover{border-color:rgb(var(--green-3)/.75)}.hover\:border-green-3\/80:hover{border-color:rgb(var(--green-3)/.8)}.hover\:border-green-3\/90:hover{border-color:rgb(var(--green-3)/.9)}.hover\:border-green-3\/95:hover{border-color:rgb(var(--green-3)/.95)}.hover\:border-green-4\/0:hover{border-color:rgb(var(--green-4)/0)}.hover\:border-green-4\/10:hover{border-color:rgb(var(--green-4)/.1)}.hover\:border-green-4\/100:hover{border-color:rgb(var(--green-4)/1)}.hover\:border-green-4\/20:hover{border-color:rgb(var(--green-4)/.2)}.hover\:border-green-4\/25:hover{border-color:rgb(var(--green-4)/.25)}.hover\:border-green-4\/30:hover{border-color:rgb(var(--green-4)/.3)}.hover\:border-green-4\/40:hover{border-color:rgb(var(--green-4)/.4)}.hover\:border-green-4\/5:hover{border-color:rgb(var(--green-4)/.05)}.hover\:border-green-4\/50:hover{border-color:rgb(var(--green-4)/.5)}.hover\:border-green-4\/60:hover{border-color:rgb(var(--green-4)/.6)}.hover\:border-green-4\/70:hover{border-color:rgb(var(--green-4)/.7)}.hover\:border-green-4\/75:hover{border-color:rgb(var(--green-4)/.75)}.hover\:border-green-4\/80:hover{border-color:rgb(var(--green-4)/.8)}.hover\:border-green-4\/90:hover{border-color:rgb(var(--green-4)/.9)}.hover\:border-green-4\/95:hover{border-color:rgb(var(--green-4)/.95)}.hover\:border-green-5\/0:hover{border-color:rgb(var(--green-5)/0)}.hover\:border-green-5\/10:hover{border-color:rgb(var(--green-5)/.1)}.hover\:border-green-5\/100:hover{border-color:rgb(var(--green-5)/1)}.hover\:border-green-5\/20:hover{border-color:rgb(var(--green-5)/.2)}.hover\:border-green-5\/25:hover{border-color:rgb(var(--green-5)/.25)}.hover\:border-green-5\/30:hover{border-color:rgb(var(--green-5)/.3)}.hover\:border-green-5\/40:hover{border-color:rgb(var(--green-5)/.4)}.hover\:border-green-5\/5:hover{border-color:rgb(var(--green-5)/.05)}.hover\:border-green-5\/50:hover{border-color:rgb(var(--green-5)/.5)}.hover\:border-green-5\/60:hover{border-color:rgb(var(--green-5)/.6)}.hover\:border-green-5\/70:hover{border-color:rgb(var(--green-5)/.7)}.hover\:border-green-5\/75:hover{border-color:rgb(var(--green-5)/.75)}.hover\:border-green-5\/80:hover{border-color:rgb(var(--green-5)/.8)}.hover\:border-green-5\/90:hover{border-color:rgb(var(--green-5)/.9)}.hover\:border-green-5\/95:hover{border-color:rgb(var(--green-5)/.95)}.hover\:border-green-6\/0:hover{border-color:rgb(var(--green-6)/0)}.hover\:border-green-6\/10:hover{border-color:rgb(var(--green-6)/.1)}.hover\:border-green-6\/100:hover{border-color:rgb(var(--green-6)/1)}.hover\:border-green-6\/20:hover{border-color:rgb(var(--green-6)/.2)}.hover\:border-green-6\/25:hover{border-color:rgb(var(--green-6)/.25)}.hover\:border-green-6\/30:hover{border-color:rgb(var(--green-6)/.3)}.hover\:border-green-6\/40:hover{border-color:rgb(var(--green-6)/.4)}.hover\:border-green-6\/5:hover{border-color:rgb(var(--green-6)/.05)}.hover\:border-green-6\/50:hover{border-color:rgb(var(--green-6)/.5)}.hover\:border-green-6\/60:hover{border-color:rgb(var(--green-6)/.6)}.hover\:border-green-6\/70:hover{border-color:rgb(var(--green-6)/.7)}.hover\:border-green-6\/75:hover{border-color:rgb(var(--green-6)/.75)}.hover\:border-green-6\/80:hover{border-color:rgb(var(--green-6)/.8)}.hover\:border-green-6\/90:hover{border-color:rgb(var(--green-6)/.9)}.hover\:border-green-6\/95:hover{border-color:rgb(var(--green-6)/.95)}.hover\:border-green-7\/0:hover{border-color:rgb(var(--green-7)/0)}.hover\:border-green-7\/10:hover{border-color:rgb(var(--green-7)/.1)}.hover\:border-green-7\/100:hover{border-color:rgb(var(--green-7)/1)}.hover\:border-green-7\/20:hover{border-color:rgb(var(--green-7)/.2)}.hover\:border-green-7\/25:hover{border-color:rgb(var(--green-7)/.25)}.hover\:border-green-7\/30:hover{border-color:rgb(var(--green-7)/.3)}.hover\:border-green-7\/40:hover{border-color:rgb(var(--green-7)/.4)}.hover\:border-green-7\/5:hover{border-color:rgb(var(--green-7)/.05)}.hover\:border-green-7\/50:hover{border-color:rgb(var(--green-7)/.5)}.hover\:border-green-7\/60:hover{border-color:rgb(var(--green-7)/.6)}.hover\:border-green-7\/70:hover{border-color:rgb(var(--green-7)/.7)}.hover\:border-green-7\/75:hover{border-color:rgb(var(--green-7)/.75)}.hover\:border-green-7\/80:hover{border-color:rgb(var(--green-7)/.8)}.hover\:border-green-7\/90:hover{border-color:rgb(var(--green-7)/.9)}.hover\:border-green-7\/95:hover{border-color:rgb(var(--green-7)/.95)}.hover\:border-green-8\/0:hover{border-color:rgb(var(--green-8)/0)}.hover\:border-green-8\/10:hover{border-color:rgb(var(--green-8)/.1)}.hover\:border-green-8\/100:hover{border-color:rgb(var(--green-8)/1)}.hover\:border-green-8\/20:hover{border-color:rgb(var(--green-8)/.2)}.hover\:border-green-8\/25:hover{border-color:rgb(var(--green-8)/.25)}.hover\:border-green-8\/30:hover{border-color:rgb(var(--green-8)/.3)}.hover\:border-green-8\/40:hover{border-color:rgb(var(--green-8)/.4)}.hover\:border-green-8\/5:hover{border-color:rgb(var(--green-8)/.05)}.hover\:border-green-8\/50:hover{border-color:rgb(var(--green-8)/.5)}.hover\:border-green-8\/60:hover{border-color:rgb(var(--green-8)/.6)}.hover\:border-green-8\/70:hover{border-color:rgb(var(--green-8)/.7)}.hover\:border-green-8\/75:hover{border-color:rgb(var(--green-8)/.75)}.hover\:border-green-8\/80:hover{border-color:rgb(var(--green-8)/.8)}.hover\:border-green-8\/90:hover{border-color:rgb(var(--green-8)/.9)}.hover\:border-green-8\/95:hover{border-color:rgb(var(--green-8)/.95)}.hover\:border-green-9\/0:hover{border-color:rgb(var(--green-9)/0)}.hover\:border-green-9\/10:hover{border-color:rgb(var(--green-9)/.1)}.hover\:border-green-9\/100:hover{border-color:rgb(var(--green-9)/1)}.hover\:border-green-9\/20:hover{border-color:rgb(var(--green-9)/.2)}.hover\:border-green-9\/25:hover{border-color:rgb(var(--green-9)/.25)}.hover\:border-green-9\/30:hover{border-color:rgb(var(--green-9)/.3)}.hover\:border-green-9\/40:hover{border-color:rgb(var(--green-9)/.4)}.hover\:border-green-9\/5:hover{border-color:rgb(var(--green-9)/.05)}.hover\:border-green-9\/50:hover{border-color:rgb(var(--green-9)/.5)}.hover\:border-green-9\/60:hover{border-color:rgb(var(--green-9)/.6)}.hover\:border-green-9\/70:hover{border-color:rgb(var(--green-9)/.7)}.hover\:border-green-9\/75:hover{border-color:rgb(var(--green-9)/.75)}.hover\:border-green-9\/80:hover{border-color:rgb(var(--green-9)/.8)}.hover\:border-green-9\/90:hover{border-color:rgb(var(--green-9)/.9)}.hover\:border-green-9\/95:hover{border-color:rgb(var(--green-9)/.95)}.hover\:border-pink-1\/0:hover{border-color:rgb(var(--pink-1)/0)}.hover\:border-pink-1\/10:hover{border-color:rgb(var(--pink-1)/.1)}.hover\:border-pink-1\/100:hover{border-color:rgb(var(--pink-1)/1)}.hover\:border-pink-1\/20:hover{border-color:rgb(var(--pink-1)/.2)}.hover\:border-pink-1\/25:hover{border-color:rgb(var(--pink-1)/.25)}.hover\:border-pink-1\/30:hover{border-color:rgb(var(--pink-1)/.3)}.hover\:border-pink-1\/40:hover{border-color:rgb(var(--pink-1)/.4)}.hover\:border-pink-1\/5:hover{border-color:rgb(var(--pink-1)/.05)}.hover\:border-pink-1\/50:hover{border-color:rgb(var(--pink-1)/.5)}.hover\:border-pink-1\/60:hover{border-color:rgb(var(--pink-1)/.6)}.hover\:border-pink-1\/70:hover{border-color:rgb(var(--pink-1)/.7)}.hover\:border-pink-1\/75:hover{border-color:rgb(var(--pink-1)/.75)}.hover\:border-pink-1\/80:hover{border-color:rgb(var(--pink-1)/.8)}.hover\:border-pink-1\/90:hover{border-color:rgb(var(--pink-1)/.9)}.hover\:border-pink-1\/95:hover{border-color:rgb(var(--pink-1)/.95)}.hover\:border-pink-10\/0:hover{border-color:rgb(var(--pink-10)/0)}.hover\:border-pink-10\/10:hover{border-color:rgb(var(--pink-10)/.1)}.hover\:border-pink-10\/100:hover{border-color:rgb(var(--pink-10)/1)}.hover\:border-pink-10\/20:hover{border-color:rgb(var(--pink-10)/.2)}.hover\:border-pink-10\/25:hover{border-color:rgb(var(--pink-10)/.25)}.hover\:border-pink-10\/30:hover{border-color:rgb(var(--pink-10)/.3)}.hover\:border-pink-10\/40:hover{border-color:rgb(var(--pink-10)/.4)}.hover\:border-pink-10\/5:hover{border-color:rgb(var(--pink-10)/.05)}.hover\:border-pink-10\/50:hover{border-color:rgb(var(--pink-10)/.5)}.hover\:border-pink-10\/60:hover{border-color:rgb(var(--pink-10)/.6)}.hover\:border-pink-10\/70:hover{border-color:rgb(var(--pink-10)/.7)}.hover\:border-pink-10\/75:hover{border-color:rgb(var(--pink-10)/.75)}.hover\:border-pink-10\/80:hover{border-color:rgb(var(--pink-10)/.8)}.hover\:border-pink-10\/90:hover{border-color:rgb(var(--pink-10)/.9)}.hover\:border-pink-10\/95:hover{border-color:rgb(var(--pink-10)/.95)}.hover\:border-pink-2\/0:hover{border-color:rgb(var(--pink-2)/0)}.hover\:border-pink-2\/10:hover{border-color:rgb(var(--pink-2)/.1)}.hover\:border-pink-2\/100:hover{border-color:rgb(var(--pink-2)/1)}.hover\:border-pink-2\/20:hover{border-color:rgb(var(--pink-2)/.2)}.hover\:border-pink-2\/25:hover{border-color:rgb(var(--pink-2)/.25)}.hover\:border-pink-2\/30:hover{border-color:rgb(var(--pink-2)/.3)}.hover\:border-pink-2\/40:hover{border-color:rgb(var(--pink-2)/.4)}.hover\:border-pink-2\/5:hover{border-color:rgb(var(--pink-2)/.05)}.hover\:border-pink-2\/50:hover{border-color:rgb(var(--pink-2)/.5)}.hover\:border-pink-2\/60:hover{border-color:rgb(var(--pink-2)/.6)}.hover\:border-pink-2\/70:hover{border-color:rgb(var(--pink-2)/.7)}.hover\:border-pink-2\/75:hover{border-color:rgb(var(--pink-2)/.75)}.hover\:border-pink-2\/80:hover{border-color:rgb(var(--pink-2)/.8)}.hover\:border-pink-2\/90:hover{border-color:rgb(var(--pink-2)/.9)}.hover\:border-pink-2\/95:hover{border-color:rgb(var(--pink-2)/.95)}.hover\:border-pink-3\/0:hover{border-color:rgb(var(--pink-3)/0)}.hover\:border-pink-3\/10:hover{border-color:rgb(var(--pink-3)/.1)}.hover\:border-pink-3\/100:hover{border-color:rgb(var(--pink-3)/1)}.hover\:border-pink-3\/20:hover{border-color:rgb(var(--pink-3)/.2)}.hover\:border-pink-3\/25:hover{border-color:rgb(var(--pink-3)/.25)}.hover\:border-pink-3\/30:hover{border-color:rgb(var(--pink-3)/.3)}.hover\:border-pink-3\/40:hover{border-color:rgb(var(--pink-3)/.4)}.hover\:border-pink-3\/5:hover{border-color:rgb(var(--pink-3)/.05)}.hover\:border-pink-3\/50:hover{border-color:rgb(var(--pink-3)/.5)}.hover\:border-pink-3\/60:hover{border-color:rgb(var(--pink-3)/.6)}.hover\:border-pink-3\/70:hover{border-color:rgb(var(--pink-3)/.7)}.hover\:border-pink-3\/75:hover{border-color:rgb(var(--pink-3)/.75)}.hover\:border-pink-3\/80:hover{border-color:rgb(var(--pink-3)/.8)}.hover\:border-pink-3\/90:hover{border-color:rgb(var(--pink-3)/.9)}.hover\:border-pink-3\/95:hover{border-color:rgb(var(--pink-3)/.95)}.hover\:border-pink-4\/0:hover{border-color:rgb(var(--pink-4)/0)}.hover\:border-pink-4\/10:hover{border-color:rgb(var(--pink-4)/.1)}.hover\:border-pink-4\/100:hover{border-color:rgb(var(--pink-4)/1)}.hover\:border-pink-4\/20:hover{border-color:rgb(var(--pink-4)/.2)}.hover\:border-pink-4\/25:hover{border-color:rgb(var(--pink-4)/.25)}.hover\:border-pink-4\/30:hover{border-color:rgb(var(--pink-4)/.3)}.hover\:border-pink-4\/40:hover{border-color:rgb(var(--pink-4)/.4)}.hover\:border-pink-4\/5:hover{border-color:rgb(var(--pink-4)/.05)}.hover\:border-pink-4\/50:hover{border-color:rgb(var(--pink-4)/.5)}.hover\:border-pink-4\/60:hover{border-color:rgb(var(--pink-4)/.6)}.hover\:border-pink-4\/70:hover{border-color:rgb(var(--pink-4)/.7)}.hover\:border-pink-4\/75:hover{border-color:rgb(var(--pink-4)/.75)}.hover\:border-pink-4\/80:hover{border-color:rgb(var(--pink-4)/.8)}.hover\:border-pink-4\/90:hover{border-color:rgb(var(--pink-4)/.9)}.hover\:border-pink-4\/95:hover{border-color:rgb(var(--pink-4)/.95)}.hover\:border-pink-5\/0:hover{border-color:rgb(var(--pink-5)/0)}.hover\:border-pink-5\/10:hover{border-color:rgb(var(--pink-5)/.1)}.hover\:border-pink-5\/100:hover{border-color:rgb(var(--pink-5)/1)}.hover\:border-pink-5\/20:hover{border-color:rgb(var(--pink-5)/.2)}.hover\:border-pink-5\/25:hover{border-color:rgb(var(--pink-5)/.25)}.hover\:border-pink-5\/30:hover{border-color:rgb(var(--pink-5)/.3)}.hover\:border-pink-5\/40:hover{border-color:rgb(var(--pink-5)/.4)}.hover\:border-pink-5\/5:hover{border-color:rgb(var(--pink-5)/.05)}.hover\:border-pink-5\/50:hover{border-color:rgb(var(--pink-5)/.5)}.hover\:border-pink-5\/60:hover{border-color:rgb(var(--pink-5)/.6)}.hover\:border-pink-5\/70:hover{border-color:rgb(var(--pink-5)/.7)}.hover\:border-pink-5\/75:hover{border-color:rgb(var(--pink-5)/.75)}.hover\:border-pink-5\/80:hover{border-color:rgb(var(--pink-5)/.8)}.hover\:border-pink-5\/90:hover{border-color:rgb(var(--pink-5)/.9)}.hover\:border-pink-5\/95:hover{border-color:rgb(var(--pink-5)/.95)}.hover\:border-pink-6\/0:hover{border-color:rgb(var(--pink-6)/0)}.hover\:border-pink-6\/10:hover{border-color:rgb(var(--pink-6)/.1)}.hover\:border-pink-6\/100:hover{border-color:rgb(var(--pink-6)/1)}.hover\:border-pink-6\/20:hover{border-color:rgb(var(--pink-6)/.2)}.hover\:border-pink-6\/25:hover{border-color:rgb(var(--pink-6)/.25)}.hover\:border-pink-6\/30:hover{border-color:rgb(var(--pink-6)/.3)}.hover\:border-pink-6\/40:hover{border-color:rgb(var(--pink-6)/.4)}.hover\:border-pink-6\/5:hover{border-color:rgb(var(--pink-6)/.05)}.hover\:border-pink-6\/50:hover{border-color:rgb(var(--pink-6)/.5)}.hover\:border-pink-6\/60:hover{border-color:rgb(var(--pink-6)/.6)}.hover\:border-pink-6\/70:hover{border-color:rgb(var(--pink-6)/.7)}.hover\:border-pink-6\/75:hover{border-color:rgb(var(--pink-6)/.75)}.hover\:border-pink-6\/80:hover{border-color:rgb(var(--pink-6)/.8)}.hover\:border-pink-6\/90:hover{border-color:rgb(var(--pink-6)/.9)}.hover\:border-pink-6\/95:hover{border-color:rgb(var(--pink-6)/.95)}.hover\:border-pink-7\/0:hover{border-color:rgb(var(--pink-7)/0)}.hover\:border-pink-7\/10:hover{border-color:rgb(var(--pink-7)/.1)}.hover\:border-pink-7\/100:hover{border-color:rgb(var(--pink-7)/1)}.hover\:border-pink-7\/20:hover{border-color:rgb(var(--pink-7)/.2)}.hover\:border-pink-7\/25:hover{border-color:rgb(var(--pink-7)/.25)}.hover\:border-pink-7\/30:hover{border-color:rgb(var(--pink-7)/.3)}.hover\:border-pink-7\/40:hover{border-color:rgb(var(--pink-7)/.4)}.hover\:border-pink-7\/5:hover{border-color:rgb(var(--pink-7)/.05)}.hover\:border-pink-7\/50:hover{border-color:rgb(var(--pink-7)/.5)}.hover\:border-pink-7\/60:hover{border-color:rgb(var(--pink-7)/.6)}.hover\:border-pink-7\/70:hover{border-color:rgb(var(--pink-7)/.7)}.hover\:border-pink-7\/75:hover{border-color:rgb(var(--pink-7)/.75)}.hover\:border-pink-7\/80:hover{border-color:rgb(var(--pink-7)/.8)}.hover\:border-pink-7\/90:hover{border-color:rgb(var(--pink-7)/.9)}.hover\:border-pink-7\/95:hover{border-color:rgb(var(--pink-7)/.95)}.hover\:border-pink-8\/0:hover{border-color:rgb(var(--pink-8)/0)}.hover\:border-pink-8\/10:hover{border-color:rgb(var(--pink-8)/.1)}.hover\:border-pink-8\/100:hover{border-color:rgb(var(--pink-8)/1)}.hover\:border-pink-8\/20:hover{border-color:rgb(var(--pink-8)/.2)}.hover\:border-pink-8\/25:hover{border-color:rgb(var(--pink-8)/.25)}.hover\:border-pink-8\/30:hover{border-color:rgb(var(--pink-8)/.3)}.hover\:border-pink-8\/40:hover{border-color:rgb(var(--pink-8)/.4)}.hover\:border-pink-8\/5:hover{border-color:rgb(var(--pink-8)/.05)}.hover\:border-pink-8\/50:hover{border-color:rgb(var(--pink-8)/.5)}.hover\:border-pink-8\/60:hover{border-color:rgb(var(--pink-8)/.6)}.hover\:border-pink-8\/70:hover{border-color:rgb(var(--pink-8)/.7)}.hover\:border-pink-8\/75:hover{border-color:rgb(var(--pink-8)/.75)}.hover\:border-pink-8\/80:hover{border-color:rgb(var(--pink-8)/.8)}.hover\:border-pink-8\/90:hover{border-color:rgb(var(--pink-8)/.9)}.hover\:border-pink-8\/95:hover{border-color:rgb(var(--pink-8)/.95)}.hover\:border-pink-9\/0:hover{border-color:rgb(var(--pink-9)/0)}.hover\:border-pink-9\/10:hover{border-color:rgb(var(--pink-9)/.1)}.hover\:border-pink-9\/100:hover{border-color:rgb(var(--pink-9)/1)}.hover\:border-pink-9\/20:hover{border-color:rgb(var(--pink-9)/.2)}.hover\:border-pink-9\/25:hover{border-color:rgb(var(--pink-9)/.25)}.hover\:border-pink-9\/30:hover{border-color:rgb(var(--pink-9)/.3)}.hover\:border-pink-9\/40:hover{border-color:rgb(var(--pink-9)/.4)}.hover\:border-pink-9\/5:hover{border-color:rgb(var(--pink-9)/.05)}.hover\:border-pink-9\/50:hover{border-color:rgb(var(--pink-9)/.5)}.hover\:border-pink-9\/60:hover{border-color:rgb(var(--pink-9)/.6)}.hover\:border-pink-9\/70:hover{border-color:rgb(var(--pink-9)/.7)}.hover\:border-pink-9\/75:hover{border-color:rgb(var(--pink-9)/.75)}.hover\:border-pink-9\/80:hover{border-color:rgb(var(--pink-9)/.8)}.hover\:border-pink-9\/90:hover{border-color:rgb(var(--pink-9)/.9)}.hover\:border-pink-9\/95:hover{border-color:rgb(var(--pink-9)/.95)}.hover\:border-primary:hover{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.hover\:border-primary\/0:hover{border-color:rgb(var(--primary)/0)}.hover\:border-primary\/10:hover{border-color:rgb(var(--primary)/.1)}.hover\:border-primary\/100:hover{border-color:rgb(var(--primary)/1)}.hover\:border-primary\/20:hover{border-color:rgb(var(--primary)/.2)}.hover\:border-primary\/25:hover{border-color:rgb(var(--primary)/.25)}.hover\:border-primary\/30:hover{border-color:rgb(var(--primary)/.3)}.hover\:border-primary\/40:hover{border-color:rgb(var(--primary)/.4)}.hover\:border-primary\/5:hover{border-color:rgb(var(--primary)/.05)}.hover\:border-primary\/50:hover{border-color:rgb(var(--primary)/.5)}.hover\:border-primary\/60:hover{border-color:rgb(var(--primary)/.6)}.hover\:border-primary\/70:hover{border-color:rgb(var(--primary)/.7)}.hover\:border-primary\/75:hover{border-color:rgb(var(--primary)/.75)}.hover\:border-primary\/80:hover{border-color:rgb(var(--primary)/.8)}.hover\:border-primary\/90:hover{border-color:rgb(var(--primary)/.9)}.hover\:border-primary\/95:hover{border-color:rgb(var(--primary)/.95)}.hover\:border-purple-1\/0:hover{border-color:rgb(var(--purple-1)/0)}.hover\:border-purple-1\/10:hover{border-color:rgb(var(--purple-1)/.1)}.hover\:border-purple-1\/100:hover{border-color:rgb(var(--purple-1)/1)}.hover\:border-purple-1\/20:hover{border-color:rgb(var(--purple-1)/.2)}.hover\:border-purple-1\/25:hover{border-color:rgb(var(--purple-1)/.25)}.hover\:border-purple-1\/30:hover{border-color:rgb(var(--purple-1)/.3)}.hover\:border-purple-1\/40:hover{border-color:rgb(var(--purple-1)/.4)}.hover\:border-purple-1\/5:hover{border-color:rgb(var(--purple-1)/.05)}.hover\:border-purple-1\/50:hover{border-color:rgb(var(--purple-1)/.5)}.hover\:border-purple-1\/60:hover{border-color:rgb(var(--purple-1)/.6)}.hover\:border-purple-1\/70:hover{border-color:rgb(var(--purple-1)/.7)}.hover\:border-purple-1\/75:hover{border-color:rgb(var(--purple-1)/.75)}.hover\:border-purple-1\/80:hover{border-color:rgb(var(--purple-1)/.8)}.hover\:border-purple-1\/90:hover{border-color:rgb(var(--purple-1)/.9)}.hover\:border-purple-1\/95:hover{border-color:rgb(var(--purple-1)/.95)}.hover\:border-purple-10\/0:hover{border-color:rgb(var(--purple-10)/0)}.hover\:border-purple-10\/10:hover{border-color:rgb(var(--purple-10)/.1)}.hover\:border-purple-10\/100:hover{border-color:rgb(var(--purple-10)/1)}.hover\:border-purple-10\/20:hover{border-color:rgb(var(--purple-10)/.2)}.hover\:border-purple-10\/25:hover{border-color:rgb(var(--purple-10)/.25)}.hover\:border-purple-10\/30:hover{border-color:rgb(var(--purple-10)/.3)}.hover\:border-purple-10\/40:hover{border-color:rgb(var(--purple-10)/.4)}.hover\:border-purple-10\/5:hover{border-color:rgb(var(--purple-10)/.05)}.hover\:border-purple-10\/50:hover{border-color:rgb(var(--purple-10)/.5)}.hover\:border-purple-10\/60:hover{border-color:rgb(var(--purple-10)/.6)}.hover\:border-purple-10\/70:hover{border-color:rgb(var(--purple-10)/.7)}.hover\:border-purple-10\/75:hover{border-color:rgb(var(--purple-10)/.75)}.hover\:border-purple-10\/80:hover{border-color:rgb(var(--purple-10)/.8)}.hover\:border-purple-10\/90:hover{border-color:rgb(var(--purple-10)/.9)}.hover\:border-purple-10\/95:hover{border-color:rgb(var(--purple-10)/.95)}.hover\:border-purple-2\/0:hover{border-color:rgb(var(--purple-2)/0)}.hover\:border-purple-2\/10:hover{border-color:rgb(var(--purple-2)/.1)}.hover\:border-purple-2\/100:hover{border-color:rgb(var(--purple-2)/1)}.hover\:border-purple-2\/20:hover{border-color:rgb(var(--purple-2)/.2)}.hover\:border-purple-2\/25:hover{border-color:rgb(var(--purple-2)/.25)}.hover\:border-purple-2\/30:hover{border-color:rgb(var(--purple-2)/.3)}.hover\:border-purple-2\/40:hover{border-color:rgb(var(--purple-2)/.4)}.hover\:border-purple-2\/5:hover{border-color:rgb(var(--purple-2)/.05)}.hover\:border-purple-2\/50:hover{border-color:rgb(var(--purple-2)/.5)}.hover\:border-purple-2\/60:hover{border-color:rgb(var(--purple-2)/.6)}.hover\:border-purple-2\/70:hover{border-color:rgb(var(--purple-2)/.7)}.hover\:border-purple-2\/75:hover{border-color:rgb(var(--purple-2)/.75)}.hover\:border-purple-2\/80:hover{border-color:rgb(var(--purple-2)/.8)}.hover\:border-purple-2\/90:hover{border-color:rgb(var(--purple-2)/.9)}.hover\:border-purple-2\/95:hover{border-color:rgb(var(--purple-2)/.95)}.hover\:border-purple-3\/0:hover{border-color:rgb(var(--purple-3)/0)}.hover\:border-purple-3\/10:hover{border-color:rgb(var(--purple-3)/.1)}.hover\:border-purple-3\/100:hover{border-color:rgb(var(--purple-3)/1)}.hover\:border-purple-3\/20:hover{border-color:rgb(var(--purple-3)/.2)}.hover\:border-purple-3\/25:hover{border-color:rgb(var(--purple-3)/.25)}.hover\:border-purple-3\/30:hover{border-color:rgb(var(--purple-3)/.3)}.hover\:border-purple-3\/40:hover{border-color:rgb(var(--purple-3)/.4)}.hover\:border-purple-3\/5:hover{border-color:rgb(var(--purple-3)/.05)}.hover\:border-purple-3\/50:hover{border-color:rgb(var(--purple-3)/.5)}.hover\:border-purple-3\/60:hover{border-color:rgb(var(--purple-3)/.6)}.hover\:border-purple-3\/70:hover{border-color:rgb(var(--purple-3)/.7)}.hover\:border-purple-3\/75:hover{border-color:rgb(var(--purple-3)/.75)}.hover\:border-purple-3\/80:hover{border-color:rgb(var(--purple-3)/.8)}.hover\:border-purple-3\/90:hover{border-color:rgb(var(--purple-3)/.9)}.hover\:border-purple-3\/95:hover{border-color:rgb(var(--purple-3)/.95)}.hover\:border-purple-4\/0:hover{border-color:rgb(var(--purple-4)/0)}.hover\:border-purple-4\/10:hover{border-color:rgb(var(--purple-4)/.1)}.hover\:border-purple-4\/100:hover{border-color:rgb(var(--purple-4)/1)}.hover\:border-purple-4\/20:hover{border-color:rgb(var(--purple-4)/.2)}.hover\:border-purple-4\/25:hover{border-color:rgb(var(--purple-4)/.25)}.hover\:border-purple-4\/30:hover{border-color:rgb(var(--purple-4)/.3)}.hover\:border-purple-4\/40:hover{border-color:rgb(var(--purple-4)/.4)}.hover\:border-purple-4\/5:hover{border-color:rgb(var(--purple-4)/.05)}.hover\:border-purple-4\/50:hover{border-color:rgb(var(--purple-4)/.5)}.hover\:border-purple-4\/60:hover{border-color:rgb(var(--purple-4)/.6)}.hover\:border-purple-4\/70:hover{border-color:rgb(var(--purple-4)/.7)}.hover\:border-purple-4\/75:hover{border-color:rgb(var(--purple-4)/.75)}.hover\:border-purple-4\/80:hover{border-color:rgb(var(--purple-4)/.8)}.hover\:border-purple-4\/90:hover{border-color:rgb(var(--purple-4)/.9)}.hover\:border-purple-4\/95:hover{border-color:rgb(var(--purple-4)/.95)}.hover\:border-purple-5\/0:hover{border-color:rgb(var(--purple-5)/0)}.hover\:border-purple-5\/10:hover{border-color:rgb(var(--purple-5)/.1)}.hover\:border-purple-5\/100:hover{border-color:rgb(var(--purple-5)/1)}.hover\:border-purple-5\/20:hover{border-color:rgb(var(--purple-5)/.2)}.hover\:border-purple-5\/25:hover{border-color:rgb(var(--purple-5)/.25)}.hover\:border-purple-5\/30:hover{border-color:rgb(var(--purple-5)/.3)}.hover\:border-purple-5\/40:hover{border-color:rgb(var(--purple-5)/.4)}.hover\:border-purple-5\/5:hover{border-color:rgb(var(--purple-5)/.05)}.hover\:border-purple-5\/50:hover{border-color:rgb(var(--purple-5)/.5)}.hover\:border-purple-5\/60:hover{border-color:rgb(var(--purple-5)/.6)}.hover\:border-purple-5\/70:hover{border-color:rgb(var(--purple-5)/.7)}.hover\:border-purple-5\/75:hover{border-color:rgb(var(--purple-5)/.75)}.hover\:border-purple-5\/80:hover{border-color:rgb(var(--purple-5)/.8)}.hover\:border-purple-5\/90:hover{border-color:rgb(var(--purple-5)/.9)}.hover\:border-purple-5\/95:hover{border-color:rgb(var(--purple-5)/.95)}.hover\:border-purple-6\/0:hover{border-color:rgb(var(--purple-6)/0)}.hover\:border-purple-6\/10:hover{border-color:rgb(var(--purple-6)/.1)}.hover\:border-purple-6\/100:hover{border-color:rgb(var(--purple-6)/1)}.hover\:border-purple-6\/20:hover{border-color:rgb(var(--purple-6)/.2)}.hover\:border-purple-6\/25:hover{border-color:rgb(var(--purple-6)/.25)}.hover\:border-purple-6\/30:hover{border-color:rgb(var(--purple-6)/.3)}.hover\:border-purple-6\/40:hover{border-color:rgb(var(--purple-6)/.4)}.hover\:border-purple-6\/5:hover{border-color:rgb(var(--purple-6)/.05)}.hover\:border-purple-6\/50:hover{border-color:rgb(var(--purple-6)/.5)}.hover\:border-purple-6\/60:hover{border-color:rgb(var(--purple-6)/.6)}.hover\:border-purple-6\/70:hover{border-color:rgb(var(--purple-6)/.7)}.hover\:border-purple-6\/75:hover{border-color:rgb(var(--purple-6)/.75)}.hover\:border-purple-6\/80:hover{border-color:rgb(var(--purple-6)/.8)}.hover\:border-purple-6\/90:hover{border-color:rgb(var(--purple-6)/.9)}.hover\:border-purple-6\/95:hover{border-color:rgb(var(--purple-6)/.95)}.hover\:border-purple-7\/0:hover{border-color:rgb(var(--purple-7)/0)}.hover\:border-purple-7\/10:hover{border-color:rgb(var(--purple-7)/.1)}.hover\:border-purple-7\/100:hover{border-color:rgb(var(--purple-7)/1)}.hover\:border-purple-7\/20:hover{border-color:rgb(var(--purple-7)/.2)}.hover\:border-purple-7\/25:hover{border-color:rgb(var(--purple-7)/.25)}.hover\:border-purple-7\/30:hover{border-color:rgb(var(--purple-7)/.3)}.hover\:border-purple-7\/40:hover{border-color:rgb(var(--purple-7)/.4)}.hover\:border-purple-7\/5:hover{border-color:rgb(var(--purple-7)/.05)}.hover\:border-purple-7\/50:hover{border-color:rgb(var(--purple-7)/.5)}.hover\:border-purple-7\/60:hover{border-color:rgb(var(--purple-7)/.6)}.hover\:border-purple-7\/70:hover{border-color:rgb(var(--purple-7)/.7)}.hover\:border-purple-7\/75:hover{border-color:rgb(var(--purple-7)/.75)}.hover\:border-purple-7\/80:hover{border-color:rgb(var(--purple-7)/.8)}.hover\:border-purple-7\/90:hover{border-color:rgb(var(--purple-7)/.9)}.hover\:border-purple-7\/95:hover{border-color:rgb(var(--purple-7)/.95)}.hover\:border-purple-8\/0:hover{border-color:rgb(var(--purple-8)/0)}.hover\:border-purple-8\/10:hover{border-color:rgb(var(--purple-8)/.1)}.hover\:border-purple-8\/100:hover{border-color:rgb(var(--purple-8)/1)}.hover\:border-purple-8\/20:hover{border-color:rgb(var(--purple-8)/.2)}.hover\:border-purple-8\/25:hover{border-color:rgb(var(--purple-8)/.25)}.hover\:border-purple-8\/30:hover{border-color:rgb(var(--purple-8)/.3)}.hover\:border-purple-8\/40:hover{border-color:rgb(var(--purple-8)/.4)}.hover\:border-purple-8\/5:hover{border-color:rgb(var(--purple-8)/.05)}.hover\:border-purple-8\/50:hover{border-color:rgb(var(--purple-8)/.5)}.hover\:border-purple-8\/60:hover{border-color:rgb(var(--purple-8)/.6)}.hover\:border-purple-8\/70:hover{border-color:rgb(var(--purple-8)/.7)}.hover\:border-purple-8\/75:hover{border-color:rgb(var(--purple-8)/.75)}.hover\:border-purple-8\/80:hover{border-color:rgb(var(--purple-8)/.8)}.hover\:border-purple-8\/90:hover{border-color:rgb(var(--purple-8)/.9)}.hover\:border-purple-8\/95:hover{border-color:rgb(var(--purple-8)/.95)}.hover\:border-purple-9\/0:hover{border-color:rgb(var(--purple-9)/0)}.hover\:border-purple-9\/10:hover{border-color:rgb(var(--purple-9)/.1)}.hover\:border-purple-9\/100:hover{border-color:rgb(var(--purple-9)/1)}.hover\:border-purple-9\/20:hover{border-color:rgb(var(--purple-9)/.2)}.hover\:border-purple-9\/25:hover{border-color:rgb(var(--purple-9)/.25)}.hover\:border-purple-9\/30:hover{border-color:rgb(var(--purple-9)/.3)}.hover\:border-purple-9\/40:hover{border-color:rgb(var(--purple-9)/.4)}.hover\:border-purple-9\/5:hover{border-color:rgb(var(--purple-9)/.05)}.hover\:border-purple-9\/50:hover{border-color:rgb(var(--purple-9)/.5)}.hover\:border-purple-9\/60:hover{border-color:rgb(var(--purple-9)/.6)}.hover\:border-purple-9\/70:hover{border-color:rgb(var(--purple-9)/.7)}.hover\:border-purple-9\/75:hover{border-color:rgb(var(--purple-9)/.75)}.hover\:border-purple-9\/80:hover{border-color:rgb(var(--purple-9)/.8)}.hover\:border-purple-9\/90:hover{border-color:rgb(var(--purple-9)/.9)}.hover\:border-purple-9\/95:hover{border-color:rgb(var(--purple-9)/.95)}.hover\:border-red-1\/0:hover{border-color:rgb(var(--red-1)/0)}.hover\:border-red-1\/10:hover{border-color:rgb(var(--red-1)/.1)}.hover\:border-red-1\/100:hover{border-color:rgb(var(--red-1)/1)}.hover\:border-red-1\/20:hover{border-color:rgb(var(--red-1)/.2)}.hover\:border-red-1\/25:hover{border-color:rgb(var(--red-1)/.25)}.hover\:border-red-1\/30:hover{border-color:rgb(var(--red-1)/.3)}.hover\:border-red-1\/40:hover{border-color:rgb(var(--red-1)/.4)}.hover\:border-red-1\/5:hover{border-color:rgb(var(--red-1)/.05)}.hover\:border-red-1\/50:hover{border-color:rgb(var(--red-1)/.5)}.hover\:border-red-1\/60:hover{border-color:rgb(var(--red-1)/.6)}.hover\:border-red-1\/70:hover{border-color:rgb(var(--red-1)/.7)}.hover\:border-red-1\/75:hover{border-color:rgb(var(--red-1)/.75)}.hover\:border-red-1\/80:hover{border-color:rgb(var(--red-1)/.8)}.hover\:border-red-1\/90:hover{border-color:rgb(var(--red-1)/.9)}.hover\:border-red-1\/95:hover{border-color:rgb(var(--red-1)/.95)}.hover\:border-red-10\/0:hover{border-color:rgb(var(--red-10)/0)}.hover\:border-red-10\/10:hover{border-color:rgb(var(--red-10)/.1)}.hover\:border-red-10\/100:hover{border-color:rgb(var(--red-10)/1)}.hover\:border-red-10\/20:hover{border-color:rgb(var(--red-10)/.2)}.hover\:border-red-10\/25:hover{border-color:rgb(var(--red-10)/.25)}.hover\:border-red-10\/30:hover{border-color:rgb(var(--red-10)/.3)}.hover\:border-red-10\/40:hover{border-color:rgb(var(--red-10)/.4)}.hover\:border-red-10\/5:hover{border-color:rgb(var(--red-10)/.05)}.hover\:border-red-10\/50:hover{border-color:rgb(var(--red-10)/.5)}.hover\:border-red-10\/60:hover{border-color:rgb(var(--red-10)/.6)}.hover\:border-red-10\/70:hover{border-color:rgb(var(--red-10)/.7)}.hover\:border-red-10\/75:hover{border-color:rgb(var(--red-10)/.75)}.hover\:border-red-10\/80:hover{border-color:rgb(var(--red-10)/.8)}.hover\:border-red-10\/90:hover{border-color:rgb(var(--red-10)/.9)}.hover\:border-red-10\/95:hover{border-color:rgb(var(--red-10)/.95)}.hover\:border-red-2\/0:hover{border-color:rgb(var(--red-2)/0)}.hover\:border-red-2\/10:hover{border-color:rgb(var(--red-2)/.1)}.hover\:border-red-2\/100:hover{border-color:rgb(var(--red-2)/1)}.hover\:border-red-2\/20:hover{border-color:rgb(var(--red-2)/.2)}.hover\:border-red-2\/25:hover{border-color:rgb(var(--red-2)/.25)}.hover\:border-red-2\/30:hover{border-color:rgb(var(--red-2)/.3)}.hover\:border-red-2\/40:hover{border-color:rgb(var(--red-2)/.4)}.hover\:border-red-2\/5:hover{border-color:rgb(var(--red-2)/.05)}.hover\:border-red-2\/50:hover{border-color:rgb(var(--red-2)/.5)}.hover\:border-red-2\/60:hover{border-color:rgb(var(--red-2)/.6)}.hover\:border-red-2\/70:hover{border-color:rgb(var(--red-2)/.7)}.hover\:border-red-2\/75:hover{border-color:rgb(var(--red-2)/.75)}.hover\:border-red-2\/80:hover{border-color:rgb(var(--red-2)/.8)}.hover\:border-red-2\/90:hover{border-color:rgb(var(--red-2)/.9)}.hover\:border-red-2\/95:hover{border-color:rgb(var(--red-2)/.95)}.hover\:border-red-3\/0:hover{border-color:rgb(var(--red-3)/0)}.hover\:border-red-3\/10:hover{border-color:rgb(var(--red-3)/.1)}.hover\:border-red-3\/100:hover{border-color:rgb(var(--red-3)/1)}.hover\:border-red-3\/20:hover{border-color:rgb(var(--red-3)/.2)}.hover\:border-red-3\/25:hover{border-color:rgb(var(--red-3)/.25)}.hover\:border-red-3\/30:hover{border-color:rgb(var(--red-3)/.3)}.hover\:border-red-3\/40:hover{border-color:rgb(var(--red-3)/.4)}.hover\:border-red-3\/5:hover{border-color:rgb(var(--red-3)/.05)}.hover\:border-red-3\/50:hover{border-color:rgb(var(--red-3)/.5)}.hover\:border-red-3\/60:hover{border-color:rgb(var(--red-3)/.6)}.hover\:border-red-3\/70:hover{border-color:rgb(var(--red-3)/.7)}.hover\:border-red-3\/75:hover{border-color:rgb(var(--red-3)/.75)}.hover\:border-red-3\/80:hover{border-color:rgb(var(--red-3)/.8)}.hover\:border-red-3\/90:hover{border-color:rgb(var(--red-3)/.9)}.hover\:border-red-3\/95:hover{border-color:rgb(var(--red-3)/.95)}.hover\:border-red-4\/0:hover{border-color:rgb(var(--red-4)/0)}.hover\:border-red-4\/10:hover{border-color:rgb(var(--red-4)/.1)}.hover\:border-red-4\/100:hover{border-color:rgb(var(--red-4)/1)}.hover\:border-red-4\/20:hover{border-color:rgb(var(--red-4)/.2)}.hover\:border-red-4\/25:hover{border-color:rgb(var(--red-4)/.25)}.hover\:border-red-4\/30:hover{border-color:rgb(var(--red-4)/.3)}.hover\:border-red-4\/40:hover{border-color:rgb(var(--red-4)/.4)}.hover\:border-red-4\/5:hover{border-color:rgb(var(--red-4)/.05)}.hover\:border-red-4\/50:hover{border-color:rgb(var(--red-4)/.5)}.hover\:border-red-4\/60:hover{border-color:rgb(var(--red-4)/.6)}.hover\:border-red-4\/70:hover{border-color:rgb(var(--red-4)/.7)}.hover\:border-red-4\/75:hover{border-color:rgb(var(--red-4)/.75)}.hover\:border-red-4\/80:hover{border-color:rgb(var(--red-4)/.8)}.hover\:border-red-4\/90:hover{border-color:rgb(var(--red-4)/.9)}.hover\:border-red-4\/95:hover{border-color:rgb(var(--red-4)/.95)}.hover\:border-red-5\/0:hover{border-color:rgb(var(--red-5)/0)}.hover\:border-red-5\/10:hover{border-color:rgb(var(--red-5)/.1)}.hover\:border-red-5\/100:hover{border-color:rgb(var(--red-5)/1)}.hover\:border-red-5\/20:hover{border-color:rgb(var(--red-5)/.2)}.hover\:border-red-5\/25:hover{border-color:rgb(var(--red-5)/.25)}.hover\:border-red-5\/30:hover{border-color:rgb(var(--red-5)/.3)}.hover\:border-red-5\/40:hover{border-color:rgb(var(--red-5)/.4)}.hover\:border-red-5\/5:hover{border-color:rgb(var(--red-5)/.05)}.hover\:border-red-5\/50:hover{border-color:rgb(var(--red-5)/.5)}.hover\:border-red-5\/60:hover{border-color:rgb(var(--red-5)/.6)}.hover\:border-red-5\/70:hover{border-color:rgb(var(--red-5)/.7)}.hover\:border-red-5\/75:hover{border-color:rgb(var(--red-5)/.75)}.hover\:border-red-5\/80:hover{border-color:rgb(var(--red-5)/.8)}.hover\:border-red-5\/90:hover{border-color:rgb(var(--red-5)/.9)}.hover\:border-red-5\/95:hover{border-color:rgb(var(--red-5)/.95)}.hover\:border-red-6\/0:hover{border-color:rgb(var(--red-6)/0)}.hover\:border-red-6\/10:hover{border-color:rgb(var(--red-6)/.1)}.hover\:border-red-6\/100:hover{border-color:rgb(var(--red-6)/1)}.hover\:border-red-6\/20:hover{border-color:rgb(var(--red-6)/.2)}.hover\:border-red-6\/25:hover{border-color:rgb(var(--red-6)/.25)}.hover\:border-red-6\/30:hover{border-color:rgb(var(--red-6)/.3)}.hover\:border-red-6\/40:hover{border-color:rgb(var(--red-6)/.4)}.hover\:border-red-6\/5:hover{border-color:rgb(var(--red-6)/.05)}.hover\:border-red-6\/50:hover{border-color:rgb(var(--red-6)/.5)}.hover\:border-red-6\/60:hover{border-color:rgb(var(--red-6)/.6)}.hover\:border-red-6\/70:hover{border-color:rgb(var(--red-6)/.7)}.hover\:border-red-6\/75:hover{border-color:rgb(var(--red-6)/.75)}.hover\:border-red-6\/80:hover{border-color:rgb(var(--red-6)/.8)}.hover\:border-red-6\/90:hover{border-color:rgb(var(--red-6)/.9)}.hover\:border-red-6\/95:hover{border-color:rgb(var(--red-6)/.95)}.hover\:border-red-7\/0:hover{border-color:rgb(var(--red-7)/0)}.hover\:border-red-7\/10:hover{border-color:rgb(var(--red-7)/.1)}.hover\:border-red-7\/100:hover{border-color:rgb(var(--red-7)/1)}.hover\:border-red-7\/20:hover{border-color:rgb(var(--red-7)/.2)}.hover\:border-red-7\/25:hover{border-color:rgb(var(--red-7)/.25)}.hover\:border-red-7\/30:hover{border-color:rgb(var(--red-7)/.3)}.hover\:border-red-7\/40:hover{border-color:rgb(var(--red-7)/.4)}.hover\:border-red-7\/5:hover{border-color:rgb(var(--red-7)/.05)}.hover\:border-red-7\/50:hover{border-color:rgb(var(--red-7)/.5)}.hover\:border-red-7\/60:hover{border-color:rgb(var(--red-7)/.6)}.hover\:border-red-7\/70:hover{border-color:rgb(var(--red-7)/.7)}.hover\:border-red-7\/75:hover{border-color:rgb(var(--red-7)/.75)}.hover\:border-red-7\/80:hover{border-color:rgb(var(--red-7)/.8)}.hover\:border-red-7\/90:hover{border-color:rgb(var(--red-7)/.9)}.hover\:border-red-7\/95:hover{border-color:rgb(var(--red-7)/.95)}.hover\:border-red-8\/0:hover{border-color:rgb(var(--red-8)/0)}.hover\:border-red-8\/10:hover{border-color:rgb(var(--red-8)/.1)}.hover\:border-red-8\/100:hover{border-color:rgb(var(--red-8)/1)}.hover\:border-red-8\/20:hover{border-color:rgb(var(--red-8)/.2)}.hover\:border-red-8\/25:hover{border-color:rgb(var(--red-8)/.25)}.hover\:border-red-8\/30:hover{border-color:rgb(var(--red-8)/.3)}.hover\:border-red-8\/40:hover{border-color:rgb(var(--red-8)/.4)}.hover\:border-red-8\/5:hover{border-color:rgb(var(--red-8)/.05)}.hover\:border-red-8\/50:hover{border-color:rgb(var(--red-8)/.5)}.hover\:border-red-8\/60:hover{border-color:rgb(var(--red-8)/.6)}.hover\:border-red-8\/70:hover{border-color:rgb(var(--red-8)/.7)}.hover\:border-red-8\/75:hover{border-color:rgb(var(--red-8)/.75)}.hover\:border-red-8\/80:hover{border-color:rgb(var(--red-8)/.8)}.hover\:border-red-8\/90:hover{border-color:rgb(var(--red-8)/.9)}.hover\:border-red-8\/95:hover{border-color:rgb(var(--red-8)/.95)}.hover\:border-red-9\/0:hover{border-color:rgb(var(--red-9)/0)}.hover\:border-red-9\/10:hover{border-color:rgb(var(--red-9)/.1)}.hover\:border-red-9\/100:hover{border-color:rgb(var(--red-9)/1)}.hover\:border-red-9\/20:hover{border-color:rgb(var(--red-9)/.2)}.hover\:border-red-9\/25:hover{border-color:rgb(var(--red-9)/.25)}.hover\:border-red-9\/30:hover{border-color:rgb(var(--red-9)/.3)}.hover\:border-red-9\/40:hover{border-color:rgb(var(--red-9)/.4)}.hover\:border-red-9\/5:hover{border-color:rgb(var(--red-9)/.05)}.hover\:border-red-9\/50:hover{border-color:rgb(var(--red-9)/.5)}.hover\:border-red-9\/60:hover{border-color:rgb(var(--red-9)/.6)}.hover\:border-red-9\/70:hover{border-color:rgb(var(--red-9)/.7)}.hover\:border-red-9\/75:hover{border-color:rgb(var(--red-9)/.75)}.hover\:border-red-9\/80:hover{border-color:rgb(var(--red-9)/.8)}.hover\:border-red-9\/90:hover{border-color:rgb(var(--red-9)/.9)}.hover\:border-red-9\/95:hover{border-color:rgb(var(--red-9)/.95)}.hover\:border-secondary:hover{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.hover\:border-secondary\/0:hover{border-color:rgb(var(--secondary)/0)}.hover\:border-secondary\/10:hover{border-color:rgb(var(--secondary)/.1)}.hover\:border-secondary\/100:hover{border-color:rgb(var(--secondary)/1)}.hover\:border-secondary\/20:hover{border-color:rgb(var(--secondary)/.2)}.hover\:border-secondary\/25:hover{border-color:rgb(var(--secondary)/.25)}.hover\:border-secondary\/30:hover{border-color:rgb(var(--secondary)/.3)}.hover\:border-secondary\/40:hover{border-color:rgb(var(--secondary)/.4)}.hover\:border-secondary\/5:hover{border-color:rgb(var(--secondary)/.05)}.hover\:border-secondary\/50:hover{border-color:rgb(var(--secondary)/.5)}.hover\:border-secondary\/60:hover{border-color:rgb(var(--secondary)/.6)}.hover\:border-secondary\/70:hover{border-color:rgb(var(--secondary)/.7)}.hover\:border-secondary\/75:hover{border-color:rgb(var(--secondary)/.75)}.hover\:border-secondary\/80:hover{border-color:rgb(var(--secondary)/.8)}.hover\:border-secondary\/90:hover{border-color:rgb(var(--secondary)/.9)}.hover\:border-secondary\/95:hover{border-color:rgb(var(--secondary)/.95)}.hover\:border-slate-1\/0:hover{border-color:rgb(var(--slate-1)/0)}.hover\:border-slate-1\/10:hover{border-color:rgb(var(--slate-1)/.1)}.hover\:border-slate-1\/100:hover{border-color:rgb(var(--slate-1)/1)}.hover\:border-slate-1\/20:hover{border-color:rgb(var(--slate-1)/.2)}.hover\:border-slate-1\/25:hover{border-color:rgb(var(--slate-1)/.25)}.hover\:border-slate-1\/30:hover{border-color:rgb(var(--slate-1)/.3)}.hover\:border-slate-1\/40:hover{border-color:rgb(var(--slate-1)/.4)}.hover\:border-slate-1\/5:hover{border-color:rgb(var(--slate-1)/.05)}.hover\:border-slate-1\/50:hover{border-color:rgb(var(--slate-1)/.5)}.hover\:border-slate-1\/60:hover{border-color:rgb(var(--slate-1)/.6)}.hover\:border-slate-1\/70:hover{border-color:rgb(var(--slate-1)/.7)}.hover\:border-slate-1\/75:hover{border-color:rgb(var(--slate-1)/.75)}.hover\:border-slate-1\/80:hover{border-color:rgb(var(--slate-1)/.8)}.hover\:border-slate-1\/90:hover{border-color:rgb(var(--slate-1)/.9)}.hover\:border-slate-1\/95:hover{border-color:rgb(var(--slate-1)/.95)}.hover\:border-slate-10\/0:hover{border-color:rgb(var(--slate-10)/0)}.hover\:border-slate-10\/10:hover{border-color:rgb(var(--slate-10)/.1)}.hover\:border-slate-10\/100:hover{border-color:rgb(var(--slate-10)/1)}.hover\:border-slate-10\/20:hover{border-color:rgb(var(--slate-10)/.2)}.hover\:border-slate-10\/25:hover{border-color:rgb(var(--slate-10)/.25)}.hover\:border-slate-10\/30:hover{border-color:rgb(var(--slate-10)/.3)}.hover\:border-slate-10\/40:hover{border-color:rgb(var(--slate-10)/.4)}.hover\:border-slate-10\/5:hover{border-color:rgb(var(--slate-10)/.05)}.hover\:border-slate-10\/50:hover{border-color:rgb(var(--slate-10)/.5)}.hover\:border-slate-10\/60:hover{border-color:rgb(var(--slate-10)/.6)}.hover\:border-slate-10\/70:hover{border-color:rgb(var(--slate-10)/.7)}.hover\:border-slate-10\/75:hover{border-color:rgb(var(--slate-10)/.75)}.hover\:border-slate-10\/80:hover{border-color:rgb(var(--slate-10)/.8)}.hover\:border-slate-10\/90:hover{border-color:rgb(var(--slate-10)/.9)}.hover\:border-slate-10\/95:hover{border-color:rgb(var(--slate-10)/.95)}.hover\:border-slate-2\/0:hover{border-color:rgb(var(--slate-2)/0)}.hover\:border-slate-2\/10:hover{border-color:rgb(var(--slate-2)/.1)}.hover\:border-slate-2\/100:hover{border-color:rgb(var(--slate-2)/1)}.hover\:border-slate-2\/20:hover{border-color:rgb(var(--slate-2)/.2)}.hover\:border-slate-2\/25:hover{border-color:rgb(var(--slate-2)/.25)}.hover\:border-slate-2\/30:hover{border-color:rgb(var(--slate-2)/.3)}.hover\:border-slate-2\/40:hover{border-color:rgb(var(--slate-2)/.4)}.hover\:border-slate-2\/5:hover{border-color:rgb(var(--slate-2)/.05)}.hover\:border-slate-2\/50:hover{border-color:rgb(var(--slate-2)/.5)}.hover\:border-slate-2\/60:hover{border-color:rgb(var(--slate-2)/.6)}.hover\:border-slate-2\/70:hover{border-color:rgb(var(--slate-2)/.7)}.hover\:border-slate-2\/75:hover{border-color:rgb(var(--slate-2)/.75)}.hover\:border-slate-2\/80:hover{border-color:rgb(var(--slate-2)/.8)}.hover\:border-slate-2\/90:hover{border-color:rgb(var(--slate-2)/.9)}.hover\:border-slate-2\/95:hover{border-color:rgb(var(--slate-2)/.95)}.hover\:border-slate-3\/0:hover{border-color:rgb(var(--slate-3)/0)}.hover\:border-slate-3\/10:hover{border-color:rgb(var(--slate-3)/.1)}.hover\:border-slate-3\/100:hover{border-color:rgb(var(--slate-3)/1)}.hover\:border-slate-3\/20:hover{border-color:rgb(var(--slate-3)/.2)}.hover\:border-slate-3\/25:hover{border-color:rgb(var(--slate-3)/.25)}.hover\:border-slate-3\/30:hover{border-color:rgb(var(--slate-3)/.3)}.hover\:border-slate-3\/40:hover{border-color:rgb(var(--slate-3)/.4)}.hover\:border-slate-3\/5:hover{border-color:rgb(var(--slate-3)/.05)}.hover\:border-slate-3\/50:hover{border-color:rgb(var(--slate-3)/.5)}.hover\:border-slate-3\/60:hover{border-color:rgb(var(--slate-3)/.6)}.hover\:border-slate-3\/70:hover{border-color:rgb(var(--slate-3)/.7)}.hover\:border-slate-3\/75:hover{border-color:rgb(var(--slate-3)/.75)}.hover\:border-slate-3\/80:hover{border-color:rgb(var(--slate-3)/.8)}.hover\:border-slate-3\/90:hover{border-color:rgb(var(--slate-3)/.9)}.hover\:border-slate-3\/95:hover{border-color:rgb(var(--slate-3)/.95)}.hover\:border-slate-4\/0:hover{border-color:rgb(var(--slate-4)/0)}.hover\:border-slate-4\/10:hover{border-color:rgb(var(--slate-4)/.1)}.hover\:border-slate-4\/100:hover{border-color:rgb(var(--slate-4)/1)}.hover\:border-slate-4\/20:hover{border-color:rgb(var(--slate-4)/.2)}.hover\:border-slate-4\/25:hover{border-color:rgb(var(--slate-4)/.25)}.hover\:border-slate-4\/30:hover{border-color:rgb(var(--slate-4)/.3)}.hover\:border-slate-4\/40:hover{border-color:rgb(var(--slate-4)/.4)}.hover\:border-slate-4\/5:hover{border-color:rgb(var(--slate-4)/.05)}.hover\:border-slate-4\/50:hover{border-color:rgb(var(--slate-4)/.5)}.hover\:border-slate-4\/60:hover{border-color:rgb(var(--slate-4)/.6)}.hover\:border-slate-4\/70:hover{border-color:rgb(var(--slate-4)/.7)}.hover\:border-slate-4\/75:hover{border-color:rgb(var(--slate-4)/.75)}.hover\:border-slate-4\/80:hover{border-color:rgb(var(--slate-4)/.8)}.hover\:border-slate-4\/90:hover{border-color:rgb(var(--slate-4)/.9)}.hover\:border-slate-4\/95:hover{border-color:rgb(var(--slate-4)/.95)}.hover\:border-slate-5\/0:hover{border-color:rgb(var(--slate-5)/0)}.hover\:border-slate-5\/10:hover{border-color:rgb(var(--slate-5)/.1)}.hover\:border-slate-5\/100:hover{border-color:rgb(var(--slate-5)/1)}.hover\:border-slate-5\/20:hover{border-color:rgb(var(--slate-5)/.2)}.hover\:border-slate-5\/25:hover{border-color:rgb(var(--slate-5)/.25)}.hover\:border-slate-5\/30:hover{border-color:rgb(var(--slate-5)/.3)}.hover\:border-slate-5\/40:hover{border-color:rgb(var(--slate-5)/.4)}.hover\:border-slate-5\/5:hover{border-color:rgb(var(--slate-5)/.05)}.hover\:border-slate-5\/50:hover{border-color:rgb(var(--slate-5)/.5)}.hover\:border-slate-5\/60:hover{border-color:rgb(var(--slate-5)/.6)}.hover\:border-slate-5\/70:hover{border-color:rgb(var(--slate-5)/.7)}.hover\:border-slate-5\/75:hover{border-color:rgb(var(--slate-5)/.75)}.hover\:border-slate-5\/80:hover{border-color:rgb(var(--slate-5)/.8)}.hover\:border-slate-5\/90:hover{border-color:rgb(var(--slate-5)/.9)}.hover\:border-slate-5\/95:hover{border-color:rgb(var(--slate-5)/.95)}.hover\:border-slate-6\/0:hover{border-color:rgb(var(--slate-6)/0)}.hover\:border-slate-6\/10:hover{border-color:rgb(var(--slate-6)/.1)}.hover\:border-slate-6\/100:hover{border-color:rgb(var(--slate-6)/1)}.hover\:border-slate-6\/20:hover{border-color:rgb(var(--slate-6)/.2)}.hover\:border-slate-6\/25:hover{border-color:rgb(var(--slate-6)/.25)}.hover\:border-slate-6\/30:hover{border-color:rgb(var(--slate-6)/.3)}.hover\:border-slate-6\/40:hover{border-color:rgb(var(--slate-6)/.4)}.hover\:border-slate-6\/5:hover{border-color:rgb(var(--slate-6)/.05)}.hover\:border-slate-6\/50:hover{border-color:rgb(var(--slate-6)/.5)}.hover\:border-slate-6\/60:hover{border-color:rgb(var(--slate-6)/.6)}.hover\:border-slate-6\/70:hover{border-color:rgb(var(--slate-6)/.7)}.hover\:border-slate-6\/75:hover{border-color:rgb(var(--slate-6)/.75)}.hover\:border-slate-6\/80:hover{border-color:rgb(var(--slate-6)/.8)}.hover\:border-slate-6\/90:hover{border-color:rgb(var(--slate-6)/.9)}.hover\:border-slate-6\/95:hover{border-color:rgb(var(--slate-6)/.95)}.hover\:border-slate-7\/0:hover{border-color:rgb(var(--slate-7)/0)}.hover\:border-slate-7\/10:hover{border-color:rgb(var(--slate-7)/.1)}.hover\:border-slate-7\/100:hover{border-color:rgb(var(--slate-7)/1)}.hover\:border-slate-7\/20:hover{border-color:rgb(var(--slate-7)/.2)}.hover\:border-slate-7\/25:hover{border-color:rgb(var(--slate-7)/.25)}.hover\:border-slate-7\/30:hover{border-color:rgb(var(--slate-7)/.3)}.hover\:border-slate-7\/40:hover{border-color:rgb(var(--slate-7)/.4)}.hover\:border-slate-7\/5:hover{border-color:rgb(var(--slate-7)/.05)}.hover\:border-slate-7\/50:hover{border-color:rgb(var(--slate-7)/.5)}.hover\:border-slate-7\/60:hover{border-color:rgb(var(--slate-7)/.6)}.hover\:border-slate-7\/70:hover{border-color:rgb(var(--slate-7)/.7)}.hover\:border-slate-7\/75:hover{border-color:rgb(var(--slate-7)/.75)}.hover\:border-slate-7\/80:hover{border-color:rgb(var(--slate-7)/.8)}.hover\:border-slate-7\/90:hover{border-color:rgb(var(--slate-7)/.9)}.hover\:border-slate-7\/95:hover{border-color:rgb(var(--slate-7)/.95)}.hover\:border-slate-8\/0:hover{border-color:rgb(var(--slate-8)/0)}.hover\:border-slate-8\/10:hover{border-color:rgb(var(--slate-8)/.1)}.hover\:border-slate-8\/100:hover{border-color:rgb(var(--slate-8)/1)}.hover\:border-slate-8\/20:hover{border-color:rgb(var(--slate-8)/.2)}.hover\:border-slate-8\/25:hover{border-color:rgb(var(--slate-8)/.25)}.hover\:border-slate-8\/30:hover{border-color:rgb(var(--slate-8)/.3)}.hover\:border-slate-8\/40:hover{border-color:rgb(var(--slate-8)/.4)}.hover\:border-slate-8\/5:hover{border-color:rgb(var(--slate-8)/.05)}.hover\:border-slate-8\/50:hover{border-color:rgb(var(--slate-8)/.5)}.hover\:border-slate-8\/60:hover{border-color:rgb(var(--slate-8)/.6)}.hover\:border-slate-8\/70:hover{border-color:rgb(var(--slate-8)/.7)}.hover\:border-slate-8\/75:hover{border-color:rgb(var(--slate-8)/.75)}.hover\:border-slate-8\/80:hover{border-color:rgb(var(--slate-8)/.8)}.hover\:border-slate-8\/90:hover{border-color:rgb(var(--slate-8)/.9)}.hover\:border-slate-8\/95:hover{border-color:rgb(var(--slate-8)/.95)}.hover\:border-slate-9\/0:hover{border-color:rgb(var(--slate-9)/0)}.hover\:border-slate-9\/10:hover{border-color:rgb(var(--slate-9)/.1)}.hover\:border-slate-9\/100:hover{border-color:rgb(var(--slate-9)/1)}.hover\:border-slate-9\/20:hover{border-color:rgb(var(--slate-9)/.2)}.hover\:border-slate-9\/25:hover{border-color:rgb(var(--slate-9)/.25)}.hover\:border-slate-9\/30:hover{border-color:rgb(var(--slate-9)/.3)}.hover\:border-slate-9\/40:hover{border-color:rgb(var(--slate-9)/.4)}.hover\:border-slate-9\/5:hover{border-color:rgb(var(--slate-9)/.05)}.hover\:border-slate-9\/50:hover{border-color:rgb(var(--slate-9)/.5)}.hover\:border-slate-9\/60:hover{border-color:rgb(var(--slate-9)/.6)}.hover\:border-slate-9\/70:hover{border-color:rgb(var(--slate-9)/.7)}.hover\:border-slate-9\/75:hover{border-color:rgb(var(--slate-9)/.75)}.hover\:border-slate-9\/80:hover{border-color:rgb(var(--slate-9)/.8)}.hover\:border-slate-9\/90:hover{border-color:rgb(var(--slate-9)/.9)}.hover\:border-slate-9\/95:hover{border-color:rgb(var(--slate-9)/.95)}.hover\:border-success:hover{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.hover\:border-success\/0:hover{border-color:rgb(var(--success)/0)}.hover\:border-success\/10:hover{border-color:rgb(var(--success)/.1)}.hover\:border-success\/100:hover{border-color:rgb(var(--success)/1)}.hover\:border-success\/20:hover{border-color:rgb(var(--success)/.2)}.hover\:border-success\/25:hover{border-color:rgb(var(--success)/.25)}.hover\:border-success\/30:hover{border-color:rgb(var(--success)/.3)}.hover\:border-success\/40:hover{border-color:rgb(var(--success)/.4)}.hover\:border-success\/5:hover{border-color:rgb(var(--success)/.05)}.hover\:border-success\/50:hover{border-color:rgb(var(--success)/.5)}.hover\:border-success\/60:hover{border-color:rgb(var(--success)/.6)}.hover\:border-success\/70:hover{border-color:rgb(var(--success)/.7)}.hover\:border-success\/75:hover{border-color:rgb(var(--success)/.75)}.hover\:border-success\/80:hover{border-color:rgb(var(--success)/.8)}.hover\:border-success\/90:hover{border-color:rgb(var(--success)/.9)}.hover\:border-success\/95:hover{border-color:rgb(var(--success)/.95)}.hover\:border-warning:hover{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.hover\:border-warning\/0:hover{border-color:rgb(var(--warning)/0)}.hover\:border-warning\/10:hover{border-color:rgb(var(--warning)/.1)}.hover\:border-warning\/100:hover{border-color:rgb(var(--warning)/1)}.hover\:border-warning\/20:hover{border-color:rgb(var(--warning)/.2)}.hover\:border-warning\/25:hover{border-color:rgb(var(--warning)/.25)}.hover\:border-warning\/30:hover{border-color:rgb(var(--warning)/.3)}.hover\:border-warning\/40:hover{border-color:rgb(var(--warning)/.4)}.hover\:border-warning\/5:hover{border-color:rgb(var(--warning)/.05)}.hover\:border-warning\/50:hover{border-color:rgb(var(--warning)/.5)}.hover\:border-warning\/60:hover{border-color:rgb(var(--warning)/.6)}.hover\:border-warning\/70:hover{border-color:rgb(var(--warning)/.7)}.hover\:border-warning\/75:hover{border-color:rgb(var(--warning)/.75)}.hover\:border-warning\/80:hover{border-color:rgb(var(--warning)/.8)}.hover\:border-warning\/90:hover{border-color:rgb(var(--warning)/.9)}.hover\:border-warning\/95:hover{border-color:rgb(var(--warning)/.95)}.hover\:border-white:hover{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.hover\:border-white\/0:hover{border-color:hsla(0,0%,100%,0)}.hover\:border-white\/10:hover{border-color:hsla(0,0%,100%,.1)}.hover\:border-white\/100:hover{border-color:#fff}.hover\:border-white\/20:hover{border-color:hsla(0,0%,100%,.2)}.hover\:border-white\/25:hover{border-color:hsla(0,0%,100%,.25)}.hover\:border-white\/30:hover{border-color:hsla(0,0%,100%,.3)}.hover\:border-white\/40:hover{border-color:hsla(0,0%,100%,.4)}.hover\:border-white\/5:hover{border-color:hsla(0,0%,100%,.05)}.hover\:border-white\/50:hover{border-color:hsla(0,0%,100%,.5)}.hover\:border-white\/60:hover{border-color:hsla(0,0%,100%,.6)}.hover\:border-white\/70:hover{border-color:hsla(0,0%,100%,.7)}.hover\:border-white\/75:hover{border-color:hsla(0,0%,100%,.75)}.hover\:border-white\/80:hover{border-color:hsla(0,0%,100%,.8)}.hover\:border-white\/90:hover{border-color:hsla(0,0%,100%,.9)}.hover\:border-white\/95:hover{border-color:hsla(0,0%,100%,.95)}.hover\:border-whiteInverted:hover{--tw-border-opacity:1;border-color:rgb(var(--whiteInverted)/var(--tw-border-opacity))}.hover\:border-whiteInverted\/0:hover{border-color:rgb(var(--whiteInverted)/0)}.hover\:border-whiteInverted\/10:hover{border-color:rgb(var(--whiteInverted)/.1)}.hover\:border-whiteInverted\/100:hover{border-color:rgb(var(--whiteInverted)/1)}.hover\:border-whiteInverted\/20:hover{border-color:rgb(var(--whiteInverted)/.2)}.hover\:border-whiteInverted\/25:hover{border-color:rgb(var(--whiteInverted)/.25)}.hover\:border-whiteInverted\/30:hover{border-color:rgb(var(--whiteInverted)/.3)}.hover\:border-whiteInverted\/40:hover{border-color:rgb(var(--whiteInverted)/.4)}.hover\:border-whiteInverted\/5:hover{border-color:rgb(var(--whiteInverted)/.05)}.hover\:border-whiteInverted\/50:hover{border-color:rgb(var(--whiteInverted)/.5)}.hover\:border-whiteInverted\/60:hover{border-color:rgb(var(--whiteInverted)/.6)}.hover\:border-whiteInverted\/70:hover{border-color:rgb(var(--whiteInverted)/.7)}.hover\:border-whiteInverted\/75:hover{border-color:rgb(var(--whiteInverted)/.75)}.hover\:border-whiteInverted\/80:hover{border-color:rgb(var(--whiteInverted)/.8)}.hover\:border-whiteInverted\/90:hover{border-color:rgb(var(--whiteInverted)/.9)}.hover\:border-whiteInverted\/95:hover{border-color:rgb(var(--whiteInverted)/.95)}.hover\:bg-backgroundPrimary:hover{--tw-bg-opacity:1;background-color:rgb(var(--backgroundPrimary)/var(--tw-bg-opacity))}.hover\:bg-backgroundPrimary\/0:hover{background-color:rgb(var(--backgroundPrimary)/0)}.hover\:bg-backgroundPrimary\/10:hover{background-color:rgb(var(--backgroundPrimary)/.1)}.hover\:bg-backgroundPrimary\/100:hover{background-color:rgb(var(--backgroundPrimary)/1)}.hover\:bg-backgroundPrimary\/20:hover{background-color:rgb(var(--backgroundPrimary)/.2)}.hover\:bg-backgroundPrimary\/25:hover{background-color:rgb(var(--backgroundPrimary)/.25)}.hover\:bg-backgroundPrimary\/30:hover{background-color:rgb(var(--backgroundPrimary)/.3)}.hover\:bg-backgroundPrimary\/40:hover{background-color:rgb(var(--backgroundPrimary)/.4)}.hover\:bg-backgroundPrimary\/5:hover{background-color:rgb(var(--backgroundPrimary)/.05)}.hover\:bg-backgroundPrimary\/50:hover{background-color:rgb(var(--backgroundPrimary)/.5)}.hover\:bg-backgroundPrimary\/60:hover{background-color:rgb(var(--backgroundPrimary)/.6)}.hover\:bg-backgroundPrimary\/70:hover{background-color:rgb(var(--backgroundPrimary)/.7)}.hover\:bg-backgroundPrimary\/75:hover{background-color:rgb(var(--backgroundPrimary)/.75)}.hover\:bg-backgroundPrimary\/80:hover{background-color:rgb(var(--backgroundPrimary)/.8)}.hover\:bg-backgroundPrimary\/90:hover{background-color:rgb(var(--backgroundPrimary)/.9)}.hover\:bg-backgroundPrimary\/95:hover{background-color:rgb(var(--backgroundPrimary)/.95)}.hover\:bg-backgroundSecondary:hover{--tw-bg-opacity:1;background-color:rgb(var(--backgroundSecondary)/var(--tw-bg-opacity))}.hover\:bg-backgroundSecondary\/0:hover{background-color:rgb(var(--backgroundSecondary)/0)}.hover\:bg-backgroundSecondary\/10:hover{background-color:rgb(var(--backgroundSecondary)/.1)}.hover\:bg-backgroundSecondary\/100:hover{background-color:rgb(var(--backgroundSecondary)/1)}.hover\:bg-backgroundSecondary\/20:hover{background-color:rgb(var(--backgroundSecondary)/.2)}.hover\:bg-backgroundSecondary\/25:hover{background-color:rgb(var(--backgroundSecondary)/.25)}.hover\:bg-backgroundSecondary\/30:hover{background-color:rgb(var(--backgroundSecondary)/.3)}.hover\:bg-backgroundSecondary\/40:hover{background-color:rgb(var(--backgroundSecondary)/.4)}.hover\:bg-backgroundSecondary\/5:hover{background-color:rgb(var(--backgroundSecondary)/.05)}.hover\:bg-backgroundSecondary\/50:hover{background-color:rgb(var(--backgroundSecondary)/.5)}.hover\:bg-backgroundSecondary\/60:hover{background-color:rgb(var(--backgroundSecondary)/.6)}.hover\:bg-backgroundSecondary\/70:hover{background-color:rgb(var(--backgroundSecondary)/.7)}.hover\:bg-backgroundSecondary\/75:hover{background-color:rgb(var(--backgroundSecondary)/.75)}.hover\:bg-backgroundSecondary\/80:hover{background-color:rgb(var(--backgroundSecondary)/.8)}.hover\:bg-backgroundSecondary\/90:hover{background-color:rgb(var(--backgroundSecondary)/.9)}.hover\:bg-backgroundSecondary\/95:hover{background-color:rgb(var(--backgroundSecondary)/.95)}.hover\:bg-black:hover{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.hover\:bg-black\/0:hover{background-color:transparent}.hover\:bg-black\/10:hover{background-color:rgba(0,0,0,.1)}.hover\:bg-black\/100:hover{background-color:#000}.hover\:bg-black\/20:hover{background-color:rgba(0,0,0,.2)}.hover\:bg-black\/25:hover{background-color:rgba(0,0,0,.25)}.hover\:bg-black\/30:hover{background-color:rgba(0,0,0,.3)}.hover\:bg-black\/40:hover{background-color:rgba(0,0,0,.4)}.hover\:bg-black\/5:hover{background-color:rgba(0,0,0,.05)}.hover\:bg-black\/50:hover{background-color:rgba(0,0,0,.5)}.hover\:bg-black\/60:hover{background-color:rgba(0,0,0,.6)}.hover\:bg-black\/70:hover{background-color:rgba(0,0,0,.7)}.hover\:bg-black\/75:hover{background-color:rgba(0,0,0,.75)}.hover\:bg-black\/80:hover{background-color:rgba(0,0,0,.8)}.hover\:bg-black\/90:hover{background-color:rgba(0,0,0,.9)}.hover\:bg-black\/95:hover{background-color:rgba(0,0,0,.95)}.hover\:bg-blackInverted:hover{--tw-bg-opacity:1;background-color:rgb(var(--blackInverted)/var(--tw-bg-opacity))}.hover\:bg-blackInverted\/0:hover{background-color:rgb(var(--blackInverted)/0)}.hover\:bg-blackInverted\/10:hover{background-color:rgb(var(--blackInverted)/.1)}.hover\:bg-blackInverted\/100:hover{background-color:rgb(var(--blackInverted)/1)}.hover\:bg-blackInverted\/20:hover{background-color:rgb(var(--blackInverted)/.2)}.hover\:bg-blackInverted\/25:hover{background-color:rgb(var(--blackInverted)/.25)}.hover\:bg-blackInverted\/30:hover{background-color:rgb(var(--blackInverted)/.3)}.hover\:bg-blackInverted\/40:hover{background-color:rgb(var(--blackInverted)/.4)}.hover\:bg-blackInverted\/5:hover{background-color:rgb(var(--blackInverted)/.05)}.hover\:bg-blackInverted\/50:hover{background-color:rgb(var(--blackInverted)/.5)}.hover\:bg-blackInverted\/60:hover{background-color:rgb(var(--blackInverted)/.6)}.hover\:bg-blackInverted\/70:hover{background-color:rgb(var(--blackInverted)/.7)}.hover\:bg-blackInverted\/75:hover{background-color:rgb(var(--blackInverted)/.75)}.hover\:bg-blackInverted\/80:hover{background-color:rgb(var(--blackInverted)/.8)}.hover\:bg-blackInverted\/90:hover{background-color:rgb(var(--blackInverted)/.9)}.hover\:bg-blackInverted\/95:hover{background-color:rgb(var(--blackInverted)/.95)}.hover\:bg-blue-1\/0:hover{background-color:rgb(var(--blue-1)/0)}.hover\:bg-blue-1\/10:hover{background-color:rgb(var(--blue-1)/.1)}.hover\:bg-blue-1\/100:hover{background-color:rgb(var(--blue-1)/1)}.hover\:bg-blue-1\/20:hover{background-color:rgb(var(--blue-1)/.2)}.hover\:bg-blue-1\/25:hover{background-color:rgb(var(--blue-1)/.25)}.hover\:bg-blue-1\/30:hover{background-color:rgb(var(--blue-1)/.3)}.hover\:bg-blue-1\/40:hover{background-color:rgb(var(--blue-1)/.4)}.hover\:bg-blue-1\/5:hover{background-color:rgb(var(--blue-1)/.05)}.hover\:bg-blue-1\/50:hover{background-color:rgb(var(--blue-1)/.5)}.hover\:bg-blue-1\/60:hover{background-color:rgb(var(--blue-1)/.6)}.hover\:bg-blue-1\/70:hover{background-color:rgb(var(--blue-1)/.7)}.hover\:bg-blue-1\/75:hover{background-color:rgb(var(--blue-1)/.75)}.hover\:bg-blue-1\/80:hover{background-color:rgb(var(--blue-1)/.8)}.hover\:bg-blue-1\/90:hover{background-color:rgb(var(--blue-1)/.9)}.hover\:bg-blue-1\/95:hover{background-color:rgb(var(--blue-1)/.95)}.hover\:bg-blue-10\/0:hover{background-color:rgb(var(--blue-10)/0)}.hover\:bg-blue-10\/10:hover{background-color:rgb(var(--blue-10)/.1)}.hover\:bg-blue-10\/100:hover{background-color:rgb(var(--blue-10)/1)}.hover\:bg-blue-10\/20:hover{background-color:rgb(var(--blue-10)/.2)}.hover\:bg-blue-10\/25:hover{background-color:rgb(var(--blue-10)/.25)}.hover\:bg-blue-10\/30:hover{background-color:rgb(var(--blue-10)/.3)}.hover\:bg-blue-10\/40:hover{background-color:rgb(var(--blue-10)/.4)}.hover\:bg-blue-10\/5:hover{background-color:rgb(var(--blue-10)/.05)}.hover\:bg-blue-10\/50:hover{background-color:rgb(var(--blue-10)/.5)}.hover\:bg-blue-10\/60:hover{background-color:rgb(var(--blue-10)/.6)}.hover\:bg-blue-10\/70:hover{background-color:rgb(var(--blue-10)/.7)}.hover\:bg-blue-10\/75:hover{background-color:rgb(var(--blue-10)/.75)}.hover\:bg-blue-10\/80:hover{background-color:rgb(var(--blue-10)/.8)}.hover\:bg-blue-10\/90:hover{background-color:rgb(var(--blue-10)/.9)}.hover\:bg-blue-10\/95:hover{background-color:rgb(var(--blue-10)/.95)}.hover\:bg-blue-2\/0:hover{background-color:rgb(var(--blue-2)/0)}.hover\:bg-blue-2\/10:hover{background-color:rgb(var(--blue-2)/.1)}.hover\:bg-blue-2\/100:hover{background-color:rgb(var(--blue-2)/1)}.hover\:bg-blue-2\/20:hover{background-color:rgb(var(--blue-2)/.2)}.hover\:bg-blue-2\/25:hover{background-color:rgb(var(--blue-2)/.25)}.hover\:bg-blue-2\/30:hover{background-color:rgb(var(--blue-2)/.3)}.hover\:bg-blue-2\/40:hover{background-color:rgb(var(--blue-2)/.4)}.hover\:bg-blue-2\/5:hover{background-color:rgb(var(--blue-2)/.05)}.hover\:bg-blue-2\/50:hover{background-color:rgb(var(--blue-2)/.5)}.hover\:bg-blue-2\/60:hover{background-color:rgb(var(--blue-2)/.6)}.hover\:bg-blue-2\/70:hover{background-color:rgb(var(--blue-2)/.7)}.hover\:bg-blue-2\/75:hover{background-color:rgb(var(--blue-2)/.75)}.hover\:bg-blue-2\/80:hover{background-color:rgb(var(--blue-2)/.8)}.hover\:bg-blue-2\/90:hover{background-color:rgb(var(--blue-2)/.9)}.hover\:bg-blue-2\/95:hover{background-color:rgb(var(--blue-2)/.95)}.hover\:bg-blue-3\/0:hover{background-color:rgb(var(--blue-3)/0)}.hover\:bg-blue-3\/10:hover{background-color:rgb(var(--blue-3)/.1)}.hover\:bg-blue-3\/100:hover{background-color:rgb(var(--blue-3)/1)}.hover\:bg-blue-3\/20:hover{background-color:rgb(var(--blue-3)/.2)}.hover\:bg-blue-3\/25:hover{background-color:rgb(var(--blue-3)/.25)}.hover\:bg-blue-3\/30:hover{background-color:rgb(var(--blue-3)/.3)}.hover\:bg-blue-3\/40:hover{background-color:rgb(var(--blue-3)/.4)}.hover\:bg-blue-3\/5:hover{background-color:rgb(var(--blue-3)/.05)}.hover\:bg-blue-3\/50:hover{background-color:rgb(var(--blue-3)/.5)}.hover\:bg-blue-3\/60:hover{background-color:rgb(var(--blue-3)/.6)}.hover\:bg-blue-3\/70:hover{background-color:rgb(var(--blue-3)/.7)}.hover\:bg-blue-3\/75:hover{background-color:rgb(var(--blue-3)/.75)}.hover\:bg-blue-3\/80:hover{background-color:rgb(var(--blue-3)/.8)}.hover\:bg-blue-3\/90:hover{background-color:rgb(var(--blue-3)/.9)}.hover\:bg-blue-3\/95:hover{background-color:rgb(var(--blue-3)/.95)}.hover\:bg-blue-4\/0:hover{background-color:rgb(var(--blue-4)/0)}.hover\:bg-blue-4\/10:hover{background-color:rgb(var(--blue-4)/.1)}.hover\:bg-blue-4\/100:hover{background-color:rgb(var(--blue-4)/1)}.hover\:bg-blue-4\/20:hover{background-color:rgb(var(--blue-4)/.2)}.hover\:bg-blue-4\/25:hover{background-color:rgb(var(--blue-4)/.25)}.hover\:bg-blue-4\/30:hover{background-color:rgb(var(--blue-4)/.3)}.hover\:bg-blue-4\/40:hover{background-color:rgb(var(--blue-4)/.4)}.hover\:bg-blue-4\/5:hover{background-color:rgb(var(--blue-4)/.05)}.hover\:bg-blue-4\/50:hover{background-color:rgb(var(--blue-4)/.5)}.hover\:bg-blue-4\/60:hover{background-color:rgb(var(--blue-4)/.6)}.hover\:bg-blue-4\/70:hover{background-color:rgb(var(--blue-4)/.7)}.hover\:bg-blue-4\/75:hover{background-color:rgb(var(--blue-4)/.75)}.hover\:bg-blue-4\/80:hover{background-color:rgb(var(--blue-4)/.8)}.hover\:bg-blue-4\/90:hover{background-color:rgb(var(--blue-4)/.9)}.hover\:bg-blue-4\/95:hover{background-color:rgb(var(--blue-4)/.95)}.hover\:bg-blue-5\/0:hover{background-color:rgb(var(--blue-5)/0)}.hover\:bg-blue-5\/10:hover{background-color:rgb(var(--blue-5)/.1)}.hover\:bg-blue-5\/100:hover{background-color:rgb(var(--blue-5)/1)}.hover\:bg-blue-5\/20:hover{background-color:rgb(var(--blue-5)/.2)}.hover\:bg-blue-5\/25:hover{background-color:rgb(var(--blue-5)/.25)}.hover\:bg-blue-5\/30:hover{background-color:rgb(var(--blue-5)/.3)}.hover\:bg-blue-5\/40:hover{background-color:rgb(var(--blue-5)/.4)}.hover\:bg-blue-5\/5:hover{background-color:rgb(var(--blue-5)/.05)}.hover\:bg-blue-5\/50:hover{background-color:rgb(var(--blue-5)/.5)}.hover\:bg-blue-5\/60:hover{background-color:rgb(var(--blue-5)/.6)}.hover\:bg-blue-5\/70:hover{background-color:rgb(var(--blue-5)/.7)}.hover\:bg-blue-5\/75:hover{background-color:rgb(var(--blue-5)/.75)}.hover\:bg-blue-5\/80:hover{background-color:rgb(var(--blue-5)/.8)}.hover\:bg-blue-5\/90:hover{background-color:rgb(var(--blue-5)/.9)}.hover\:bg-blue-5\/95:hover{background-color:rgb(var(--blue-5)/.95)}.hover\:bg-blue-6\/0:hover{background-color:rgb(var(--blue-6)/0)}.hover\:bg-blue-6\/10:hover{background-color:rgb(var(--blue-6)/.1)}.hover\:bg-blue-6\/100:hover{background-color:rgb(var(--blue-6)/1)}.hover\:bg-blue-6\/20:hover{background-color:rgb(var(--blue-6)/.2)}.hover\:bg-blue-6\/25:hover{background-color:rgb(var(--blue-6)/.25)}.hover\:bg-blue-6\/30:hover{background-color:rgb(var(--blue-6)/.3)}.hover\:bg-blue-6\/40:hover{background-color:rgb(var(--blue-6)/.4)}.hover\:bg-blue-6\/5:hover{background-color:rgb(var(--blue-6)/.05)}.hover\:bg-blue-6\/50:hover{background-color:rgb(var(--blue-6)/.5)}.hover\:bg-blue-6\/60:hover{background-color:rgb(var(--blue-6)/.6)}.hover\:bg-blue-6\/70:hover{background-color:rgb(var(--blue-6)/.7)}.hover\:bg-blue-6\/75:hover{background-color:rgb(var(--blue-6)/.75)}.hover\:bg-blue-6\/80:hover{background-color:rgb(var(--blue-6)/.8)}.hover\:bg-blue-6\/90:hover{background-color:rgb(var(--blue-6)/.9)}.hover\:bg-blue-6\/95:hover{background-color:rgb(var(--blue-6)/.95)}.hover\:bg-blue-7\/0:hover{background-color:rgb(var(--blue-7)/0)}.hover\:bg-blue-7\/10:hover{background-color:rgb(var(--blue-7)/.1)}.hover\:bg-blue-7\/100:hover{background-color:rgb(var(--blue-7)/1)}.hover\:bg-blue-7\/20:hover{background-color:rgb(var(--blue-7)/.2)}.hover\:bg-blue-7\/25:hover{background-color:rgb(var(--blue-7)/.25)}.hover\:bg-blue-7\/30:hover{background-color:rgb(var(--blue-7)/.3)}.hover\:bg-blue-7\/40:hover{background-color:rgb(var(--blue-7)/.4)}.hover\:bg-blue-7\/5:hover{background-color:rgb(var(--blue-7)/.05)}.hover\:bg-blue-7\/50:hover{background-color:rgb(var(--blue-7)/.5)}.hover\:bg-blue-7\/60:hover{background-color:rgb(var(--blue-7)/.6)}.hover\:bg-blue-7\/70:hover{background-color:rgb(var(--blue-7)/.7)}.hover\:bg-blue-7\/75:hover{background-color:rgb(var(--blue-7)/.75)}.hover\:bg-blue-7\/80:hover{background-color:rgb(var(--blue-7)/.8)}.hover\:bg-blue-7\/90:hover{background-color:rgb(var(--blue-7)/.9)}.hover\:bg-blue-7\/95:hover{background-color:rgb(var(--blue-7)/.95)}.hover\:bg-blue-8\/0:hover{background-color:rgb(var(--blue-8)/0)}.hover\:bg-blue-8\/10:hover{background-color:rgb(var(--blue-8)/.1)}.hover\:bg-blue-8\/100:hover{background-color:rgb(var(--blue-8)/1)}.hover\:bg-blue-8\/20:hover{background-color:rgb(var(--blue-8)/.2)}.hover\:bg-blue-8\/25:hover{background-color:rgb(var(--blue-8)/.25)}.hover\:bg-blue-8\/30:hover{background-color:rgb(var(--blue-8)/.3)}.hover\:bg-blue-8\/40:hover{background-color:rgb(var(--blue-8)/.4)}.hover\:bg-blue-8\/5:hover{background-color:rgb(var(--blue-8)/.05)}.hover\:bg-blue-8\/50:hover{background-color:rgb(var(--blue-8)/.5)}.hover\:bg-blue-8\/60:hover{background-color:rgb(var(--blue-8)/.6)}.hover\:bg-blue-8\/70:hover{background-color:rgb(var(--blue-8)/.7)}.hover\:bg-blue-8\/75:hover{background-color:rgb(var(--blue-8)/.75)}.hover\:bg-blue-8\/80:hover{background-color:rgb(var(--blue-8)/.8)}.hover\:bg-blue-8\/90:hover{background-color:rgb(var(--blue-8)/.9)}.hover\:bg-blue-8\/95:hover{background-color:rgb(var(--blue-8)/.95)}.hover\:bg-blue-9\/0:hover{background-color:rgb(var(--blue-9)/0)}.hover\:bg-blue-9\/10:hover{background-color:rgb(var(--blue-9)/.1)}.hover\:bg-blue-9\/100:hover{background-color:rgb(var(--blue-9)/1)}.hover\:bg-blue-9\/20:hover{background-color:rgb(var(--blue-9)/.2)}.hover\:bg-blue-9\/25:hover{background-color:rgb(var(--blue-9)/.25)}.hover\:bg-blue-9\/30:hover{background-color:rgb(var(--blue-9)/.3)}.hover\:bg-blue-9\/40:hover{background-color:rgb(var(--blue-9)/.4)}.hover\:bg-blue-9\/5:hover{background-color:rgb(var(--blue-9)/.05)}.hover\:bg-blue-9\/50:hover{background-color:rgb(var(--blue-9)/.5)}.hover\:bg-blue-9\/60:hover{background-color:rgb(var(--blue-9)/.6)}.hover\:bg-blue-9\/70:hover{background-color:rgb(var(--blue-9)/.7)}.hover\:bg-blue-9\/75:hover{background-color:rgb(var(--blue-9)/.75)}.hover\:bg-blue-9\/80:hover{background-color:rgb(var(--blue-9)/.8)}.hover\:bg-blue-9\/90:hover{background-color:rgb(var(--blue-9)/.9)}.hover\:bg-blue-9\/95:hover{background-color:rgb(var(--blue-9)/.95)}.hover\:bg-border:hover{--tw-bg-opacity:1;background-color:rgb(var(--border)/var(--tw-bg-opacity))}.hover\:bg-border\/0:hover{background-color:rgb(var(--border)/0)}.hover\:bg-border\/10:hover{background-color:rgb(var(--border)/.1)}.hover\:bg-border\/100:hover{background-color:rgb(var(--border)/1)}.hover\:bg-border\/20:hover{background-color:rgb(var(--border)/.2)}.hover\:bg-border\/25:hover{background-color:rgb(var(--border)/.25)}.hover\:bg-border\/30:hover{background-color:rgb(var(--border)/.3)}.hover\:bg-border\/40:hover{background-color:rgb(var(--border)/.4)}.hover\:bg-border\/5:hover{background-color:rgb(var(--border)/.05)}.hover\:bg-border\/50:hover{background-color:rgb(var(--border)/.5)}.hover\:bg-border\/60:hover{background-color:rgb(var(--border)/.6)}.hover\:bg-border\/70:hover{background-color:rgb(var(--border)/.7)}.hover\:bg-border\/75:hover{background-color:rgb(var(--border)/.75)}.hover\:bg-border\/80:hover{background-color:rgb(var(--border)/.8)}.hover\:bg-border\/90:hover{background-color:rgb(var(--border)/.9)}.hover\:bg-border\/95:hover{background-color:rgb(var(--border)/.95)}.hover\:bg-content1:hover{--tw-bg-opacity:1;background-color:rgb(var(--content1)/var(--tw-bg-opacity))}.hover\:bg-content1\/0:hover{background-color:rgb(var(--content1)/0)}.hover\:bg-content1\/10:hover{background-color:rgb(var(--content1)/.1)}.hover\:bg-content1\/100:hover{background-color:rgb(var(--content1)/1)}.hover\:bg-content1\/20:hover{background-color:rgb(var(--content1)/.2)}.hover\:bg-content1\/25:hover{background-color:rgb(var(--content1)/.25)}.hover\:bg-content1\/30:hover{background-color:rgb(var(--content1)/.3)}.hover\:bg-content1\/40:hover{background-color:rgb(var(--content1)/.4)}.hover\:bg-content1\/5:hover{background-color:rgb(var(--content1)/.05)}.hover\:bg-content1\/50:hover{background-color:rgb(var(--content1)/.5)}.hover\:bg-content1\/60:hover{background-color:rgb(var(--content1)/.6)}.hover\:bg-content1\/70:hover{background-color:rgb(var(--content1)/.7)}.hover\:bg-content1\/75:hover{background-color:rgb(var(--content1)/.75)}.hover\:bg-content1\/80:hover{background-color:rgb(var(--content1)/.8)}.hover\:bg-content1\/90:hover{background-color:rgb(var(--content1)/.9)}.hover\:bg-content1\/95:hover{background-color:rgb(var(--content1)/.95)}.hover\:bg-content2:hover{--tw-bg-opacity:1;background-color:rgb(var(--content2)/var(--tw-bg-opacity))}.hover\:bg-content2\/0:hover{background-color:rgb(var(--content2)/0)}.hover\:bg-content2\/10:hover{background-color:rgb(var(--content2)/.1)}.hover\:bg-content2\/100:hover{background-color:rgb(var(--content2)/1)}.hover\:bg-content2\/20:hover{background-color:rgb(var(--content2)/.2)}.hover\:bg-content2\/25:hover{background-color:rgb(var(--content2)/.25)}.hover\:bg-content2\/30:hover{background-color:rgb(var(--content2)/.3)}.hover\:bg-content2\/40:hover{background-color:rgb(var(--content2)/.4)}.hover\:bg-content2\/5:hover{background-color:rgb(var(--content2)/.05)}.hover\:bg-content2\/50:hover{background-color:rgb(var(--content2)/.5)}.hover\:bg-content2\/60:hover{background-color:rgb(var(--content2)/.6)}.hover\:bg-content2\/70:hover{background-color:rgb(var(--content2)/.7)}.hover\:bg-content2\/75:hover{background-color:rgb(var(--content2)/.75)}.hover\:bg-content2\/80:hover{background-color:rgb(var(--content2)/.8)}.hover\:bg-content2\/90:hover{background-color:rgb(var(--content2)/.9)}.hover\:bg-content2\/95:hover{background-color:rgb(var(--content2)/.95)}.hover\:bg-content3:hover{--tw-bg-opacity:1;background-color:rgb(var(--content3)/var(--tw-bg-opacity))}.hover\:bg-content3\/0:hover{background-color:rgb(var(--content3)/0)}.hover\:bg-content3\/10:hover{background-color:rgb(var(--content3)/.1)}.hover\:bg-content3\/100:hover{background-color:rgb(var(--content3)/1)}.hover\:bg-content3\/20:hover{background-color:rgb(var(--content3)/.2)}.hover\:bg-content3\/25:hover{background-color:rgb(var(--content3)/.25)}.hover\:bg-content3\/30:hover{background-color:rgb(var(--content3)/.3)}.hover\:bg-content3\/40:hover{background-color:rgb(var(--content3)/.4)}.hover\:bg-content3\/5:hover{background-color:rgb(var(--content3)/.05)}.hover\:bg-content3\/50:hover{background-color:rgb(var(--content3)/.5)}.hover\:bg-content3\/60:hover{background-color:rgb(var(--content3)/.6)}.hover\:bg-content3\/70:hover{background-color:rgb(var(--content3)/.7)}.hover\:bg-content3\/75:hover{background-color:rgb(var(--content3)/.75)}.hover\:bg-content3\/80:hover{background-color:rgb(var(--content3)/.8)}.hover\:bg-content3\/90:hover{background-color:rgb(var(--content3)/.9)}.hover\:bg-content3\/95:hover{background-color:rgb(var(--content3)/.95)}.hover\:bg-cyan-1\/0:hover{background-color:rgb(var(--cyan-1)/0)}.hover\:bg-cyan-1\/10:hover{background-color:rgb(var(--cyan-1)/.1)}.hover\:bg-cyan-1\/100:hover{background-color:rgb(var(--cyan-1)/1)}.hover\:bg-cyan-1\/20:hover{background-color:rgb(var(--cyan-1)/.2)}.hover\:bg-cyan-1\/25:hover{background-color:rgb(var(--cyan-1)/.25)}.hover\:bg-cyan-1\/30:hover{background-color:rgb(var(--cyan-1)/.3)}.hover\:bg-cyan-1\/40:hover{background-color:rgb(var(--cyan-1)/.4)}.hover\:bg-cyan-1\/5:hover{background-color:rgb(var(--cyan-1)/.05)}.hover\:bg-cyan-1\/50:hover{background-color:rgb(var(--cyan-1)/.5)}.hover\:bg-cyan-1\/60:hover{background-color:rgb(var(--cyan-1)/.6)}.hover\:bg-cyan-1\/70:hover{background-color:rgb(var(--cyan-1)/.7)}.hover\:bg-cyan-1\/75:hover{background-color:rgb(var(--cyan-1)/.75)}.hover\:bg-cyan-1\/80:hover{background-color:rgb(var(--cyan-1)/.8)}.hover\:bg-cyan-1\/90:hover{background-color:rgb(var(--cyan-1)/.9)}.hover\:bg-cyan-1\/95:hover{background-color:rgb(var(--cyan-1)/.95)}.hover\:bg-cyan-10\/0:hover{background-color:rgb(var(--cyan-10)/0)}.hover\:bg-cyan-10\/10:hover{background-color:rgb(var(--cyan-10)/.1)}.hover\:bg-cyan-10\/100:hover{background-color:rgb(var(--cyan-10)/1)}.hover\:bg-cyan-10\/20:hover{background-color:rgb(var(--cyan-10)/.2)}.hover\:bg-cyan-10\/25:hover{background-color:rgb(var(--cyan-10)/.25)}.hover\:bg-cyan-10\/30:hover{background-color:rgb(var(--cyan-10)/.3)}.hover\:bg-cyan-10\/40:hover{background-color:rgb(var(--cyan-10)/.4)}.hover\:bg-cyan-10\/5:hover{background-color:rgb(var(--cyan-10)/.05)}.hover\:bg-cyan-10\/50:hover{background-color:rgb(var(--cyan-10)/.5)}.hover\:bg-cyan-10\/60:hover{background-color:rgb(var(--cyan-10)/.6)}.hover\:bg-cyan-10\/70:hover{background-color:rgb(var(--cyan-10)/.7)}.hover\:bg-cyan-10\/75:hover{background-color:rgb(var(--cyan-10)/.75)}.hover\:bg-cyan-10\/80:hover{background-color:rgb(var(--cyan-10)/.8)}.hover\:bg-cyan-10\/90:hover{background-color:rgb(var(--cyan-10)/.9)}.hover\:bg-cyan-10\/95:hover{background-color:rgb(var(--cyan-10)/.95)}.hover\:bg-cyan-2\/0:hover{background-color:rgb(var(--cyan-2)/0)}.hover\:bg-cyan-2\/10:hover{background-color:rgb(var(--cyan-2)/.1)}.hover\:bg-cyan-2\/100:hover{background-color:rgb(var(--cyan-2)/1)}.hover\:bg-cyan-2\/20:hover{background-color:rgb(var(--cyan-2)/.2)}.hover\:bg-cyan-2\/25:hover{background-color:rgb(var(--cyan-2)/.25)}.hover\:bg-cyan-2\/30:hover{background-color:rgb(var(--cyan-2)/.3)}.hover\:bg-cyan-2\/40:hover{background-color:rgb(var(--cyan-2)/.4)}.hover\:bg-cyan-2\/5:hover{background-color:rgb(var(--cyan-2)/.05)}.hover\:bg-cyan-2\/50:hover{background-color:rgb(var(--cyan-2)/.5)}.hover\:bg-cyan-2\/60:hover{background-color:rgb(var(--cyan-2)/.6)}.hover\:bg-cyan-2\/70:hover{background-color:rgb(var(--cyan-2)/.7)}.hover\:bg-cyan-2\/75:hover{background-color:rgb(var(--cyan-2)/.75)}.hover\:bg-cyan-2\/80:hover{background-color:rgb(var(--cyan-2)/.8)}.hover\:bg-cyan-2\/90:hover{background-color:rgb(var(--cyan-2)/.9)}.hover\:bg-cyan-2\/95:hover{background-color:rgb(var(--cyan-2)/.95)}.hover\:bg-cyan-3\/0:hover{background-color:rgb(var(--cyan-3)/0)}.hover\:bg-cyan-3\/10:hover{background-color:rgb(var(--cyan-3)/.1)}.hover\:bg-cyan-3\/100:hover{background-color:rgb(var(--cyan-3)/1)}.hover\:bg-cyan-3\/20:hover{background-color:rgb(var(--cyan-3)/.2)}.hover\:bg-cyan-3\/25:hover{background-color:rgb(var(--cyan-3)/.25)}.hover\:bg-cyan-3\/30:hover{background-color:rgb(var(--cyan-3)/.3)}.hover\:bg-cyan-3\/40:hover{background-color:rgb(var(--cyan-3)/.4)}.hover\:bg-cyan-3\/5:hover{background-color:rgb(var(--cyan-3)/.05)}.hover\:bg-cyan-3\/50:hover{background-color:rgb(var(--cyan-3)/.5)}.hover\:bg-cyan-3\/60:hover{background-color:rgb(var(--cyan-3)/.6)}.hover\:bg-cyan-3\/70:hover{background-color:rgb(var(--cyan-3)/.7)}.hover\:bg-cyan-3\/75:hover{background-color:rgb(var(--cyan-3)/.75)}.hover\:bg-cyan-3\/80:hover{background-color:rgb(var(--cyan-3)/.8)}.hover\:bg-cyan-3\/90:hover{background-color:rgb(var(--cyan-3)/.9)}.hover\:bg-cyan-3\/95:hover{background-color:rgb(var(--cyan-3)/.95)}.hover\:bg-cyan-4\/0:hover{background-color:rgb(var(--cyan-4)/0)}.hover\:bg-cyan-4\/10:hover{background-color:rgb(var(--cyan-4)/.1)}.hover\:bg-cyan-4\/100:hover{background-color:rgb(var(--cyan-4)/1)}.hover\:bg-cyan-4\/20:hover{background-color:rgb(var(--cyan-4)/.2)}.hover\:bg-cyan-4\/25:hover{background-color:rgb(var(--cyan-4)/.25)}.hover\:bg-cyan-4\/30:hover{background-color:rgb(var(--cyan-4)/.3)}.hover\:bg-cyan-4\/40:hover{background-color:rgb(var(--cyan-4)/.4)}.hover\:bg-cyan-4\/5:hover{background-color:rgb(var(--cyan-4)/.05)}.hover\:bg-cyan-4\/50:hover{background-color:rgb(var(--cyan-4)/.5)}.hover\:bg-cyan-4\/60:hover{background-color:rgb(var(--cyan-4)/.6)}.hover\:bg-cyan-4\/70:hover{background-color:rgb(var(--cyan-4)/.7)}.hover\:bg-cyan-4\/75:hover{background-color:rgb(var(--cyan-4)/.75)}.hover\:bg-cyan-4\/80:hover{background-color:rgb(var(--cyan-4)/.8)}.hover\:bg-cyan-4\/90:hover{background-color:rgb(var(--cyan-4)/.9)}.hover\:bg-cyan-4\/95:hover{background-color:rgb(var(--cyan-4)/.95)}.hover\:bg-cyan-5\/0:hover{background-color:rgb(var(--cyan-5)/0)}.hover\:bg-cyan-5\/10:hover{background-color:rgb(var(--cyan-5)/.1)}.hover\:bg-cyan-5\/100:hover{background-color:rgb(var(--cyan-5)/1)}.hover\:bg-cyan-5\/20:hover{background-color:rgb(var(--cyan-5)/.2)}.hover\:bg-cyan-5\/25:hover{background-color:rgb(var(--cyan-5)/.25)}.hover\:bg-cyan-5\/30:hover{background-color:rgb(var(--cyan-5)/.3)}.hover\:bg-cyan-5\/40:hover{background-color:rgb(var(--cyan-5)/.4)}.hover\:bg-cyan-5\/5:hover{background-color:rgb(var(--cyan-5)/.05)}.hover\:bg-cyan-5\/50:hover{background-color:rgb(var(--cyan-5)/.5)}.hover\:bg-cyan-5\/60:hover{background-color:rgb(var(--cyan-5)/.6)}.hover\:bg-cyan-5\/70:hover{background-color:rgb(var(--cyan-5)/.7)}.hover\:bg-cyan-5\/75:hover{background-color:rgb(var(--cyan-5)/.75)}.hover\:bg-cyan-5\/80:hover{background-color:rgb(var(--cyan-5)/.8)}.hover\:bg-cyan-5\/90:hover{background-color:rgb(var(--cyan-5)/.9)}.hover\:bg-cyan-5\/95:hover{background-color:rgb(var(--cyan-5)/.95)}.hover\:bg-cyan-6\/0:hover{background-color:rgb(var(--cyan-6)/0)}.hover\:bg-cyan-6\/10:hover{background-color:rgb(var(--cyan-6)/.1)}.hover\:bg-cyan-6\/100:hover{background-color:rgb(var(--cyan-6)/1)}.hover\:bg-cyan-6\/20:hover{background-color:rgb(var(--cyan-6)/.2)}.hover\:bg-cyan-6\/25:hover{background-color:rgb(var(--cyan-6)/.25)}.hover\:bg-cyan-6\/30:hover{background-color:rgb(var(--cyan-6)/.3)}.hover\:bg-cyan-6\/40:hover{background-color:rgb(var(--cyan-6)/.4)}.hover\:bg-cyan-6\/5:hover{background-color:rgb(var(--cyan-6)/.05)}.hover\:bg-cyan-6\/50:hover{background-color:rgb(var(--cyan-6)/.5)}.hover\:bg-cyan-6\/60:hover{background-color:rgb(var(--cyan-6)/.6)}.hover\:bg-cyan-6\/70:hover{background-color:rgb(var(--cyan-6)/.7)}.hover\:bg-cyan-6\/75:hover{background-color:rgb(var(--cyan-6)/.75)}.hover\:bg-cyan-6\/80:hover{background-color:rgb(var(--cyan-6)/.8)}.hover\:bg-cyan-6\/90:hover{background-color:rgb(var(--cyan-6)/.9)}.hover\:bg-cyan-6\/95:hover{background-color:rgb(var(--cyan-6)/.95)}.hover\:bg-cyan-7\/0:hover{background-color:rgb(var(--cyan-7)/0)}.hover\:bg-cyan-7\/10:hover{background-color:rgb(var(--cyan-7)/.1)}.hover\:bg-cyan-7\/100:hover{background-color:rgb(var(--cyan-7)/1)}.hover\:bg-cyan-7\/20:hover{background-color:rgb(var(--cyan-7)/.2)}.hover\:bg-cyan-7\/25:hover{background-color:rgb(var(--cyan-7)/.25)}.hover\:bg-cyan-7\/30:hover{background-color:rgb(var(--cyan-7)/.3)}.hover\:bg-cyan-7\/40:hover{background-color:rgb(var(--cyan-7)/.4)}.hover\:bg-cyan-7\/5:hover{background-color:rgb(var(--cyan-7)/.05)}.hover\:bg-cyan-7\/50:hover{background-color:rgb(var(--cyan-7)/.5)}.hover\:bg-cyan-7\/60:hover{background-color:rgb(var(--cyan-7)/.6)}.hover\:bg-cyan-7\/70:hover{background-color:rgb(var(--cyan-7)/.7)}.hover\:bg-cyan-7\/75:hover{background-color:rgb(var(--cyan-7)/.75)}.hover\:bg-cyan-7\/80:hover{background-color:rgb(var(--cyan-7)/.8)}.hover\:bg-cyan-7\/90:hover{background-color:rgb(var(--cyan-7)/.9)}.hover\:bg-cyan-7\/95:hover{background-color:rgb(var(--cyan-7)/.95)}.hover\:bg-cyan-8\/0:hover{background-color:rgb(var(--cyan-8)/0)}.hover\:bg-cyan-8\/10:hover{background-color:rgb(var(--cyan-8)/.1)}.hover\:bg-cyan-8\/100:hover{background-color:rgb(var(--cyan-8)/1)}.hover\:bg-cyan-8\/20:hover{background-color:rgb(var(--cyan-8)/.2)}.hover\:bg-cyan-8\/25:hover{background-color:rgb(var(--cyan-8)/.25)}.hover\:bg-cyan-8\/30:hover{background-color:rgb(var(--cyan-8)/.3)}.hover\:bg-cyan-8\/40:hover{background-color:rgb(var(--cyan-8)/.4)}.hover\:bg-cyan-8\/5:hover{background-color:rgb(var(--cyan-8)/.05)}.hover\:bg-cyan-8\/50:hover{background-color:rgb(var(--cyan-8)/.5)}.hover\:bg-cyan-8\/60:hover{background-color:rgb(var(--cyan-8)/.6)}.hover\:bg-cyan-8\/70:hover{background-color:rgb(var(--cyan-8)/.7)}.hover\:bg-cyan-8\/75:hover{background-color:rgb(var(--cyan-8)/.75)}.hover\:bg-cyan-8\/80:hover{background-color:rgb(var(--cyan-8)/.8)}.hover\:bg-cyan-8\/90:hover{background-color:rgb(var(--cyan-8)/.9)}.hover\:bg-cyan-8\/95:hover{background-color:rgb(var(--cyan-8)/.95)}.hover\:bg-cyan-9\/0:hover{background-color:rgb(var(--cyan-9)/0)}.hover\:bg-cyan-9\/10:hover{background-color:rgb(var(--cyan-9)/.1)}.hover\:bg-cyan-9\/100:hover{background-color:rgb(var(--cyan-9)/1)}.hover\:bg-cyan-9\/20:hover{background-color:rgb(var(--cyan-9)/.2)}.hover\:bg-cyan-9\/25:hover{background-color:rgb(var(--cyan-9)/.25)}.hover\:bg-cyan-9\/30:hover{background-color:rgb(var(--cyan-9)/.3)}.hover\:bg-cyan-9\/40:hover{background-color:rgb(var(--cyan-9)/.4)}.hover\:bg-cyan-9\/5:hover{background-color:rgb(var(--cyan-9)/.05)}.hover\:bg-cyan-9\/50:hover{background-color:rgb(var(--cyan-9)/.5)}.hover\:bg-cyan-9\/60:hover{background-color:rgb(var(--cyan-9)/.6)}.hover\:bg-cyan-9\/70:hover{background-color:rgb(var(--cyan-9)/.7)}.hover\:bg-cyan-9\/75:hover{background-color:rgb(var(--cyan-9)/.75)}.hover\:bg-cyan-9\/80:hover{background-color:rgb(var(--cyan-9)/.8)}.hover\:bg-cyan-9\/90:hover{background-color:rgb(var(--cyan-9)/.9)}.hover\:bg-cyan-9\/95:hover{background-color:rgb(var(--cyan-9)/.95)}.hover\:bg-error:hover{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.hover\:bg-error\/0:hover{background-color:rgb(var(--error)/0)}.hover\:bg-error\/10:hover{background-color:rgb(var(--error)/.1)}.hover\:bg-error\/100:hover{background-color:rgb(var(--error)/1)}.hover\:bg-error\/20:hover{background-color:rgb(var(--error)/.2)}.hover\:bg-error\/25:hover{background-color:rgb(var(--error)/.25)}.hover\:bg-error\/30:hover{background-color:rgb(var(--error)/.3)}.hover\:bg-error\/40:hover{background-color:rgb(var(--error)/.4)}.hover\:bg-error\/5:hover{background-color:rgb(var(--error)/.05)}.hover\:bg-error\/50:hover{background-color:rgb(var(--error)/.5)}.hover\:bg-error\/60:hover{background-color:rgb(var(--error)/.6)}.hover\:bg-error\/70:hover{background-color:rgb(var(--error)/.7)}.hover\:bg-error\/75:hover{background-color:rgb(var(--error)/.75)}.hover\:bg-error\/80:hover{background-color:rgb(var(--error)/.8)}.hover\:bg-error\/90:hover{background-color:rgb(var(--error)/.9)}.hover\:bg-error\/95:hover{background-color:rgb(var(--error)/.95)}.hover\:bg-gray-1\/0:hover{background-color:rgb(var(--gray-1)/0)}.hover\:bg-gray-1\/10:hover{background-color:rgb(var(--gray-1)/.1)}.hover\:bg-gray-1\/100:hover{background-color:rgb(var(--gray-1)/1)}.hover\:bg-gray-1\/20:hover{background-color:rgb(var(--gray-1)/.2)}.hover\:bg-gray-1\/25:hover{background-color:rgb(var(--gray-1)/.25)}.hover\:bg-gray-1\/30:hover{background-color:rgb(var(--gray-1)/.3)}.hover\:bg-gray-1\/40:hover{background-color:rgb(var(--gray-1)/.4)}.hover\:bg-gray-1\/5:hover{background-color:rgb(var(--gray-1)/.05)}.hover\:bg-gray-1\/50:hover{background-color:rgb(var(--gray-1)/.5)}.hover\:bg-gray-1\/60:hover{background-color:rgb(var(--gray-1)/.6)}.hover\:bg-gray-1\/70:hover{background-color:rgb(var(--gray-1)/.7)}.hover\:bg-gray-1\/75:hover{background-color:rgb(var(--gray-1)/.75)}.hover\:bg-gray-1\/80:hover{background-color:rgb(var(--gray-1)/.8)}.hover\:bg-gray-1\/90:hover{background-color:rgb(var(--gray-1)/.9)}.hover\:bg-gray-1\/95:hover{background-color:rgb(var(--gray-1)/.95)}.hover\:bg-gray-10\/0:hover{background-color:rgb(var(--gray-10)/0)}.hover\:bg-gray-10\/10:hover{background-color:rgb(var(--gray-10)/.1)}.hover\:bg-gray-10\/100:hover{background-color:rgb(var(--gray-10)/1)}.hover\:bg-gray-10\/20:hover{background-color:rgb(var(--gray-10)/.2)}.hover\:bg-gray-10\/25:hover{background-color:rgb(var(--gray-10)/.25)}.hover\:bg-gray-10\/30:hover{background-color:rgb(var(--gray-10)/.3)}.hover\:bg-gray-10\/40:hover{background-color:rgb(var(--gray-10)/.4)}.hover\:bg-gray-10\/5:hover{background-color:rgb(var(--gray-10)/.05)}.hover\:bg-gray-10\/50:hover{background-color:rgb(var(--gray-10)/.5)}.hover\:bg-gray-10\/60:hover{background-color:rgb(var(--gray-10)/.6)}.hover\:bg-gray-10\/70:hover{background-color:rgb(var(--gray-10)/.7)}.hover\:bg-gray-10\/75:hover{background-color:rgb(var(--gray-10)/.75)}.hover\:bg-gray-10\/80:hover{background-color:rgb(var(--gray-10)/.8)}.hover\:bg-gray-10\/90:hover{background-color:rgb(var(--gray-10)/.9)}.hover\:bg-gray-10\/95:hover{background-color:rgb(var(--gray-10)/.95)}.hover\:bg-gray-2\/0:hover{background-color:rgb(var(--gray-2)/0)}.hover\:bg-gray-2\/10:hover{background-color:rgb(var(--gray-2)/.1)}.hover\:bg-gray-2\/100:hover{background-color:rgb(var(--gray-2)/1)}.hover\:bg-gray-2\/20:hover{background-color:rgb(var(--gray-2)/.2)}.hover\:bg-gray-2\/25:hover{background-color:rgb(var(--gray-2)/.25)}.hover\:bg-gray-2\/30:hover{background-color:rgb(var(--gray-2)/.3)}.hover\:bg-gray-2\/40:hover{background-color:rgb(var(--gray-2)/.4)}.hover\:bg-gray-2\/5:hover{background-color:rgb(var(--gray-2)/.05)}.hover\:bg-gray-2\/50:hover{background-color:rgb(var(--gray-2)/.5)}.hover\:bg-gray-2\/60:hover{background-color:rgb(var(--gray-2)/.6)}.hover\:bg-gray-2\/70:hover{background-color:rgb(var(--gray-2)/.7)}.hover\:bg-gray-2\/75:hover{background-color:rgb(var(--gray-2)/.75)}.hover\:bg-gray-2\/80:hover{background-color:rgb(var(--gray-2)/.8)}.hover\:bg-gray-2\/90:hover{background-color:rgb(var(--gray-2)/.9)}.hover\:bg-gray-2\/95:hover{background-color:rgb(var(--gray-2)/.95)}.hover\:bg-gray-3\/0:hover{background-color:rgb(var(--gray-3)/0)}.hover\:bg-gray-3\/10:hover{background-color:rgb(var(--gray-3)/.1)}.hover\:bg-gray-3\/100:hover{background-color:rgb(var(--gray-3)/1)}.hover\:bg-gray-3\/20:hover{background-color:rgb(var(--gray-3)/.2)}.hover\:bg-gray-3\/25:hover{background-color:rgb(var(--gray-3)/.25)}.hover\:bg-gray-3\/30:hover{background-color:rgb(var(--gray-3)/.3)}.hover\:bg-gray-3\/40:hover{background-color:rgb(var(--gray-3)/.4)}.hover\:bg-gray-3\/5:hover{background-color:rgb(var(--gray-3)/.05)}.hover\:bg-gray-3\/50:hover{background-color:rgb(var(--gray-3)/.5)}.hover\:bg-gray-3\/60:hover{background-color:rgb(var(--gray-3)/.6)}.hover\:bg-gray-3\/70:hover{background-color:rgb(var(--gray-3)/.7)}.hover\:bg-gray-3\/75:hover{background-color:rgb(var(--gray-3)/.75)}.hover\:bg-gray-3\/80:hover{background-color:rgb(var(--gray-3)/.8)}.hover\:bg-gray-3\/90:hover{background-color:rgb(var(--gray-3)/.9)}.hover\:bg-gray-3\/95:hover{background-color:rgb(var(--gray-3)/.95)}.hover\:bg-gray-4\/0:hover{background-color:rgb(var(--gray-4)/0)}.hover\:bg-gray-4\/10:hover{background-color:rgb(var(--gray-4)/.1)}.hover\:bg-gray-4\/100:hover{background-color:rgb(var(--gray-4)/1)}.hover\:bg-gray-4\/20:hover{background-color:rgb(var(--gray-4)/.2)}.hover\:bg-gray-4\/25:hover{background-color:rgb(var(--gray-4)/.25)}.hover\:bg-gray-4\/30:hover{background-color:rgb(var(--gray-4)/.3)}.hover\:bg-gray-4\/40:hover{background-color:rgb(var(--gray-4)/.4)}.hover\:bg-gray-4\/5:hover{background-color:rgb(var(--gray-4)/.05)}.hover\:bg-gray-4\/50:hover{background-color:rgb(var(--gray-4)/.5)}.hover\:bg-gray-4\/60:hover{background-color:rgb(var(--gray-4)/.6)}.hover\:bg-gray-4\/70:hover{background-color:rgb(var(--gray-4)/.7)}.hover\:bg-gray-4\/75:hover{background-color:rgb(var(--gray-4)/.75)}.hover\:bg-gray-4\/80:hover{background-color:rgb(var(--gray-4)/.8)}.hover\:bg-gray-4\/90:hover{background-color:rgb(var(--gray-4)/.9)}.hover\:bg-gray-4\/95:hover{background-color:rgb(var(--gray-4)/.95)}.hover\:bg-gray-5\/0:hover{background-color:rgb(var(--gray-5)/0)}.hover\:bg-gray-5\/10:hover{background-color:rgb(var(--gray-5)/.1)}.hover\:bg-gray-5\/100:hover{background-color:rgb(var(--gray-5)/1)}.hover\:bg-gray-5\/20:hover{background-color:rgb(var(--gray-5)/.2)}.hover\:bg-gray-5\/25:hover{background-color:rgb(var(--gray-5)/.25)}.hover\:bg-gray-5\/30:hover{background-color:rgb(var(--gray-5)/.3)}.hover\:bg-gray-5\/40:hover{background-color:rgb(var(--gray-5)/.4)}.hover\:bg-gray-5\/5:hover{background-color:rgb(var(--gray-5)/.05)}.hover\:bg-gray-5\/50:hover{background-color:rgb(var(--gray-5)/.5)}.hover\:bg-gray-5\/60:hover{background-color:rgb(var(--gray-5)/.6)}.hover\:bg-gray-5\/70:hover{background-color:rgb(var(--gray-5)/.7)}.hover\:bg-gray-5\/75:hover{background-color:rgb(var(--gray-5)/.75)}.hover\:bg-gray-5\/80:hover{background-color:rgb(var(--gray-5)/.8)}.hover\:bg-gray-5\/90:hover{background-color:rgb(var(--gray-5)/.9)}.hover\:bg-gray-5\/95:hover{background-color:rgb(var(--gray-5)/.95)}.hover\:bg-gray-6\/0:hover{background-color:rgb(var(--gray-6)/0)}.hover\:bg-gray-6\/10:hover{background-color:rgb(var(--gray-6)/.1)}.hover\:bg-gray-6\/100:hover{background-color:rgb(var(--gray-6)/1)}.hover\:bg-gray-6\/20:hover{background-color:rgb(var(--gray-6)/.2)}.hover\:bg-gray-6\/25:hover{background-color:rgb(var(--gray-6)/.25)}.hover\:bg-gray-6\/30:hover{background-color:rgb(var(--gray-6)/.3)}.hover\:bg-gray-6\/40:hover{background-color:rgb(var(--gray-6)/.4)}.hover\:bg-gray-6\/5:hover{background-color:rgb(var(--gray-6)/.05)}.hover\:bg-gray-6\/50:hover{background-color:rgb(var(--gray-6)/.5)}.hover\:bg-gray-6\/60:hover{background-color:rgb(var(--gray-6)/.6)}.hover\:bg-gray-6\/70:hover{background-color:rgb(var(--gray-6)/.7)}.hover\:bg-gray-6\/75:hover{background-color:rgb(var(--gray-6)/.75)}.hover\:bg-gray-6\/80:hover{background-color:rgb(var(--gray-6)/.8)}.hover\:bg-gray-6\/90:hover{background-color:rgb(var(--gray-6)/.9)}.hover\:bg-gray-6\/95:hover{background-color:rgb(var(--gray-6)/.95)}.hover\:bg-gray-7\/0:hover{background-color:rgb(var(--gray-7)/0)}.hover\:bg-gray-7\/10:hover{background-color:rgb(var(--gray-7)/.1)}.hover\:bg-gray-7\/100:hover{background-color:rgb(var(--gray-7)/1)}.hover\:bg-gray-7\/20:hover{background-color:rgb(var(--gray-7)/.2)}.hover\:bg-gray-7\/25:hover{background-color:rgb(var(--gray-7)/.25)}.hover\:bg-gray-7\/30:hover{background-color:rgb(var(--gray-7)/.3)}.hover\:bg-gray-7\/40:hover{background-color:rgb(var(--gray-7)/.4)}.hover\:bg-gray-7\/5:hover{background-color:rgb(var(--gray-7)/.05)}.hover\:bg-gray-7\/50:hover{background-color:rgb(var(--gray-7)/.5)}.hover\:bg-gray-7\/60:hover{background-color:rgb(var(--gray-7)/.6)}.hover\:bg-gray-7\/70:hover{background-color:rgb(var(--gray-7)/.7)}.hover\:bg-gray-7\/75:hover{background-color:rgb(var(--gray-7)/.75)}.hover\:bg-gray-7\/80:hover{background-color:rgb(var(--gray-7)/.8)}.hover\:bg-gray-7\/90:hover{background-color:rgb(var(--gray-7)/.9)}.hover\:bg-gray-7\/95:hover{background-color:rgb(var(--gray-7)/.95)}.hover\:bg-gray-8\/0:hover{background-color:rgb(var(--gray-8)/0)}.hover\:bg-gray-8\/10:hover{background-color:rgb(var(--gray-8)/.1)}.hover\:bg-gray-8\/100:hover{background-color:rgb(var(--gray-8)/1)}.hover\:bg-gray-8\/20:hover{background-color:rgb(var(--gray-8)/.2)}.hover\:bg-gray-8\/25:hover{background-color:rgb(var(--gray-8)/.25)}.hover\:bg-gray-8\/30:hover{background-color:rgb(var(--gray-8)/.3)}.hover\:bg-gray-8\/40:hover{background-color:rgb(var(--gray-8)/.4)}.hover\:bg-gray-8\/5:hover{background-color:rgb(var(--gray-8)/.05)}.hover\:bg-gray-8\/50:hover{background-color:rgb(var(--gray-8)/.5)}.hover\:bg-gray-8\/60:hover{background-color:rgb(var(--gray-8)/.6)}.hover\:bg-gray-8\/70:hover{background-color:rgb(var(--gray-8)/.7)}.hover\:bg-gray-8\/75:hover{background-color:rgb(var(--gray-8)/.75)}.hover\:bg-gray-8\/80:hover{background-color:rgb(var(--gray-8)/.8)}.hover\:bg-gray-8\/90:hover{background-color:rgb(var(--gray-8)/.9)}.hover\:bg-gray-8\/95:hover{background-color:rgb(var(--gray-8)/.95)}.hover\:bg-gray-9\/0:hover{background-color:rgb(var(--gray-9)/0)}.hover\:bg-gray-9\/10:hover{background-color:rgb(var(--gray-9)/.1)}.hover\:bg-gray-9\/100:hover{background-color:rgb(var(--gray-9)/1)}.hover\:bg-gray-9\/20:hover{background-color:rgb(var(--gray-9)/.2)}.hover\:bg-gray-9\/25:hover{background-color:rgb(var(--gray-9)/.25)}.hover\:bg-gray-9\/30:hover{background-color:rgb(var(--gray-9)/.3)}.hover\:bg-gray-9\/40:hover{background-color:rgb(var(--gray-9)/.4)}.hover\:bg-gray-9\/5:hover{background-color:rgb(var(--gray-9)/.05)}.hover\:bg-gray-9\/50:hover{background-color:rgb(var(--gray-9)/.5)}.hover\:bg-gray-9\/60:hover{background-color:rgb(var(--gray-9)/.6)}.hover\:bg-gray-9\/70:hover{background-color:rgb(var(--gray-9)/.7)}.hover\:bg-gray-9\/75:hover{background-color:rgb(var(--gray-9)/.75)}.hover\:bg-gray-9\/80:hover{background-color:rgb(var(--gray-9)/.8)}.hover\:bg-gray-9\/90:hover{background-color:rgb(var(--gray-9)/.9)}.hover\:bg-gray-9\/95:hover{background-color:rgb(var(--gray-9)/.95)}.hover\:bg-green-1\/0:hover{background-color:rgb(var(--green-1)/0)}.hover\:bg-green-1\/10:hover{background-color:rgb(var(--green-1)/.1)}.hover\:bg-green-1\/100:hover{background-color:rgb(var(--green-1)/1)}.hover\:bg-green-1\/20:hover{background-color:rgb(var(--green-1)/.2)}.hover\:bg-green-1\/25:hover{background-color:rgb(var(--green-1)/.25)}.hover\:bg-green-1\/30:hover{background-color:rgb(var(--green-1)/.3)}.hover\:bg-green-1\/40:hover{background-color:rgb(var(--green-1)/.4)}.hover\:bg-green-1\/5:hover{background-color:rgb(var(--green-1)/.05)}.hover\:bg-green-1\/50:hover{background-color:rgb(var(--green-1)/.5)}.hover\:bg-green-1\/60:hover{background-color:rgb(var(--green-1)/.6)}.hover\:bg-green-1\/70:hover{background-color:rgb(var(--green-1)/.7)}.hover\:bg-green-1\/75:hover{background-color:rgb(var(--green-1)/.75)}.hover\:bg-green-1\/80:hover{background-color:rgb(var(--green-1)/.8)}.hover\:bg-green-1\/90:hover{background-color:rgb(var(--green-1)/.9)}.hover\:bg-green-1\/95:hover{background-color:rgb(var(--green-1)/.95)}.hover\:bg-green-10\/0:hover{background-color:rgb(var(--green-10)/0)}.hover\:bg-green-10\/10:hover{background-color:rgb(var(--green-10)/.1)}.hover\:bg-green-10\/100:hover{background-color:rgb(var(--green-10)/1)}.hover\:bg-green-10\/20:hover{background-color:rgb(var(--green-10)/.2)}.hover\:bg-green-10\/25:hover{background-color:rgb(var(--green-10)/.25)}.hover\:bg-green-10\/30:hover{background-color:rgb(var(--green-10)/.3)}.hover\:bg-green-10\/40:hover{background-color:rgb(var(--green-10)/.4)}.hover\:bg-green-10\/5:hover{background-color:rgb(var(--green-10)/.05)}.hover\:bg-green-10\/50:hover{background-color:rgb(var(--green-10)/.5)}.hover\:bg-green-10\/60:hover{background-color:rgb(var(--green-10)/.6)}.hover\:bg-green-10\/70:hover{background-color:rgb(var(--green-10)/.7)}.hover\:bg-green-10\/75:hover{background-color:rgb(var(--green-10)/.75)}.hover\:bg-green-10\/80:hover{background-color:rgb(var(--green-10)/.8)}.hover\:bg-green-10\/90:hover{background-color:rgb(var(--green-10)/.9)}.hover\:bg-green-10\/95:hover{background-color:rgb(var(--green-10)/.95)}.hover\:bg-green-2\/0:hover{background-color:rgb(var(--green-2)/0)}.hover\:bg-green-2\/10:hover{background-color:rgb(var(--green-2)/.1)}.hover\:bg-green-2\/100:hover{background-color:rgb(var(--green-2)/1)}.hover\:bg-green-2\/20:hover{background-color:rgb(var(--green-2)/.2)}.hover\:bg-green-2\/25:hover{background-color:rgb(var(--green-2)/.25)}.hover\:bg-green-2\/30:hover{background-color:rgb(var(--green-2)/.3)}.hover\:bg-green-2\/40:hover{background-color:rgb(var(--green-2)/.4)}.hover\:bg-green-2\/5:hover{background-color:rgb(var(--green-2)/.05)}.hover\:bg-green-2\/50:hover{background-color:rgb(var(--green-2)/.5)}.hover\:bg-green-2\/60:hover{background-color:rgb(var(--green-2)/.6)}.hover\:bg-green-2\/70:hover{background-color:rgb(var(--green-2)/.7)}.hover\:bg-green-2\/75:hover{background-color:rgb(var(--green-2)/.75)}.hover\:bg-green-2\/80:hover{background-color:rgb(var(--green-2)/.8)}.hover\:bg-green-2\/90:hover{background-color:rgb(var(--green-2)/.9)}.hover\:bg-green-2\/95:hover{background-color:rgb(var(--green-2)/.95)}.hover\:bg-green-3\/0:hover{background-color:rgb(var(--green-3)/0)}.hover\:bg-green-3\/10:hover{background-color:rgb(var(--green-3)/.1)}.hover\:bg-green-3\/100:hover{background-color:rgb(var(--green-3)/1)}.hover\:bg-green-3\/20:hover{background-color:rgb(var(--green-3)/.2)}.hover\:bg-green-3\/25:hover{background-color:rgb(var(--green-3)/.25)}.hover\:bg-green-3\/30:hover{background-color:rgb(var(--green-3)/.3)}.hover\:bg-green-3\/40:hover{background-color:rgb(var(--green-3)/.4)}.hover\:bg-green-3\/5:hover{background-color:rgb(var(--green-3)/.05)}.hover\:bg-green-3\/50:hover{background-color:rgb(var(--green-3)/.5)}.hover\:bg-green-3\/60:hover{background-color:rgb(var(--green-3)/.6)}.hover\:bg-green-3\/70:hover{background-color:rgb(var(--green-3)/.7)}.hover\:bg-green-3\/75:hover{background-color:rgb(var(--green-3)/.75)}.hover\:bg-green-3\/80:hover{background-color:rgb(var(--green-3)/.8)}.hover\:bg-green-3\/90:hover{background-color:rgb(var(--green-3)/.9)}.hover\:bg-green-3\/95:hover{background-color:rgb(var(--green-3)/.95)}.hover\:bg-green-4\/0:hover{background-color:rgb(var(--green-4)/0)}.hover\:bg-green-4\/10:hover{background-color:rgb(var(--green-4)/.1)}.hover\:bg-green-4\/100:hover{background-color:rgb(var(--green-4)/1)}.hover\:bg-green-4\/20:hover{background-color:rgb(var(--green-4)/.2)}.hover\:bg-green-4\/25:hover{background-color:rgb(var(--green-4)/.25)}.hover\:bg-green-4\/30:hover{background-color:rgb(var(--green-4)/.3)}.hover\:bg-green-4\/40:hover{background-color:rgb(var(--green-4)/.4)}.hover\:bg-green-4\/5:hover{background-color:rgb(var(--green-4)/.05)}.hover\:bg-green-4\/50:hover{background-color:rgb(var(--green-4)/.5)}.hover\:bg-green-4\/60:hover{background-color:rgb(var(--green-4)/.6)}.hover\:bg-green-4\/70:hover{background-color:rgb(var(--green-4)/.7)}.hover\:bg-green-4\/75:hover{background-color:rgb(var(--green-4)/.75)}.hover\:bg-green-4\/80:hover{background-color:rgb(var(--green-4)/.8)}.hover\:bg-green-4\/90:hover{background-color:rgb(var(--green-4)/.9)}.hover\:bg-green-4\/95:hover{background-color:rgb(var(--green-4)/.95)}.hover\:bg-green-5\/0:hover{background-color:rgb(var(--green-5)/0)}.hover\:bg-green-5\/10:hover{background-color:rgb(var(--green-5)/.1)}.hover\:bg-green-5\/100:hover{background-color:rgb(var(--green-5)/1)}.hover\:bg-green-5\/20:hover{background-color:rgb(var(--green-5)/.2)}.hover\:bg-green-5\/25:hover{background-color:rgb(var(--green-5)/.25)}.hover\:bg-green-5\/30:hover{background-color:rgb(var(--green-5)/.3)}.hover\:bg-green-5\/40:hover{background-color:rgb(var(--green-5)/.4)}.hover\:bg-green-5\/5:hover{background-color:rgb(var(--green-5)/.05)}.hover\:bg-green-5\/50:hover{background-color:rgb(var(--green-5)/.5)}.hover\:bg-green-5\/60:hover{background-color:rgb(var(--green-5)/.6)}.hover\:bg-green-5\/70:hover{background-color:rgb(var(--green-5)/.7)}.hover\:bg-green-5\/75:hover{background-color:rgb(var(--green-5)/.75)}.hover\:bg-green-5\/80:hover{background-color:rgb(var(--green-5)/.8)}.hover\:bg-green-5\/90:hover{background-color:rgb(var(--green-5)/.9)}.hover\:bg-green-5\/95:hover{background-color:rgb(var(--green-5)/.95)}.hover\:bg-green-6\/0:hover{background-color:rgb(var(--green-6)/0)}.hover\:bg-green-6\/10:hover{background-color:rgb(var(--green-6)/.1)}.hover\:bg-green-6\/100:hover{background-color:rgb(var(--green-6)/1)}.hover\:bg-green-6\/20:hover{background-color:rgb(var(--green-6)/.2)}.hover\:bg-green-6\/25:hover{background-color:rgb(var(--green-6)/.25)}.hover\:bg-green-6\/30:hover{background-color:rgb(var(--green-6)/.3)}.hover\:bg-green-6\/40:hover{background-color:rgb(var(--green-6)/.4)}.hover\:bg-green-6\/5:hover{background-color:rgb(var(--green-6)/.05)}.hover\:bg-green-6\/50:hover{background-color:rgb(var(--green-6)/.5)}.hover\:bg-green-6\/60:hover{background-color:rgb(var(--green-6)/.6)}.hover\:bg-green-6\/70:hover{background-color:rgb(var(--green-6)/.7)}.hover\:bg-green-6\/75:hover{background-color:rgb(var(--green-6)/.75)}.hover\:bg-green-6\/80:hover{background-color:rgb(var(--green-6)/.8)}.hover\:bg-green-6\/90:hover{background-color:rgb(var(--green-6)/.9)}.hover\:bg-green-6\/95:hover{background-color:rgb(var(--green-6)/.95)}.hover\:bg-green-7\/0:hover{background-color:rgb(var(--green-7)/0)}.hover\:bg-green-7\/10:hover{background-color:rgb(var(--green-7)/.1)}.hover\:bg-green-7\/100:hover{background-color:rgb(var(--green-7)/1)}.hover\:bg-green-7\/20:hover{background-color:rgb(var(--green-7)/.2)}.hover\:bg-green-7\/25:hover{background-color:rgb(var(--green-7)/.25)}.hover\:bg-green-7\/30:hover{background-color:rgb(var(--green-7)/.3)}.hover\:bg-green-7\/40:hover{background-color:rgb(var(--green-7)/.4)}.hover\:bg-green-7\/5:hover{background-color:rgb(var(--green-7)/.05)}.hover\:bg-green-7\/50:hover{background-color:rgb(var(--green-7)/.5)}.hover\:bg-green-7\/60:hover{background-color:rgb(var(--green-7)/.6)}.hover\:bg-green-7\/70:hover{background-color:rgb(var(--green-7)/.7)}.hover\:bg-green-7\/75:hover{background-color:rgb(var(--green-7)/.75)}.hover\:bg-green-7\/80:hover{background-color:rgb(var(--green-7)/.8)}.hover\:bg-green-7\/90:hover{background-color:rgb(var(--green-7)/.9)}.hover\:bg-green-7\/95:hover{background-color:rgb(var(--green-7)/.95)}.hover\:bg-green-8\/0:hover{background-color:rgb(var(--green-8)/0)}.hover\:bg-green-8\/10:hover{background-color:rgb(var(--green-8)/.1)}.hover\:bg-green-8\/100:hover{background-color:rgb(var(--green-8)/1)}.hover\:bg-green-8\/20:hover{background-color:rgb(var(--green-8)/.2)}.hover\:bg-green-8\/25:hover{background-color:rgb(var(--green-8)/.25)}.hover\:bg-green-8\/30:hover{background-color:rgb(var(--green-8)/.3)}.hover\:bg-green-8\/40:hover{background-color:rgb(var(--green-8)/.4)}.hover\:bg-green-8\/5:hover{background-color:rgb(var(--green-8)/.05)}.hover\:bg-green-8\/50:hover{background-color:rgb(var(--green-8)/.5)}.hover\:bg-green-8\/60:hover{background-color:rgb(var(--green-8)/.6)}.hover\:bg-green-8\/70:hover{background-color:rgb(var(--green-8)/.7)}.hover\:bg-green-8\/75:hover{background-color:rgb(var(--green-8)/.75)}.hover\:bg-green-8\/80:hover{background-color:rgb(var(--green-8)/.8)}.hover\:bg-green-8\/90:hover{background-color:rgb(var(--green-8)/.9)}.hover\:bg-green-8\/95:hover{background-color:rgb(var(--green-8)/.95)}.hover\:bg-green-9\/0:hover{background-color:rgb(var(--green-9)/0)}.hover\:bg-green-9\/10:hover{background-color:rgb(var(--green-9)/.1)}.hover\:bg-green-9\/100:hover{background-color:rgb(var(--green-9)/1)}.hover\:bg-green-9\/20:hover{background-color:rgb(var(--green-9)/.2)}.hover\:bg-green-9\/25:hover{background-color:rgb(var(--green-9)/.25)}.hover\:bg-green-9\/30:hover{background-color:rgb(var(--green-9)/.3)}.hover\:bg-green-9\/40:hover{background-color:rgb(var(--green-9)/.4)}.hover\:bg-green-9\/5:hover{background-color:rgb(var(--green-9)/.05)}.hover\:bg-green-9\/50:hover{background-color:rgb(var(--green-9)/.5)}.hover\:bg-green-9\/60:hover{background-color:rgb(var(--green-9)/.6)}.hover\:bg-green-9\/70:hover{background-color:rgb(var(--green-9)/.7)}.hover\:bg-green-9\/75:hover{background-color:rgb(var(--green-9)/.75)}.hover\:bg-green-9\/80:hover{background-color:rgb(var(--green-9)/.8)}.hover\:bg-green-9\/90:hover{background-color:rgb(var(--green-9)/.9)}.hover\:bg-green-9\/95:hover{background-color:rgb(var(--green-9)/.95)}.hover\:bg-pink-1\/0:hover{background-color:rgb(var(--pink-1)/0)}.hover\:bg-pink-1\/10:hover{background-color:rgb(var(--pink-1)/.1)}.hover\:bg-pink-1\/100:hover{background-color:rgb(var(--pink-1)/1)}.hover\:bg-pink-1\/20:hover{background-color:rgb(var(--pink-1)/.2)}.hover\:bg-pink-1\/25:hover{background-color:rgb(var(--pink-1)/.25)}.hover\:bg-pink-1\/30:hover{background-color:rgb(var(--pink-1)/.3)}.hover\:bg-pink-1\/40:hover{background-color:rgb(var(--pink-1)/.4)}.hover\:bg-pink-1\/5:hover{background-color:rgb(var(--pink-1)/.05)}.hover\:bg-pink-1\/50:hover{background-color:rgb(var(--pink-1)/.5)}.hover\:bg-pink-1\/60:hover{background-color:rgb(var(--pink-1)/.6)}.hover\:bg-pink-1\/70:hover{background-color:rgb(var(--pink-1)/.7)}.hover\:bg-pink-1\/75:hover{background-color:rgb(var(--pink-1)/.75)}.hover\:bg-pink-1\/80:hover{background-color:rgb(var(--pink-1)/.8)}.hover\:bg-pink-1\/90:hover{background-color:rgb(var(--pink-1)/.9)}.hover\:bg-pink-1\/95:hover{background-color:rgb(var(--pink-1)/.95)}.hover\:bg-pink-10\/0:hover{background-color:rgb(var(--pink-10)/0)}.hover\:bg-pink-10\/10:hover{background-color:rgb(var(--pink-10)/.1)}.hover\:bg-pink-10\/100:hover{background-color:rgb(var(--pink-10)/1)}.hover\:bg-pink-10\/20:hover{background-color:rgb(var(--pink-10)/.2)}.hover\:bg-pink-10\/25:hover{background-color:rgb(var(--pink-10)/.25)}.hover\:bg-pink-10\/30:hover{background-color:rgb(var(--pink-10)/.3)}.hover\:bg-pink-10\/40:hover{background-color:rgb(var(--pink-10)/.4)}.hover\:bg-pink-10\/5:hover{background-color:rgb(var(--pink-10)/.05)}.hover\:bg-pink-10\/50:hover{background-color:rgb(var(--pink-10)/.5)}.hover\:bg-pink-10\/60:hover{background-color:rgb(var(--pink-10)/.6)}.hover\:bg-pink-10\/70:hover{background-color:rgb(var(--pink-10)/.7)}.hover\:bg-pink-10\/75:hover{background-color:rgb(var(--pink-10)/.75)}.hover\:bg-pink-10\/80:hover{background-color:rgb(var(--pink-10)/.8)}.hover\:bg-pink-10\/90:hover{background-color:rgb(var(--pink-10)/.9)}.hover\:bg-pink-10\/95:hover{background-color:rgb(var(--pink-10)/.95)}.hover\:bg-pink-2\/0:hover{background-color:rgb(var(--pink-2)/0)}.hover\:bg-pink-2\/10:hover{background-color:rgb(var(--pink-2)/.1)}.hover\:bg-pink-2\/100:hover{background-color:rgb(var(--pink-2)/1)}.hover\:bg-pink-2\/20:hover{background-color:rgb(var(--pink-2)/.2)}.hover\:bg-pink-2\/25:hover{background-color:rgb(var(--pink-2)/.25)}.hover\:bg-pink-2\/30:hover{background-color:rgb(var(--pink-2)/.3)}.hover\:bg-pink-2\/40:hover{background-color:rgb(var(--pink-2)/.4)}.hover\:bg-pink-2\/5:hover{background-color:rgb(var(--pink-2)/.05)}.hover\:bg-pink-2\/50:hover{background-color:rgb(var(--pink-2)/.5)}.hover\:bg-pink-2\/60:hover{background-color:rgb(var(--pink-2)/.6)}.hover\:bg-pink-2\/70:hover{background-color:rgb(var(--pink-2)/.7)}.hover\:bg-pink-2\/75:hover{background-color:rgb(var(--pink-2)/.75)}.hover\:bg-pink-2\/80:hover{background-color:rgb(var(--pink-2)/.8)}.hover\:bg-pink-2\/90:hover{background-color:rgb(var(--pink-2)/.9)}.hover\:bg-pink-2\/95:hover{background-color:rgb(var(--pink-2)/.95)}.hover\:bg-pink-3\/0:hover{background-color:rgb(var(--pink-3)/0)}.hover\:bg-pink-3\/10:hover{background-color:rgb(var(--pink-3)/.1)}.hover\:bg-pink-3\/100:hover{background-color:rgb(var(--pink-3)/1)}.hover\:bg-pink-3\/20:hover{background-color:rgb(var(--pink-3)/.2)}.hover\:bg-pink-3\/25:hover{background-color:rgb(var(--pink-3)/.25)}.hover\:bg-pink-3\/30:hover{background-color:rgb(var(--pink-3)/.3)}.hover\:bg-pink-3\/40:hover{background-color:rgb(var(--pink-3)/.4)}.hover\:bg-pink-3\/5:hover{background-color:rgb(var(--pink-3)/.05)}.hover\:bg-pink-3\/50:hover{background-color:rgb(var(--pink-3)/.5)}.hover\:bg-pink-3\/60:hover{background-color:rgb(var(--pink-3)/.6)}.hover\:bg-pink-3\/70:hover{background-color:rgb(var(--pink-3)/.7)}.hover\:bg-pink-3\/75:hover{background-color:rgb(var(--pink-3)/.75)}.hover\:bg-pink-3\/80:hover{background-color:rgb(var(--pink-3)/.8)}.hover\:bg-pink-3\/90:hover{background-color:rgb(var(--pink-3)/.9)}.hover\:bg-pink-3\/95:hover{background-color:rgb(var(--pink-3)/.95)}.hover\:bg-pink-4\/0:hover{background-color:rgb(var(--pink-4)/0)}.hover\:bg-pink-4\/10:hover{background-color:rgb(var(--pink-4)/.1)}.hover\:bg-pink-4\/100:hover{background-color:rgb(var(--pink-4)/1)}.hover\:bg-pink-4\/20:hover{background-color:rgb(var(--pink-4)/.2)}.hover\:bg-pink-4\/25:hover{background-color:rgb(var(--pink-4)/.25)}.hover\:bg-pink-4\/30:hover{background-color:rgb(var(--pink-4)/.3)}.hover\:bg-pink-4\/40:hover{background-color:rgb(var(--pink-4)/.4)}.hover\:bg-pink-4\/5:hover{background-color:rgb(var(--pink-4)/.05)}.hover\:bg-pink-4\/50:hover{background-color:rgb(var(--pink-4)/.5)}.hover\:bg-pink-4\/60:hover{background-color:rgb(var(--pink-4)/.6)}.hover\:bg-pink-4\/70:hover{background-color:rgb(var(--pink-4)/.7)}.hover\:bg-pink-4\/75:hover{background-color:rgb(var(--pink-4)/.75)}.hover\:bg-pink-4\/80:hover{background-color:rgb(var(--pink-4)/.8)}.hover\:bg-pink-4\/90:hover{background-color:rgb(var(--pink-4)/.9)}.hover\:bg-pink-4\/95:hover{background-color:rgb(var(--pink-4)/.95)}.hover\:bg-pink-5\/0:hover{background-color:rgb(var(--pink-5)/0)}.hover\:bg-pink-5\/10:hover{background-color:rgb(var(--pink-5)/.1)}.hover\:bg-pink-5\/100:hover{background-color:rgb(var(--pink-5)/1)}.hover\:bg-pink-5\/20:hover{background-color:rgb(var(--pink-5)/.2)}.hover\:bg-pink-5\/25:hover{background-color:rgb(var(--pink-5)/.25)}.hover\:bg-pink-5\/30:hover{background-color:rgb(var(--pink-5)/.3)}.hover\:bg-pink-5\/40:hover{background-color:rgb(var(--pink-5)/.4)}.hover\:bg-pink-5\/5:hover{background-color:rgb(var(--pink-5)/.05)}.hover\:bg-pink-5\/50:hover{background-color:rgb(var(--pink-5)/.5)}.hover\:bg-pink-5\/60:hover{background-color:rgb(var(--pink-5)/.6)}.hover\:bg-pink-5\/70:hover{background-color:rgb(var(--pink-5)/.7)}.hover\:bg-pink-5\/75:hover{background-color:rgb(var(--pink-5)/.75)}.hover\:bg-pink-5\/80:hover{background-color:rgb(var(--pink-5)/.8)}.hover\:bg-pink-5\/90:hover{background-color:rgb(var(--pink-5)/.9)}.hover\:bg-pink-5\/95:hover{background-color:rgb(var(--pink-5)/.95)}.hover\:bg-pink-6\/0:hover{background-color:rgb(var(--pink-6)/0)}.hover\:bg-pink-6\/10:hover{background-color:rgb(var(--pink-6)/.1)}.hover\:bg-pink-6\/100:hover{background-color:rgb(var(--pink-6)/1)}.hover\:bg-pink-6\/20:hover{background-color:rgb(var(--pink-6)/.2)}.hover\:bg-pink-6\/25:hover{background-color:rgb(var(--pink-6)/.25)}.hover\:bg-pink-6\/30:hover{background-color:rgb(var(--pink-6)/.3)}.hover\:bg-pink-6\/40:hover{background-color:rgb(var(--pink-6)/.4)}.hover\:bg-pink-6\/5:hover{background-color:rgb(var(--pink-6)/.05)}.hover\:bg-pink-6\/50:hover{background-color:rgb(var(--pink-6)/.5)}.hover\:bg-pink-6\/60:hover{background-color:rgb(var(--pink-6)/.6)}.hover\:bg-pink-6\/70:hover{background-color:rgb(var(--pink-6)/.7)}.hover\:bg-pink-6\/75:hover{background-color:rgb(var(--pink-6)/.75)}.hover\:bg-pink-6\/80:hover{background-color:rgb(var(--pink-6)/.8)}.hover\:bg-pink-6\/90:hover{background-color:rgb(var(--pink-6)/.9)}.hover\:bg-pink-6\/95:hover{background-color:rgb(var(--pink-6)/.95)}.hover\:bg-pink-7\/0:hover{background-color:rgb(var(--pink-7)/0)}.hover\:bg-pink-7\/10:hover{background-color:rgb(var(--pink-7)/.1)}.hover\:bg-pink-7\/100:hover{background-color:rgb(var(--pink-7)/1)}.hover\:bg-pink-7\/20:hover{background-color:rgb(var(--pink-7)/.2)}.hover\:bg-pink-7\/25:hover{background-color:rgb(var(--pink-7)/.25)}.hover\:bg-pink-7\/30:hover{background-color:rgb(var(--pink-7)/.3)}.hover\:bg-pink-7\/40:hover{background-color:rgb(var(--pink-7)/.4)}.hover\:bg-pink-7\/5:hover{background-color:rgb(var(--pink-7)/.05)}.hover\:bg-pink-7\/50:hover{background-color:rgb(var(--pink-7)/.5)}.hover\:bg-pink-7\/60:hover{background-color:rgb(var(--pink-7)/.6)}.hover\:bg-pink-7\/70:hover{background-color:rgb(var(--pink-7)/.7)}.hover\:bg-pink-7\/75:hover{background-color:rgb(var(--pink-7)/.75)}.hover\:bg-pink-7\/80:hover{background-color:rgb(var(--pink-7)/.8)}.hover\:bg-pink-7\/90:hover{background-color:rgb(var(--pink-7)/.9)}.hover\:bg-pink-7\/95:hover{background-color:rgb(var(--pink-7)/.95)}.hover\:bg-pink-8\/0:hover{background-color:rgb(var(--pink-8)/0)}.hover\:bg-pink-8\/10:hover{background-color:rgb(var(--pink-8)/.1)}.hover\:bg-pink-8\/100:hover{background-color:rgb(var(--pink-8)/1)}.hover\:bg-pink-8\/20:hover{background-color:rgb(var(--pink-8)/.2)}.hover\:bg-pink-8\/25:hover{background-color:rgb(var(--pink-8)/.25)}.hover\:bg-pink-8\/30:hover{background-color:rgb(var(--pink-8)/.3)}.hover\:bg-pink-8\/40:hover{background-color:rgb(var(--pink-8)/.4)}.hover\:bg-pink-8\/5:hover{background-color:rgb(var(--pink-8)/.05)}.hover\:bg-pink-8\/50:hover{background-color:rgb(var(--pink-8)/.5)}.hover\:bg-pink-8\/60:hover{background-color:rgb(var(--pink-8)/.6)}.hover\:bg-pink-8\/70:hover{background-color:rgb(var(--pink-8)/.7)}.hover\:bg-pink-8\/75:hover{background-color:rgb(var(--pink-8)/.75)}.hover\:bg-pink-8\/80:hover{background-color:rgb(var(--pink-8)/.8)}.hover\:bg-pink-8\/90:hover{background-color:rgb(var(--pink-8)/.9)}.hover\:bg-pink-8\/95:hover{background-color:rgb(var(--pink-8)/.95)}.hover\:bg-pink-9\/0:hover{background-color:rgb(var(--pink-9)/0)}.hover\:bg-pink-9\/10:hover{background-color:rgb(var(--pink-9)/.1)}.hover\:bg-pink-9\/100:hover{background-color:rgb(var(--pink-9)/1)}.hover\:bg-pink-9\/20:hover{background-color:rgb(var(--pink-9)/.2)}.hover\:bg-pink-9\/25:hover{background-color:rgb(var(--pink-9)/.25)}.hover\:bg-pink-9\/30:hover{background-color:rgb(var(--pink-9)/.3)}.hover\:bg-pink-9\/40:hover{background-color:rgb(var(--pink-9)/.4)}.hover\:bg-pink-9\/5:hover{background-color:rgb(var(--pink-9)/.05)}.hover\:bg-pink-9\/50:hover{background-color:rgb(var(--pink-9)/.5)}.hover\:bg-pink-9\/60:hover{background-color:rgb(var(--pink-9)/.6)}.hover\:bg-pink-9\/70:hover{background-color:rgb(var(--pink-9)/.7)}.hover\:bg-pink-9\/75:hover{background-color:rgb(var(--pink-9)/.75)}.hover\:bg-pink-9\/80:hover{background-color:rgb(var(--pink-9)/.8)}.hover\:bg-pink-9\/90:hover{background-color:rgb(var(--pink-9)/.9)}.hover\:bg-pink-9\/95:hover{background-color:rgb(var(--pink-9)/.95)}.hover\:bg-primary:hover{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.hover\:bg-primary\/0:hover{background-color:rgb(var(--primary)/0)}.hover\:bg-primary\/10:hover{background-color:rgb(var(--primary)/.1)}.hover\:bg-primary\/100:hover{background-color:rgb(var(--primary)/1)}.hover\:bg-primary\/20:hover{background-color:rgb(var(--primary)/.2)}.hover\:bg-primary\/25:hover{background-color:rgb(var(--primary)/.25)}.hover\:bg-primary\/30:hover{background-color:rgb(var(--primary)/.3)}.hover\:bg-primary\/40:hover{background-color:rgb(var(--primary)/.4)}.hover\:bg-primary\/5:hover{background-color:rgb(var(--primary)/.05)}.hover\:bg-primary\/50:hover{background-color:rgb(var(--primary)/.5)}.hover\:bg-primary\/60:hover{background-color:rgb(var(--primary)/.6)}.hover\:bg-primary\/70:hover{background-color:rgb(var(--primary)/.7)}.hover\:bg-primary\/75:hover{background-color:rgb(var(--primary)/.75)}.hover\:bg-primary\/80:hover{background-color:rgb(var(--primary)/.8)}.hover\:bg-primary\/90:hover{background-color:rgb(var(--primary)/.9)}.hover\:bg-primary\/95:hover{background-color:rgb(var(--primary)/.95)}.hover\:bg-purple-1\/0:hover{background-color:rgb(var(--purple-1)/0)}.hover\:bg-purple-1\/10:hover{background-color:rgb(var(--purple-1)/.1)}.hover\:bg-purple-1\/100:hover{background-color:rgb(var(--purple-1)/1)}.hover\:bg-purple-1\/20:hover{background-color:rgb(var(--purple-1)/.2)}.hover\:bg-purple-1\/25:hover{background-color:rgb(var(--purple-1)/.25)}.hover\:bg-purple-1\/30:hover{background-color:rgb(var(--purple-1)/.3)}.hover\:bg-purple-1\/40:hover{background-color:rgb(var(--purple-1)/.4)}.hover\:bg-purple-1\/5:hover{background-color:rgb(var(--purple-1)/.05)}.hover\:bg-purple-1\/50:hover{background-color:rgb(var(--purple-1)/.5)}.hover\:bg-purple-1\/60:hover{background-color:rgb(var(--purple-1)/.6)}.hover\:bg-purple-1\/70:hover{background-color:rgb(var(--purple-1)/.7)}.hover\:bg-purple-1\/75:hover{background-color:rgb(var(--purple-1)/.75)}.hover\:bg-purple-1\/80:hover{background-color:rgb(var(--purple-1)/.8)}.hover\:bg-purple-1\/90:hover{background-color:rgb(var(--purple-1)/.9)}.hover\:bg-purple-1\/95:hover{background-color:rgb(var(--purple-1)/.95)}.hover\:bg-purple-10\/0:hover{background-color:rgb(var(--purple-10)/0)}.hover\:bg-purple-10\/10:hover{background-color:rgb(var(--purple-10)/.1)}.hover\:bg-purple-10\/100:hover{background-color:rgb(var(--purple-10)/1)}.hover\:bg-purple-10\/20:hover{background-color:rgb(var(--purple-10)/.2)}.hover\:bg-purple-10\/25:hover{background-color:rgb(var(--purple-10)/.25)}.hover\:bg-purple-10\/30:hover{background-color:rgb(var(--purple-10)/.3)}.hover\:bg-purple-10\/40:hover{background-color:rgb(var(--purple-10)/.4)}.hover\:bg-purple-10\/5:hover{background-color:rgb(var(--purple-10)/.05)}.hover\:bg-purple-10\/50:hover{background-color:rgb(var(--purple-10)/.5)}.hover\:bg-purple-10\/60:hover{background-color:rgb(var(--purple-10)/.6)}.hover\:bg-purple-10\/70:hover{background-color:rgb(var(--purple-10)/.7)}.hover\:bg-purple-10\/75:hover{background-color:rgb(var(--purple-10)/.75)}.hover\:bg-purple-10\/80:hover{background-color:rgb(var(--purple-10)/.8)}.hover\:bg-purple-10\/90:hover{background-color:rgb(var(--purple-10)/.9)}.hover\:bg-purple-10\/95:hover{background-color:rgb(var(--purple-10)/.95)}.hover\:bg-purple-2\/0:hover{background-color:rgb(var(--purple-2)/0)}.hover\:bg-purple-2\/10:hover{background-color:rgb(var(--purple-2)/.1)}.hover\:bg-purple-2\/100:hover{background-color:rgb(var(--purple-2)/1)}.hover\:bg-purple-2\/20:hover{background-color:rgb(var(--purple-2)/.2)}.hover\:bg-purple-2\/25:hover{background-color:rgb(var(--purple-2)/.25)}.hover\:bg-purple-2\/30:hover{background-color:rgb(var(--purple-2)/.3)}.hover\:bg-purple-2\/40:hover{background-color:rgb(var(--purple-2)/.4)}.hover\:bg-purple-2\/5:hover{background-color:rgb(var(--purple-2)/.05)}.hover\:bg-purple-2\/50:hover{background-color:rgb(var(--purple-2)/.5)}.hover\:bg-purple-2\/60:hover{background-color:rgb(var(--purple-2)/.6)}.hover\:bg-purple-2\/70:hover{background-color:rgb(var(--purple-2)/.7)}.hover\:bg-purple-2\/75:hover{background-color:rgb(var(--purple-2)/.75)}.hover\:bg-purple-2\/80:hover{background-color:rgb(var(--purple-2)/.8)}.hover\:bg-purple-2\/90:hover{background-color:rgb(var(--purple-2)/.9)}.hover\:bg-purple-2\/95:hover{background-color:rgb(var(--purple-2)/.95)}.hover\:bg-purple-3\/0:hover{background-color:rgb(var(--purple-3)/0)}.hover\:bg-purple-3\/10:hover{background-color:rgb(var(--purple-3)/.1)}.hover\:bg-purple-3\/100:hover{background-color:rgb(var(--purple-3)/1)}.hover\:bg-purple-3\/20:hover{background-color:rgb(var(--purple-3)/.2)}.hover\:bg-purple-3\/25:hover{background-color:rgb(var(--purple-3)/.25)}.hover\:bg-purple-3\/30:hover{background-color:rgb(var(--purple-3)/.3)}.hover\:bg-purple-3\/40:hover{background-color:rgb(var(--purple-3)/.4)}.hover\:bg-purple-3\/5:hover{background-color:rgb(var(--purple-3)/.05)}.hover\:bg-purple-3\/50:hover{background-color:rgb(var(--purple-3)/.5)}.hover\:bg-purple-3\/60:hover{background-color:rgb(var(--purple-3)/.6)}.hover\:bg-purple-3\/70:hover{background-color:rgb(var(--purple-3)/.7)}.hover\:bg-purple-3\/75:hover{background-color:rgb(var(--purple-3)/.75)}.hover\:bg-purple-3\/80:hover{background-color:rgb(var(--purple-3)/.8)}.hover\:bg-purple-3\/90:hover{background-color:rgb(var(--purple-3)/.9)}.hover\:bg-purple-3\/95:hover{background-color:rgb(var(--purple-3)/.95)}.hover\:bg-purple-4\/0:hover{background-color:rgb(var(--purple-4)/0)}.hover\:bg-purple-4\/10:hover{background-color:rgb(var(--purple-4)/.1)}.hover\:bg-purple-4\/100:hover{background-color:rgb(var(--purple-4)/1)}.hover\:bg-purple-4\/20:hover{background-color:rgb(var(--purple-4)/.2)}.hover\:bg-purple-4\/25:hover{background-color:rgb(var(--purple-4)/.25)}.hover\:bg-purple-4\/30:hover{background-color:rgb(var(--purple-4)/.3)}.hover\:bg-purple-4\/40:hover{background-color:rgb(var(--purple-4)/.4)}.hover\:bg-purple-4\/5:hover{background-color:rgb(var(--purple-4)/.05)}.hover\:bg-purple-4\/50:hover{background-color:rgb(var(--purple-4)/.5)}.hover\:bg-purple-4\/60:hover{background-color:rgb(var(--purple-4)/.6)}.hover\:bg-purple-4\/70:hover{background-color:rgb(var(--purple-4)/.7)}.hover\:bg-purple-4\/75:hover{background-color:rgb(var(--purple-4)/.75)}.hover\:bg-purple-4\/80:hover{background-color:rgb(var(--purple-4)/.8)}.hover\:bg-purple-4\/90:hover{background-color:rgb(var(--purple-4)/.9)}.hover\:bg-purple-4\/95:hover{background-color:rgb(var(--purple-4)/.95)}.hover\:bg-purple-5\/0:hover{background-color:rgb(var(--purple-5)/0)}.hover\:bg-purple-5\/10:hover{background-color:rgb(var(--purple-5)/.1)}.hover\:bg-purple-5\/100:hover{background-color:rgb(var(--purple-5)/1)}.hover\:bg-purple-5\/20:hover{background-color:rgb(var(--purple-5)/.2)}.hover\:bg-purple-5\/25:hover{background-color:rgb(var(--purple-5)/.25)}.hover\:bg-purple-5\/30:hover{background-color:rgb(var(--purple-5)/.3)}.hover\:bg-purple-5\/40:hover{background-color:rgb(var(--purple-5)/.4)}.hover\:bg-purple-5\/5:hover{background-color:rgb(var(--purple-5)/.05)}.hover\:bg-purple-5\/50:hover{background-color:rgb(var(--purple-5)/.5)}.hover\:bg-purple-5\/60:hover{background-color:rgb(var(--purple-5)/.6)}.hover\:bg-purple-5\/70:hover{background-color:rgb(var(--purple-5)/.7)}.hover\:bg-purple-5\/75:hover{background-color:rgb(var(--purple-5)/.75)}.hover\:bg-purple-5\/80:hover{background-color:rgb(var(--purple-5)/.8)}.hover\:bg-purple-5\/90:hover{background-color:rgb(var(--purple-5)/.9)}.hover\:bg-purple-5\/95:hover{background-color:rgb(var(--purple-5)/.95)}.hover\:bg-purple-6\/0:hover{background-color:rgb(var(--purple-6)/0)}.hover\:bg-purple-6\/10:hover{background-color:rgb(var(--purple-6)/.1)}.hover\:bg-purple-6\/100:hover{background-color:rgb(var(--purple-6)/1)}.hover\:bg-purple-6\/20:hover{background-color:rgb(var(--purple-6)/.2)}.hover\:bg-purple-6\/25:hover{background-color:rgb(var(--purple-6)/.25)}.hover\:bg-purple-6\/30:hover{background-color:rgb(var(--purple-6)/.3)}.hover\:bg-purple-6\/40:hover{background-color:rgb(var(--purple-6)/.4)}.hover\:bg-purple-6\/5:hover{background-color:rgb(var(--purple-6)/.05)}.hover\:bg-purple-6\/50:hover{background-color:rgb(var(--purple-6)/.5)}.hover\:bg-purple-6\/60:hover{background-color:rgb(var(--purple-6)/.6)}.hover\:bg-purple-6\/70:hover{background-color:rgb(var(--purple-6)/.7)}.hover\:bg-purple-6\/75:hover{background-color:rgb(var(--purple-6)/.75)}.hover\:bg-purple-6\/80:hover{background-color:rgb(var(--purple-6)/.8)}.hover\:bg-purple-6\/90:hover{background-color:rgb(var(--purple-6)/.9)}.hover\:bg-purple-6\/95:hover{background-color:rgb(var(--purple-6)/.95)}.hover\:bg-purple-7\/0:hover{background-color:rgb(var(--purple-7)/0)}.hover\:bg-purple-7\/10:hover{background-color:rgb(var(--purple-7)/.1)}.hover\:bg-purple-7\/100:hover{background-color:rgb(var(--purple-7)/1)}.hover\:bg-purple-7\/20:hover{background-color:rgb(var(--purple-7)/.2)}.hover\:bg-purple-7\/25:hover{background-color:rgb(var(--purple-7)/.25)}.hover\:bg-purple-7\/30:hover{background-color:rgb(var(--purple-7)/.3)}.hover\:bg-purple-7\/40:hover{background-color:rgb(var(--purple-7)/.4)}.hover\:bg-purple-7\/5:hover{background-color:rgb(var(--purple-7)/.05)}.hover\:bg-purple-7\/50:hover{background-color:rgb(var(--purple-7)/.5)}.hover\:bg-purple-7\/60:hover{background-color:rgb(var(--purple-7)/.6)}.hover\:bg-purple-7\/70:hover{background-color:rgb(var(--purple-7)/.7)}.hover\:bg-purple-7\/75:hover{background-color:rgb(var(--purple-7)/.75)}.hover\:bg-purple-7\/80:hover{background-color:rgb(var(--purple-7)/.8)}.hover\:bg-purple-7\/90:hover{background-color:rgb(var(--purple-7)/.9)}.hover\:bg-purple-7\/95:hover{background-color:rgb(var(--purple-7)/.95)}.hover\:bg-purple-8\/0:hover{background-color:rgb(var(--purple-8)/0)}.hover\:bg-purple-8\/10:hover{background-color:rgb(var(--purple-8)/.1)}.hover\:bg-purple-8\/100:hover{background-color:rgb(var(--purple-8)/1)}.hover\:bg-purple-8\/20:hover{background-color:rgb(var(--purple-8)/.2)}.hover\:bg-purple-8\/25:hover{background-color:rgb(var(--purple-8)/.25)}.hover\:bg-purple-8\/30:hover{background-color:rgb(var(--purple-8)/.3)}.hover\:bg-purple-8\/40:hover{background-color:rgb(var(--purple-8)/.4)}.hover\:bg-purple-8\/5:hover{background-color:rgb(var(--purple-8)/.05)}.hover\:bg-purple-8\/50:hover{background-color:rgb(var(--purple-8)/.5)}.hover\:bg-purple-8\/60:hover{background-color:rgb(var(--purple-8)/.6)}.hover\:bg-purple-8\/70:hover{background-color:rgb(var(--purple-8)/.7)}.hover\:bg-purple-8\/75:hover{background-color:rgb(var(--purple-8)/.75)}.hover\:bg-purple-8\/80:hover{background-color:rgb(var(--purple-8)/.8)}.hover\:bg-purple-8\/90:hover{background-color:rgb(var(--purple-8)/.9)}.hover\:bg-purple-8\/95:hover{background-color:rgb(var(--purple-8)/.95)}.hover\:bg-purple-9\/0:hover{background-color:rgb(var(--purple-9)/0)}.hover\:bg-purple-9\/10:hover{background-color:rgb(var(--purple-9)/.1)}.hover\:bg-purple-9\/100:hover{background-color:rgb(var(--purple-9)/1)}.hover\:bg-purple-9\/20:hover{background-color:rgb(var(--purple-9)/.2)}.hover\:bg-purple-9\/25:hover{background-color:rgb(var(--purple-9)/.25)}.hover\:bg-purple-9\/30:hover{background-color:rgb(var(--purple-9)/.3)}.hover\:bg-purple-9\/40:hover{background-color:rgb(var(--purple-9)/.4)}.hover\:bg-purple-9\/5:hover{background-color:rgb(var(--purple-9)/.05)}.hover\:bg-purple-9\/50:hover{background-color:rgb(var(--purple-9)/.5)}.hover\:bg-purple-9\/60:hover{background-color:rgb(var(--purple-9)/.6)}.hover\:bg-purple-9\/70:hover{background-color:rgb(var(--purple-9)/.7)}.hover\:bg-purple-9\/75:hover{background-color:rgb(var(--purple-9)/.75)}.hover\:bg-purple-9\/80:hover{background-color:rgb(var(--purple-9)/.8)}.hover\:bg-purple-9\/90:hover{background-color:rgb(var(--purple-9)/.9)}.hover\:bg-purple-9\/95:hover{background-color:rgb(var(--purple-9)/.95)}.hover\:bg-red-1\/0:hover{background-color:rgb(var(--red-1)/0)}.hover\:bg-red-1\/10:hover{background-color:rgb(var(--red-1)/.1)}.hover\:bg-red-1\/100:hover{background-color:rgb(var(--red-1)/1)}.hover\:bg-red-1\/20:hover{background-color:rgb(var(--red-1)/.2)}.hover\:bg-red-1\/25:hover{background-color:rgb(var(--red-1)/.25)}.hover\:bg-red-1\/30:hover{background-color:rgb(var(--red-1)/.3)}.hover\:bg-red-1\/40:hover{background-color:rgb(var(--red-1)/.4)}.hover\:bg-red-1\/5:hover{background-color:rgb(var(--red-1)/.05)}.hover\:bg-red-1\/50:hover{background-color:rgb(var(--red-1)/.5)}.hover\:bg-red-1\/60:hover{background-color:rgb(var(--red-1)/.6)}.hover\:bg-red-1\/70:hover{background-color:rgb(var(--red-1)/.7)}.hover\:bg-red-1\/75:hover{background-color:rgb(var(--red-1)/.75)}.hover\:bg-red-1\/80:hover{background-color:rgb(var(--red-1)/.8)}.hover\:bg-red-1\/90:hover{background-color:rgb(var(--red-1)/.9)}.hover\:bg-red-1\/95:hover{background-color:rgb(var(--red-1)/.95)}.hover\:bg-red-10\/0:hover{background-color:rgb(var(--red-10)/0)}.hover\:bg-red-10\/10:hover{background-color:rgb(var(--red-10)/.1)}.hover\:bg-red-10\/100:hover{background-color:rgb(var(--red-10)/1)}.hover\:bg-red-10\/20:hover{background-color:rgb(var(--red-10)/.2)}.hover\:bg-red-10\/25:hover{background-color:rgb(var(--red-10)/.25)}.hover\:bg-red-10\/30:hover{background-color:rgb(var(--red-10)/.3)}.hover\:bg-red-10\/40:hover{background-color:rgb(var(--red-10)/.4)}.hover\:bg-red-10\/5:hover{background-color:rgb(var(--red-10)/.05)}.hover\:bg-red-10\/50:hover{background-color:rgb(var(--red-10)/.5)}.hover\:bg-red-10\/60:hover{background-color:rgb(var(--red-10)/.6)}.hover\:bg-red-10\/70:hover{background-color:rgb(var(--red-10)/.7)}.hover\:bg-red-10\/75:hover{background-color:rgb(var(--red-10)/.75)}.hover\:bg-red-10\/80:hover{background-color:rgb(var(--red-10)/.8)}.hover\:bg-red-10\/90:hover{background-color:rgb(var(--red-10)/.9)}.hover\:bg-red-10\/95:hover{background-color:rgb(var(--red-10)/.95)}.hover\:bg-red-2\/0:hover{background-color:rgb(var(--red-2)/0)}.hover\:bg-red-2\/10:hover{background-color:rgb(var(--red-2)/.1)}.hover\:bg-red-2\/100:hover{background-color:rgb(var(--red-2)/1)}.hover\:bg-red-2\/20:hover{background-color:rgb(var(--red-2)/.2)}.hover\:bg-red-2\/25:hover{background-color:rgb(var(--red-2)/.25)}.hover\:bg-red-2\/30:hover{background-color:rgb(var(--red-2)/.3)}.hover\:bg-red-2\/40:hover{background-color:rgb(var(--red-2)/.4)}.hover\:bg-red-2\/5:hover{background-color:rgb(var(--red-2)/.05)}.hover\:bg-red-2\/50:hover{background-color:rgb(var(--red-2)/.5)}.hover\:bg-red-2\/60:hover{background-color:rgb(var(--red-2)/.6)}.hover\:bg-red-2\/70:hover{background-color:rgb(var(--red-2)/.7)}.hover\:bg-red-2\/75:hover{background-color:rgb(var(--red-2)/.75)}.hover\:bg-red-2\/80:hover{background-color:rgb(var(--red-2)/.8)}.hover\:bg-red-2\/90:hover{background-color:rgb(var(--red-2)/.9)}.hover\:bg-red-2\/95:hover{background-color:rgb(var(--red-2)/.95)}.hover\:bg-red-3\/0:hover{background-color:rgb(var(--red-3)/0)}.hover\:bg-red-3\/10:hover{background-color:rgb(var(--red-3)/.1)}.hover\:bg-red-3\/100:hover{background-color:rgb(var(--red-3)/1)}.hover\:bg-red-3\/20:hover{background-color:rgb(var(--red-3)/.2)}.hover\:bg-red-3\/25:hover{background-color:rgb(var(--red-3)/.25)}.hover\:bg-red-3\/30:hover{background-color:rgb(var(--red-3)/.3)}.hover\:bg-red-3\/40:hover{background-color:rgb(var(--red-3)/.4)}.hover\:bg-red-3\/5:hover{background-color:rgb(var(--red-3)/.05)}.hover\:bg-red-3\/50:hover{background-color:rgb(var(--red-3)/.5)}.hover\:bg-red-3\/60:hover{background-color:rgb(var(--red-3)/.6)}.hover\:bg-red-3\/70:hover{background-color:rgb(var(--red-3)/.7)}.hover\:bg-red-3\/75:hover{background-color:rgb(var(--red-3)/.75)}.hover\:bg-red-3\/80:hover{background-color:rgb(var(--red-3)/.8)}.hover\:bg-red-3\/90:hover{background-color:rgb(var(--red-3)/.9)}.hover\:bg-red-3\/95:hover{background-color:rgb(var(--red-3)/.95)}.hover\:bg-red-4\/0:hover{background-color:rgb(var(--red-4)/0)}.hover\:bg-red-4\/10:hover{background-color:rgb(var(--red-4)/.1)}.hover\:bg-red-4\/100:hover{background-color:rgb(var(--red-4)/1)}.hover\:bg-red-4\/20:hover{background-color:rgb(var(--red-4)/.2)}.hover\:bg-red-4\/25:hover{background-color:rgb(var(--red-4)/.25)}.hover\:bg-red-4\/30:hover{background-color:rgb(var(--red-4)/.3)}.hover\:bg-red-4\/40:hover{background-color:rgb(var(--red-4)/.4)}.hover\:bg-red-4\/5:hover{background-color:rgb(var(--red-4)/.05)}.hover\:bg-red-4\/50:hover{background-color:rgb(var(--red-4)/.5)}.hover\:bg-red-4\/60:hover{background-color:rgb(var(--red-4)/.6)}.hover\:bg-red-4\/70:hover{background-color:rgb(var(--red-4)/.7)}.hover\:bg-red-4\/75:hover{background-color:rgb(var(--red-4)/.75)}.hover\:bg-red-4\/80:hover{background-color:rgb(var(--red-4)/.8)}.hover\:bg-red-4\/90:hover{background-color:rgb(var(--red-4)/.9)}.hover\:bg-red-4\/95:hover{background-color:rgb(var(--red-4)/.95)}.hover\:bg-red-5\/0:hover{background-color:rgb(var(--red-5)/0)}.hover\:bg-red-5\/10:hover{background-color:rgb(var(--red-5)/.1)}.hover\:bg-red-5\/100:hover{background-color:rgb(var(--red-5)/1)}.hover\:bg-red-5\/20:hover{background-color:rgb(var(--red-5)/.2)}.hover\:bg-red-5\/25:hover{background-color:rgb(var(--red-5)/.25)}.hover\:bg-red-5\/30:hover{background-color:rgb(var(--red-5)/.3)}.hover\:bg-red-5\/40:hover{background-color:rgb(var(--red-5)/.4)}.hover\:bg-red-5\/5:hover{background-color:rgb(var(--red-5)/.05)}.hover\:bg-red-5\/50:hover{background-color:rgb(var(--red-5)/.5)}.hover\:bg-red-5\/60:hover{background-color:rgb(var(--red-5)/.6)}.hover\:bg-red-5\/70:hover{background-color:rgb(var(--red-5)/.7)}.hover\:bg-red-5\/75:hover{background-color:rgb(var(--red-5)/.75)}.hover\:bg-red-5\/80:hover{background-color:rgb(var(--red-5)/.8)}.hover\:bg-red-5\/90:hover{background-color:rgb(var(--red-5)/.9)}.hover\:bg-red-5\/95:hover{background-color:rgb(var(--red-5)/.95)}.hover\:bg-red-6\/0:hover{background-color:rgb(var(--red-6)/0)}.hover\:bg-red-6\/10:hover{background-color:rgb(var(--red-6)/.1)}.hover\:bg-red-6\/100:hover{background-color:rgb(var(--red-6)/1)}.hover\:bg-red-6\/20:hover{background-color:rgb(var(--red-6)/.2)}.hover\:bg-red-6\/25:hover{background-color:rgb(var(--red-6)/.25)}.hover\:bg-red-6\/30:hover{background-color:rgb(var(--red-6)/.3)}.hover\:bg-red-6\/40:hover{background-color:rgb(var(--red-6)/.4)}.hover\:bg-red-6\/5:hover{background-color:rgb(var(--red-6)/.05)}.hover\:bg-red-6\/50:hover{background-color:rgb(var(--red-6)/.5)}.hover\:bg-red-6\/60:hover{background-color:rgb(var(--red-6)/.6)}.hover\:bg-red-6\/70:hover{background-color:rgb(var(--red-6)/.7)}.hover\:bg-red-6\/75:hover{background-color:rgb(var(--red-6)/.75)}.hover\:bg-red-6\/80:hover{background-color:rgb(var(--red-6)/.8)}.hover\:bg-red-6\/90:hover{background-color:rgb(var(--red-6)/.9)}.hover\:bg-red-6\/95:hover{background-color:rgb(var(--red-6)/.95)}.hover\:bg-red-7\/0:hover{background-color:rgb(var(--red-7)/0)}.hover\:bg-red-7\/10:hover{background-color:rgb(var(--red-7)/.1)}.hover\:bg-red-7\/100:hover{background-color:rgb(var(--red-7)/1)}.hover\:bg-red-7\/20:hover{background-color:rgb(var(--red-7)/.2)}.hover\:bg-red-7\/25:hover{background-color:rgb(var(--red-7)/.25)}.hover\:bg-red-7\/30:hover{background-color:rgb(var(--red-7)/.3)}.hover\:bg-red-7\/40:hover{background-color:rgb(var(--red-7)/.4)}.hover\:bg-red-7\/5:hover{background-color:rgb(var(--red-7)/.05)}.hover\:bg-red-7\/50:hover{background-color:rgb(var(--red-7)/.5)}.hover\:bg-red-7\/60:hover{background-color:rgb(var(--red-7)/.6)}.hover\:bg-red-7\/70:hover{background-color:rgb(var(--red-7)/.7)}.hover\:bg-red-7\/75:hover{background-color:rgb(var(--red-7)/.75)}.hover\:bg-red-7\/80:hover{background-color:rgb(var(--red-7)/.8)}.hover\:bg-red-7\/90:hover{background-color:rgb(var(--red-7)/.9)}.hover\:bg-red-7\/95:hover{background-color:rgb(var(--red-7)/.95)}.hover\:bg-red-8\/0:hover{background-color:rgb(var(--red-8)/0)}.hover\:bg-red-8\/10:hover{background-color:rgb(var(--red-8)/.1)}.hover\:bg-red-8\/100:hover{background-color:rgb(var(--red-8)/1)}.hover\:bg-red-8\/20:hover{background-color:rgb(var(--red-8)/.2)}.hover\:bg-red-8\/25:hover{background-color:rgb(var(--red-8)/.25)}.hover\:bg-red-8\/30:hover{background-color:rgb(var(--red-8)/.3)}.hover\:bg-red-8\/40:hover{background-color:rgb(var(--red-8)/.4)}.hover\:bg-red-8\/5:hover{background-color:rgb(var(--red-8)/.05)}.hover\:bg-red-8\/50:hover{background-color:rgb(var(--red-8)/.5)}.hover\:bg-red-8\/60:hover{background-color:rgb(var(--red-8)/.6)}.hover\:bg-red-8\/70:hover{background-color:rgb(var(--red-8)/.7)}.hover\:bg-red-8\/75:hover{background-color:rgb(var(--red-8)/.75)}.hover\:bg-red-8\/80:hover{background-color:rgb(var(--red-8)/.8)}.hover\:bg-red-8\/90:hover{background-color:rgb(var(--red-8)/.9)}.hover\:bg-red-8\/95:hover{background-color:rgb(var(--red-8)/.95)}.hover\:bg-red-9\/0:hover{background-color:rgb(var(--red-9)/0)}.hover\:bg-red-9\/10:hover{background-color:rgb(var(--red-9)/.1)}.hover\:bg-red-9\/100:hover{background-color:rgb(var(--red-9)/1)}.hover\:bg-red-9\/20:hover{background-color:rgb(var(--red-9)/.2)}.hover\:bg-red-9\/25:hover{background-color:rgb(var(--red-9)/.25)}.hover\:bg-red-9\/30:hover{background-color:rgb(var(--red-9)/.3)}.hover\:bg-red-9\/40:hover{background-color:rgb(var(--red-9)/.4)}.hover\:bg-red-9\/5:hover{background-color:rgb(var(--red-9)/.05)}.hover\:bg-red-9\/50:hover{background-color:rgb(var(--red-9)/.5)}.hover\:bg-red-9\/60:hover{background-color:rgb(var(--red-9)/.6)}.hover\:bg-red-9\/70:hover{background-color:rgb(var(--red-9)/.7)}.hover\:bg-red-9\/75:hover{background-color:rgb(var(--red-9)/.75)}.hover\:bg-red-9\/80:hover{background-color:rgb(var(--red-9)/.8)}.hover\:bg-red-9\/90:hover{background-color:rgb(var(--red-9)/.9)}.hover\:bg-red-9\/95:hover{background-color:rgb(var(--red-9)/.95)}.hover\:bg-secondary:hover{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.hover\:bg-secondary\/0:hover{background-color:rgb(var(--secondary)/0)}.hover\:bg-secondary\/10:hover{background-color:rgb(var(--secondary)/.1)}.hover\:bg-secondary\/100:hover{background-color:rgb(var(--secondary)/1)}.hover\:bg-secondary\/20:hover{background-color:rgb(var(--secondary)/.2)}.hover\:bg-secondary\/25:hover{background-color:rgb(var(--secondary)/.25)}.hover\:bg-secondary\/30:hover{background-color:rgb(var(--secondary)/.3)}.hover\:bg-secondary\/40:hover{background-color:rgb(var(--secondary)/.4)}.hover\:bg-secondary\/5:hover{background-color:rgb(var(--secondary)/.05)}.hover\:bg-secondary\/50:hover{background-color:rgb(var(--secondary)/.5)}.hover\:bg-secondary\/60:hover{background-color:rgb(var(--secondary)/.6)}.hover\:bg-secondary\/70:hover{background-color:rgb(var(--secondary)/.7)}.hover\:bg-secondary\/75:hover{background-color:rgb(var(--secondary)/.75)}.hover\:bg-secondary\/80:hover{background-color:rgb(var(--secondary)/.8)}.hover\:bg-secondary\/90:hover{background-color:rgb(var(--secondary)/.9)}.hover\:bg-secondary\/95:hover{background-color:rgb(var(--secondary)/.95)}.hover\:bg-slate-1\/0:hover{background-color:rgb(var(--slate-1)/0)}.hover\:bg-slate-1\/10:hover{background-color:rgb(var(--slate-1)/.1)}.hover\:bg-slate-1\/100:hover{background-color:rgb(var(--slate-1)/1)}.hover\:bg-slate-1\/20:hover{background-color:rgb(var(--slate-1)/.2)}.hover\:bg-slate-1\/25:hover{background-color:rgb(var(--slate-1)/.25)}.hover\:bg-slate-1\/30:hover{background-color:rgb(var(--slate-1)/.3)}.hover\:bg-slate-1\/40:hover{background-color:rgb(var(--slate-1)/.4)}.hover\:bg-slate-1\/5:hover{background-color:rgb(var(--slate-1)/.05)}.hover\:bg-slate-1\/50:hover{background-color:rgb(var(--slate-1)/.5)}.hover\:bg-slate-1\/60:hover{background-color:rgb(var(--slate-1)/.6)}.hover\:bg-slate-1\/70:hover{background-color:rgb(var(--slate-1)/.7)}.hover\:bg-slate-1\/75:hover{background-color:rgb(var(--slate-1)/.75)}.hover\:bg-slate-1\/80:hover{background-color:rgb(var(--slate-1)/.8)}.hover\:bg-slate-1\/90:hover{background-color:rgb(var(--slate-1)/.9)}.hover\:bg-slate-1\/95:hover{background-color:rgb(var(--slate-1)/.95)}.hover\:bg-slate-10\/0:hover{background-color:rgb(var(--slate-10)/0)}.hover\:bg-slate-10\/10:hover{background-color:rgb(var(--slate-10)/.1)}.hover\:bg-slate-10\/100:hover{background-color:rgb(var(--slate-10)/1)}.hover\:bg-slate-10\/20:hover{background-color:rgb(var(--slate-10)/.2)}.hover\:bg-slate-10\/25:hover{background-color:rgb(var(--slate-10)/.25)}.hover\:bg-slate-10\/30:hover{background-color:rgb(var(--slate-10)/.3)}.hover\:bg-slate-10\/40:hover{background-color:rgb(var(--slate-10)/.4)}.hover\:bg-slate-10\/5:hover{background-color:rgb(var(--slate-10)/.05)}.hover\:bg-slate-10\/50:hover{background-color:rgb(var(--slate-10)/.5)}.hover\:bg-slate-10\/60:hover{background-color:rgb(var(--slate-10)/.6)}.hover\:bg-slate-10\/70:hover{background-color:rgb(var(--slate-10)/.7)}.hover\:bg-slate-10\/75:hover{background-color:rgb(var(--slate-10)/.75)}.hover\:bg-slate-10\/80:hover{background-color:rgb(var(--slate-10)/.8)}.hover\:bg-slate-10\/90:hover{background-color:rgb(var(--slate-10)/.9)}.hover\:bg-slate-10\/95:hover{background-color:rgb(var(--slate-10)/.95)}.hover\:bg-slate-2\/0:hover{background-color:rgb(var(--slate-2)/0)}.hover\:bg-slate-2\/10:hover{background-color:rgb(var(--slate-2)/.1)}.hover\:bg-slate-2\/100:hover{background-color:rgb(var(--slate-2)/1)}.hover\:bg-slate-2\/20:hover{background-color:rgb(var(--slate-2)/.2)}.hover\:bg-slate-2\/25:hover{background-color:rgb(var(--slate-2)/.25)}.hover\:bg-slate-2\/30:hover{background-color:rgb(var(--slate-2)/.3)}.hover\:bg-slate-2\/40:hover{background-color:rgb(var(--slate-2)/.4)}.hover\:bg-slate-2\/5:hover{background-color:rgb(var(--slate-2)/.05)}.hover\:bg-slate-2\/50:hover{background-color:rgb(var(--slate-2)/.5)}.hover\:bg-slate-2\/60:hover{background-color:rgb(var(--slate-2)/.6)}.hover\:bg-slate-2\/70:hover{background-color:rgb(var(--slate-2)/.7)}.hover\:bg-slate-2\/75:hover{background-color:rgb(var(--slate-2)/.75)}.hover\:bg-slate-2\/80:hover{background-color:rgb(var(--slate-2)/.8)}.hover\:bg-slate-2\/90:hover{background-color:rgb(var(--slate-2)/.9)}.hover\:bg-slate-2\/95:hover{background-color:rgb(var(--slate-2)/.95)}.hover\:bg-slate-3\/0:hover{background-color:rgb(var(--slate-3)/0)}.hover\:bg-slate-3\/10:hover{background-color:rgb(var(--slate-3)/.1)}.hover\:bg-slate-3\/100:hover{background-color:rgb(var(--slate-3)/1)}.hover\:bg-slate-3\/20:hover{background-color:rgb(var(--slate-3)/.2)}.hover\:bg-slate-3\/25:hover{background-color:rgb(var(--slate-3)/.25)}.hover\:bg-slate-3\/30:hover{background-color:rgb(var(--slate-3)/.3)}.hover\:bg-slate-3\/40:hover{background-color:rgb(var(--slate-3)/.4)}.hover\:bg-slate-3\/5:hover{background-color:rgb(var(--slate-3)/.05)}.hover\:bg-slate-3\/50:hover{background-color:rgb(var(--slate-3)/.5)}.hover\:bg-slate-3\/60:hover{background-color:rgb(var(--slate-3)/.6)}.hover\:bg-slate-3\/70:hover{background-color:rgb(var(--slate-3)/.7)}.hover\:bg-slate-3\/75:hover{background-color:rgb(var(--slate-3)/.75)}.hover\:bg-slate-3\/80:hover{background-color:rgb(var(--slate-3)/.8)}.hover\:bg-slate-3\/90:hover{background-color:rgb(var(--slate-3)/.9)}.hover\:bg-slate-3\/95:hover{background-color:rgb(var(--slate-3)/.95)}.hover\:bg-slate-4\/0:hover{background-color:rgb(var(--slate-4)/0)}.hover\:bg-slate-4\/10:hover{background-color:rgb(var(--slate-4)/.1)}.hover\:bg-slate-4\/100:hover{background-color:rgb(var(--slate-4)/1)}.hover\:bg-slate-4\/20:hover{background-color:rgb(var(--slate-4)/.2)}.hover\:bg-slate-4\/25:hover{background-color:rgb(var(--slate-4)/.25)}.hover\:bg-slate-4\/30:hover{background-color:rgb(var(--slate-4)/.3)}.hover\:bg-slate-4\/40:hover{background-color:rgb(var(--slate-4)/.4)}.hover\:bg-slate-4\/5:hover{background-color:rgb(var(--slate-4)/.05)}.hover\:bg-slate-4\/50:hover{background-color:rgb(var(--slate-4)/.5)}.hover\:bg-slate-4\/60:hover{background-color:rgb(var(--slate-4)/.6)}.hover\:bg-slate-4\/70:hover{background-color:rgb(var(--slate-4)/.7)}.hover\:bg-slate-4\/75:hover{background-color:rgb(var(--slate-4)/.75)}.hover\:bg-slate-4\/80:hover{background-color:rgb(var(--slate-4)/.8)}.hover\:bg-slate-4\/90:hover{background-color:rgb(var(--slate-4)/.9)}.hover\:bg-slate-4\/95:hover{background-color:rgb(var(--slate-4)/.95)}.hover\:bg-slate-5\/0:hover{background-color:rgb(var(--slate-5)/0)}.hover\:bg-slate-5\/10:hover{background-color:rgb(var(--slate-5)/.1)}.hover\:bg-slate-5\/100:hover{background-color:rgb(var(--slate-5)/1)}.hover\:bg-slate-5\/20:hover{background-color:rgb(var(--slate-5)/.2)}.hover\:bg-slate-5\/25:hover{background-color:rgb(var(--slate-5)/.25)}.hover\:bg-slate-5\/30:hover{background-color:rgb(var(--slate-5)/.3)}.hover\:bg-slate-5\/40:hover{background-color:rgb(var(--slate-5)/.4)}.hover\:bg-slate-5\/5:hover{background-color:rgb(var(--slate-5)/.05)}.hover\:bg-slate-5\/50:hover{background-color:rgb(var(--slate-5)/.5)}.hover\:bg-slate-5\/60:hover{background-color:rgb(var(--slate-5)/.6)}.hover\:bg-slate-5\/70:hover{background-color:rgb(var(--slate-5)/.7)}.hover\:bg-slate-5\/75:hover{background-color:rgb(var(--slate-5)/.75)}.hover\:bg-slate-5\/80:hover{background-color:rgb(var(--slate-5)/.8)}.hover\:bg-slate-5\/90:hover{background-color:rgb(var(--slate-5)/.9)}.hover\:bg-slate-5\/95:hover{background-color:rgb(var(--slate-5)/.95)}.hover\:bg-slate-6\/0:hover{background-color:rgb(var(--slate-6)/0)}.hover\:bg-slate-6\/10:hover{background-color:rgb(var(--slate-6)/.1)}.hover\:bg-slate-6\/100:hover{background-color:rgb(var(--slate-6)/1)}.hover\:bg-slate-6\/20:hover{background-color:rgb(var(--slate-6)/.2)}.hover\:bg-slate-6\/25:hover{background-color:rgb(var(--slate-6)/.25)}.hover\:bg-slate-6\/30:hover{background-color:rgb(var(--slate-6)/.3)}.hover\:bg-slate-6\/40:hover{background-color:rgb(var(--slate-6)/.4)}.hover\:bg-slate-6\/5:hover{background-color:rgb(var(--slate-6)/.05)}.hover\:bg-slate-6\/50:hover{background-color:rgb(var(--slate-6)/.5)}.hover\:bg-slate-6\/60:hover{background-color:rgb(var(--slate-6)/.6)}.hover\:bg-slate-6\/70:hover{background-color:rgb(var(--slate-6)/.7)}.hover\:bg-slate-6\/75:hover{background-color:rgb(var(--slate-6)/.75)}.hover\:bg-slate-6\/80:hover{background-color:rgb(var(--slate-6)/.8)}.hover\:bg-slate-6\/90:hover{background-color:rgb(var(--slate-6)/.9)}.hover\:bg-slate-6\/95:hover{background-color:rgb(var(--slate-6)/.95)}.hover\:bg-slate-7\/0:hover{background-color:rgb(var(--slate-7)/0)}.hover\:bg-slate-7\/10:hover{background-color:rgb(var(--slate-7)/.1)}.hover\:bg-slate-7\/100:hover{background-color:rgb(var(--slate-7)/1)}.hover\:bg-slate-7\/20:hover{background-color:rgb(var(--slate-7)/.2)}.hover\:bg-slate-7\/25:hover{background-color:rgb(var(--slate-7)/.25)}.hover\:bg-slate-7\/30:hover{background-color:rgb(var(--slate-7)/.3)}.hover\:bg-slate-7\/40:hover{background-color:rgb(var(--slate-7)/.4)}.hover\:bg-slate-7\/5:hover{background-color:rgb(var(--slate-7)/.05)}.hover\:bg-slate-7\/50:hover{background-color:rgb(var(--slate-7)/.5)}.hover\:bg-slate-7\/60:hover{background-color:rgb(var(--slate-7)/.6)}.hover\:bg-slate-7\/70:hover{background-color:rgb(var(--slate-7)/.7)}.hover\:bg-slate-7\/75:hover{background-color:rgb(var(--slate-7)/.75)}.hover\:bg-slate-7\/80:hover{background-color:rgb(var(--slate-7)/.8)}.hover\:bg-slate-7\/90:hover{background-color:rgb(var(--slate-7)/.9)}.hover\:bg-slate-7\/95:hover{background-color:rgb(var(--slate-7)/.95)}.hover\:bg-slate-8\/0:hover{background-color:rgb(var(--slate-8)/0)}.hover\:bg-slate-8\/10:hover{background-color:rgb(var(--slate-8)/.1)}.hover\:bg-slate-8\/100:hover{background-color:rgb(var(--slate-8)/1)}.hover\:bg-slate-8\/20:hover{background-color:rgb(var(--slate-8)/.2)}.hover\:bg-slate-8\/25:hover{background-color:rgb(var(--slate-8)/.25)}.hover\:bg-slate-8\/30:hover{background-color:rgb(var(--slate-8)/.3)}.hover\:bg-slate-8\/40:hover{background-color:rgb(var(--slate-8)/.4)}.hover\:bg-slate-8\/5:hover{background-color:rgb(var(--slate-8)/.05)}.hover\:bg-slate-8\/50:hover{background-color:rgb(var(--slate-8)/.5)}.hover\:bg-slate-8\/60:hover{background-color:rgb(var(--slate-8)/.6)}.hover\:bg-slate-8\/70:hover{background-color:rgb(var(--slate-8)/.7)}.hover\:bg-slate-8\/75:hover{background-color:rgb(var(--slate-8)/.75)}.hover\:bg-slate-8\/80:hover{background-color:rgb(var(--slate-8)/.8)}.hover\:bg-slate-8\/90:hover{background-color:rgb(var(--slate-8)/.9)}.hover\:bg-slate-8\/95:hover{background-color:rgb(var(--slate-8)/.95)}.hover\:bg-slate-9\/0:hover{background-color:rgb(var(--slate-9)/0)}.hover\:bg-slate-9\/10:hover{background-color:rgb(var(--slate-9)/.1)}.hover\:bg-slate-9\/100:hover{background-color:rgb(var(--slate-9)/1)}.hover\:bg-slate-9\/20:hover{background-color:rgb(var(--slate-9)/.2)}.hover\:bg-slate-9\/25:hover{background-color:rgb(var(--slate-9)/.25)}.hover\:bg-slate-9\/30:hover{background-color:rgb(var(--slate-9)/.3)}.hover\:bg-slate-9\/40:hover{background-color:rgb(var(--slate-9)/.4)}.hover\:bg-slate-9\/5:hover{background-color:rgb(var(--slate-9)/.05)}.hover\:bg-slate-9\/50:hover{background-color:rgb(var(--slate-9)/.5)}.hover\:bg-slate-9\/60:hover{background-color:rgb(var(--slate-9)/.6)}.hover\:bg-slate-9\/70:hover{background-color:rgb(var(--slate-9)/.7)}.hover\:bg-slate-9\/75:hover{background-color:rgb(var(--slate-9)/.75)}.hover\:bg-slate-9\/80:hover{background-color:rgb(var(--slate-9)/.8)}.hover\:bg-slate-9\/90:hover{background-color:rgb(var(--slate-9)/.9)}.hover\:bg-slate-9\/95:hover{background-color:rgb(var(--slate-9)/.95)}.hover\:bg-success:hover{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.hover\:bg-success\/0:hover{background-color:rgb(var(--success)/0)}.hover\:bg-success\/10:hover{background-color:rgb(var(--success)/.1)}.hover\:bg-success\/100:hover{background-color:rgb(var(--success)/1)}.hover\:bg-success\/20:hover{background-color:rgb(var(--success)/.2)}.hover\:bg-success\/25:hover{background-color:rgb(var(--success)/.25)}.hover\:bg-success\/30:hover{background-color:rgb(var(--success)/.3)}.hover\:bg-success\/40:hover{background-color:rgb(var(--success)/.4)}.hover\:bg-success\/5:hover{background-color:rgb(var(--success)/.05)}.hover\:bg-success\/50:hover{background-color:rgb(var(--success)/.5)}.hover\:bg-success\/60:hover{background-color:rgb(var(--success)/.6)}.hover\:bg-success\/70:hover{background-color:rgb(var(--success)/.7)}.hover\:bg-success\/75:hover{background-color:rgb(var(--success)/.75)}.hover\:bg-success\/80:hover{background-color:rgb(var(--success)/.8)}.hover\:bg-success\/90:hover{background-color:rgb(var(--success)/.9)}.hover\:bg-success\/95:hover{background-color:rgb(var(--success)/.95)}.hover\:bg-warning:hover{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.hover\:bg-warning\/0:hover{background-color:rgb(var(--warning)/0)}.hover\:bg-warning\/10:hover{background-color:rgb(var(--warning)/.1)}.hover\:bg-warning\/100:hover{background-color:rgb(var(--warning)/1)}.hover\:bg-warning\/20:hover{background-color:rgb(var(--warning)/.2)}.hover\:bg-warning\/25:hover{background-color:rgb(var(--warning)/.25)}.hover\:bg-warning\/30:hover{background-color:rgb(var(--warning)/.3)}.hover\:bg-warning\/40:hover{background-color:rgb(var(--warning)/.4)}.hover\:bg-warning\/5:hover{background-color:rgb(var(--warning)/.05)}.hover\:bg-warning\/50:hover{background-color:rgb(var(--warning)/.5)}.hover\:bg-warning\/60:hover{background-color:rgb(var(--warning)/.6)}.hover\:bg-warning\/70:hover{background-color:rgb(var(--warning)/.7)}.hover\:bg-warning\/75:hover{background-color:rgb(var(--warning)/.75)}.hover\:bg-warning\/80:hover{background-color:rgb(var(--warning)/.8)}.hover\:bg-warning\/90:hover{background-color:rgb(var(--warning)/.9)}.hover\:bg-warning\/95:hover{background-color:rgb(var(--warning)/.95)}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:bg-white\/0:hover{background-color:hsla(0,0%,100%,0)}.hover\:bg-white\/10:hover{background-color:hsla(0,0%,100%,.1)}.hover\:bg-white\/100:hover{background-color:#fff}.hover\:bg-white\/20:hover{background-color:hsla(0,0%,100%,.2)}.hover\:bg-white\/25:hover{background-color:hsla(0,0%,100%,.25)}.hover\:bg-white\/30:hover{background-color:hsla(0,0%,100%,.3)}.hover\:bg-white\/40:hover{background-color:hsla(0,0%,100%,.4)}.hover\:bg-white\/5:hover{background-color:hsla(0,0%,100%,.05)}.hover\:bg-white\/50:hover{background-color:hsla(0,0%,100%,.5)}.hover\:bg-white\/60:hover{background-color:hsla(0,0%,100%,.6)}.hover\:bg-white\/70:hover{background-color:hsla(0,0%,100%,.7)}.hover\:bg-white\/75:hover{background-color:hsla(0,0%,100%,.75)}.hover\:bg-white\/80:hover{background-color:hsla(0,0%,100%,.8)}.hover\:bg-white\/90:hover{background-color:hsla(0,0%,100%,.9)}.hover\:bg-white\/95:hover{background-color:hsla(0,0%,100%,.95)}.hover\:bg-whiteInverted:hover{--tw-bg-opacity:1;background-color:rgb(var(--whiteInverted)/var(--tw-bg-opacity))}.hover\:bg-whiteInverted\/0:hover{background-color:rgb(var(--whiteInverted)/0)}.hover\:bg-whiteInverted\/10:hover{background-color:rgb(var(--whiteInverted)/.1)}.hover\:bg-whiteInverted\/100:hover{background-color:rgb(var(--whiteInverted)/1)}.hover\:bg-whiteInverted\/20:hover{background-color:rgb(var(--whiteInverted)/.2)}.hover\:bg-whiteInverted\/25:hover{background-color:rgb(var(--whiteInverted)/.25)}.hover\:bg-whiteInverted\/30:hover{background-color:rgb(var(--whiteInverted)/.3)}.hover\:bg-whiteInverted\/40:hover{background-color:rgb(var(--whiteInverted)/.4)}.hover\:bg-whiteInverted\/5:hover{background-color:rgb(var(--whiteInverted)/.05)}.hover\:bg-whiteInverted\/50:hover{background-color:rgb(var(--whiteInverted)/.5)}.hover\:bg-whiteInverted\/60:hover{background-color:rgb(var(--whiteInverted)/.6)}.hover\:bg-whiteInverted\/70:hover{background-color:rgb(var(--whiteInverted)/.7)}.hover\:bg-whiteInverted\/75:hover{background-color:rgb(var(--whiteInverted)/.75)}.hover\:bg-whiteInverted\/80:hover{background-color:rgb(var(--whiteInverted)/.8)}.hover\:bg-whiteInverted\/90:hover{background-color:rgb(var(--whiteInverted)/.9)}.hover\:bg-whiteInverted\/95:hover{background-color:rgb(var(--whiteInverted)/.95)}.hover\:from-backgroundPrimary:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/0:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/10:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/100:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/20:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/25:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/30:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/40:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/5:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/50:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/60:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/70:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/75:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/80:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/90:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundPrimary\/95:hover{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/0:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/10:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/100:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/20:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/25:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/30:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/40:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/5:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/50:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/60:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/70:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/75:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/80:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/90:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-backgroundSecondary\/95:hover{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black:hover{--tw-gradient-from:#000 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/0:hover{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/10:hover{--tw-gradient-from:rgba(0,0,0,.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/100:hover{--tw-gradient-from:#000 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/20:hover{--tw-gradient-from:rgba(0,0,0,.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/25:hover{--tw-gradient-from:rgba(0,0,0,.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/30:hover{--tw-gradient-from:rgba(0,0,0,.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/40:hover{--tw-gradient-from:rgba(0,0,0,.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/5:hover{--tw-gradient-from:rgba(0,0,0,.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/50:hover{--tw-gradient-from:rgba(0,0,0,.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/60:hover{--tw-gradient-from:rgba(0,0,0,.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/70:hover{--tw-gradient-from:rgba(0,0,0,.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/75:hover{--tw-gradient-from:rgba(0,0,0,.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/80:hover{--tw-gradient-from:rgba(0,0,0,.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/90:hover{--tw-gradient-from:rgba(0,0,0,.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-black\/95:hover{--tw-gradient-from:rgba(0,0,0,.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted:hover{--tw-gradient-from:rgb(var(--blackInverted)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/0:hover{--tw-gradient-from:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/10:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/100:hover{--tw-gradient-from:rgb(var(--blackInverted)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/20:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/25:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/30:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/40:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/5:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/50:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/60:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/70:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/75:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/80:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/90:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blackInverted\/95:hover{--tw-gradient-from:rgb(var(--blackInverted)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/0:hover{--tw-gradient-from:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/10:hover{--tw-gradient-from:rgb(var(--blue-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/100:hover{--tw-gradient-from:rgb(var(--blue-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/20:hover{--tw-gradient-from:rgb(var(--blue-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/25:hover{--tw-gradient-from:rgb(var(--blue-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/30:hover{--tw-gradient-from:rgb(var(--blue-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/40:hover{--tw-gradient-from:rgb(var(--blue-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/5:hover{--tw-gradient-from:rgb(var(--blue-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/50:hover{--tw-gradient-from:rgb(var(--blue-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/60:hover{--tw-gradient-from:rgb(var(--blue-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/70:hover{--tw-gradient-from:rgb(var(--blue-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/75:hover{--tw-gradient-from:rgb(var(--blue-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/80:hover{--tw-gradient-from:rgb(var(--blue-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/90:hover{--tw-gradient-from:rgb(var(--blue-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-1\/95:hover{--tw-gradient-from:rgb(var(--blue-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/0:hover{--tw-gradient-from:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/10:hover{--tw-gradient-from:rgb(var(--blue-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/100:hover{--tw-gradient-from:rgb(var(--blue-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/20:hover{--tw-gradient-from:rgb(var(--blue-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/25:hover{--tw-gradient-from:rgb(var(--blue-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/30:hover{--tw-gradient-from:rgb(var(--blue-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/40:hover{--tw-gradient-from:rgb(var(--blue-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/5:hover{--tw-gradient-from:rgb(var(--blue-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/50:hover{--tw-gradient-from:rgb(var(--blue-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/60:hover{--tw-gradient-from:rgb(var(--blue-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/70:hover{--tw-gradient-from:rgb(var(--blue-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/75:hover{--tw-gradient-from:rgb(var(--blue-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/80:hover{--tw-gradient-from:rgb(var(--blue-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/90:hover{--tw-gradient-from:rgb(var(--blue-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-10\/95:hover{--tw-gradient-from:rgb(var(--blue-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/0:hover{--tw-gradient-from:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/10:hover{--tw-gradient-from:rgb(var(--blue-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/100:hover{--tw-gradient-from:rgb(var(--blue-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/20:hover{--tw-gradient-from:rgb(var(--blue-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/25:hover{--tw-gradient-from:rgb(var(--blue-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/30:hover{--tw-gradient-from:rgb(var(--blue-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/40:hover{--tw-gradient-from:rgb(var(--blue-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/5:hover{--tw-gradient-from:rgb(var(--blue-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/50:hover{--tw-gradient-from:rgb(var(--blue-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/60:hover{--tw-gradient-from:rgb(var(--blue-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/70:hover{--tw-gradient-from:rgb(var(--blue-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/75:hover{--tw-gradient-from:rgb(var(--blue-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/80:hover{--tw-gradient-from:rgb(var(--blue-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/90:hover{--tw-gradient-from:rgb(var(--blue-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-2\/95:hover{--tw-gradient-from:rgb(var(--blue-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/0:hover{--tw-gradient-from:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/10:hover{--tw-gradient-from:rgb(var(--blue-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/100:hover{--tw-gradient-from:rgb(var(--blue-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/20:hover{--tw-gradient-from:rgb(var(--blue-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/25:hover{--tw-gradient-from:rgb(var(--blue-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/30:hover{--tw-gradient-from:rgb(var(--blue-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/40:hover{--tw-gradient-from:rgb(var(--blue-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/5:hover{--tw-gradient-from:rgb(var(--blue-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/50:hover{--tw-gradient-from:rgb(var(--blue-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/60:hover{--tw-gradient-from:rgb(var(--blue-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/70:hover{--tw-gradient-from:rgb(var(--blue-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/75:hover{--tw-gradient-from:rgb(var(--blue-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/80:hover{--tw-gradient-from:rgb(var(--blue-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/90:hover{--tw-gradient-from:rgb(var(--blue-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-3\/95:hover{--tw-gradient-from:rgb(var(--blue-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/0:hover{--tw-gradient-from:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/10:hover{--tw-gradient-from:rgb(var(--blue-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/100:hover{--tw-gradient-from:rgb(var(--blue-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/20:hover{--tw-gradient-from:rgb(var(--blue-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/25:hover{--tw-gradient-from:rgb(var(--blue-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/30:hover{--tw-gradient-from:rgb(var(--blue-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/40:hover{--tw-gradient-from:rgb(var(--blue-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/5:hover{--tw-gradient-from:rgb(var(--blue-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/50:hover{--tw-gradient-from:rgb(var(--blue-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/60:hover{--tw-gradient-from:rgb(var(--blue-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/70:hover{--tw-gradient-from:rgb(var(--blue-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/75:hover{--tw-gradient-from:rgb(var(--blue-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/80:hover{--tw-gradient-from:rgb(var(--blue-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/90:hover{--tw-gradient-from:rgb(var(--blue-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-4\/95:hover{--tw-gradient-from:rgb(var(--blue-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/0:hover{--tw-gradient-from:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/10:hover{--tw-gradient-from:rgb(var(--blue-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/100:hover{--tw-gradient-from:rgb(var(--blue-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/20:hover{--tw-gradient-from:rgb(var(--blue-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/25:hover{--tw-gradient-from:rgb(var(--blue-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/30:hover{--tw-gradient-from:rgb(var(--blue-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/40:hover{--tw-gradient-from:rgb(var(--blue-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/5:hover{--tw-gradient-from:rgb(var(--blue-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/50:hover{--tw-gradient-from:rgb(var(--blue-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/60:hover{--tw-gradient-from:rgb(var(--blue-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/70:hover{--tw-gradient-from:rgb(var(--blue-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/75:hover{--tw-gradient-from:rgb(var(--blue-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/80:hover{--tw-gradient-from:rgb(var(--blue-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/90:hover{--tw-gradient-from:rgb(var(--blue-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-5\/95:hover{--tw-gradient-from:rgb(var(--blue-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/0:hover{--tw-gradient-from:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/10:hover{--tw-gradient-from:rgb(var(--blue-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/100:hover{--tw-gradient-from:rgb(var(--blue-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/20:hover{--tw-gradient-from:rgb(var(--blue-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/25:hover{--tw-gradient-from:rgb(var(--blue-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/30:hover{--tw-gradient-from:rgb(var(--blue-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/40:hover{--tw-gradient-from:rgb(var(--blue-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/5:hover{--tw-gradient-from:rgb(var(--blue-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/50:hover{--tw-gradient-from:rgb(var(--blue-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/60:hover{--tw-gradient-from:rgb(var(--blue-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/70:hover{--tw-gradient-from:rgb(var(--blue-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/75:hover{--tw-gradient-from:rgb(var(--blue-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/80:hover{--tw-gradient-from:rgb(var(--blue-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/90:hover{--tw-gradient-from:rgb(var(--blue-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-6\/95:hover{--tw-gradient-from:rgb(var(--blue-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/0:hover{--tw-gradient-from:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/10:hover{--tw-gradient-from:rgb(var(--blue-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/100:hover{--tw-gradient-from:rgb(var(--blue-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/20:hover{--tw-gradient-from:rgb(var(--blue-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/25:hover{--tw-gradient-from:rgb(var(--blue-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/30:hover{--tw-gradient-from:rgb(var(--blue-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/40:hover{--tw-gradient-from:rgb(var(--blue-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/5:hover{--tw-gradient-from:rgb(var(--blue-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/50:hover{--tw-gradient-from:rgb(var(--blue-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/60:hover{--tw-gradient-from:rgb(var(--blue-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/70:hover{--tw-gradient-from:rgb(var(--blue-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/75:hover{--tw-gradient-from:rgb(var(--blue-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/80:hover{--tw-gradient-from:rgb(var(--blue-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/90:hover{--tw-gradient-from:rgb(var(--blue-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-7\/95:hover{--tw-gradient-from:rgb(var(--blue-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/0:hover{--tw-gradient-from:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/10:hover{--tw-gradient-from:rgb(var(--blue-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/100:hover{--tw-gradient-from:rgb(var(--blue-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/20:hover{--tw-gradient-from:rgb(var(--blue-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/25:hover{--tw-gradient-from:rgb(var(--blue-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/30:hover{--tw-gradient-from:rgb(var(--blue-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/40:hover{--tw-gradient-from:rgb(var(--blue-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/5:hover{--tw-gradient-from:rgb(var(--blue-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/50:hover{--tw-gradient-from:rgb(var(--blue-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/60:hover{--tw-gradient-from:rgb(var(--blue-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/70:hover{--tw-gradient-from:rgb(var(--blue-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/75:hover{--tw-gradient-from:rgb(var(--blue-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/80:hover{--tw-gradient-from:rgb(var(--blue-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/90:hover{--tw-gradient-from:rgb(var(--blue-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-8\/95:hover{--tw-gradient-from:rgb(var(--blue-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/0:hover{--tw-gradient-from:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/10:hover{--tw-gradient-from:rgb(var(--blue-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/100:hover{--tw-gradient-from:rgb(var(--blue-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/20:hover{--tw-gradient-from:rgb(var(--blue-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/25:hover{--tw-gradient-from:rgb(var(--blue-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/30:hover{--tw-gradient-from:rgb(var(--blue-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/40:hover{--tw-gradient-from:rgb(var(--blue-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/5:hover{--tw-gradient-from:rgb(var(--blue-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/50:hover{--tw-gradient-from:rgb(var(--blue-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/60:hover{--tw-gradient-from:rgb(var(--blue-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/70:hover{--tw-gradient-from:rgb(var(--blue-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/75:hover{--tw-gradient-from:rgb(var(--blue-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/80:hover{--tw-gradient-from:rgb(var(--blue-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/90:hover{--tw-gradient-from:rgb(var(--blue-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-blue-9\/95:hover{--tw-gradient-from:rgb(var(--blue-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border:hover{--tw-gradient-from:rgb(var(--border)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/0:hover{--tw-gradient-from:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/10:hover{--tw-gradient-from:rgb(var(--border)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/100:hover{--tw-gradient-from:rgb(var(--border)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/20:hover{--tw-gradient-from:rgb(var(--border)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/25:hover{--tw-gradient-from:rgb(var(--border)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/30:hover{--tw-gradient-from:rgb(var(--border)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/40:hover{--tw-gradient-from:rgb(var(--border)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/5:hover{--tw-gradient-from:rgb(var(--border)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/50:hover{--tw-gradient-from:rgb(var(--border)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/60:hover{--tw-gradient-from:rgb(var(--border)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/70:hover{--tw-gradient-from:rgb(var(--border)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/75:hover{--tw-gradient-from:rgb(var(--border)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/80:hover{--tw-gradient-from:rgb(var(--border)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/90:hover{--tw-gradient-from:rgb(var(--border)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-border\/95:hover{--tw-gradient-from:rgb(var(--border)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1:hover{--tw-gradient-from:rgb(var(--content1)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/0:hover{--tw-gradient-from:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/10:hover{--tw-gradient-from:rgb(var(--content1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/100:hover{--tw-gradient-from:rgb(var(--content1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/20:hover{--tw-gradient-from:rgb(var(--content1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/25:hover{--tw-gradient-from:rgb(var(--content1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/30:hover{--tw-gradient-from:rgb(var(--content1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/40:hover{--tw-gradient-from:rgb(var(--content1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/5:hover{--tw-gradient-from:rgb(var(--content1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/50:hover{--tw-gradient-from:rgb(var(--content1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/60:hover{--tw-gradient-from:rgb(var(--content1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/70:hover{--tw-gradient-from:rgb(var(--content1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/75:hover{--tw-gradient-from:rgb(var(--content1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/80:hover{--tw-gradient-from:rgb(var(--content1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/90:hover{--tw-gradient-from:rgb(var(--content1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content1\/95:hover{--tw-gradient-from:rgb(var(--content1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2:hover{--tw-gradient-from:rgb(var(--content2)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/0:hover{--tw-gradient-from:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/10:hover{--tw-gradient-from:rgb(var(--content2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/100:hover{--tw-gradient-from:rgb(var(--content2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/20:hover{--tw-gradient-from:rgb(var(--content2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/25:hover{--tw-gradient-from:rgb(var(--content2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/30:hover{--tw-gradient-from:rgb(var(--content2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/40:hover{--tw-gradient-from:rgb(var(--content2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/5:hover{--tw-gradient-from:rgb(var(--content2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/50:hover{--tw-gradient-from:rgb(var(--content2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/60:hover{--tw-gradient-from:rgb(var(--content2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/70:hover{--tw-gradient-from:rgb(var(--content2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/75:hover{--tw-gradient-from:rgb(var(--content2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/80:hover{--tw-gradient-from:rgb(var(--content2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/90:hover{--tw-gradient-from:rgb(var(--content2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content2\/95:hover{--tw-gradient-from:rgb(var(--content2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3:hover{--tw-gradient-from:rgb(var(--content3)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/0:hover{--tw-gradient-from:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/10:hover{--tw-gradient-from:rgb(var(--content3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/100:hover{--tw-gradient-from:rgb(var(--content3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/20:hover{--tw-gradient-from:rgb(var(--content3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/25:hover{--tw-gradient-from:rgb(var(--content3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/30:hover{--tw-gradient-from:rgb(var(--content3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/40:hover{--tw-gradient-from:rgb(var(--content3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/5:hover{--tw-gradient-from:rgb(var(--content3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/50:hover{--tw-gradient-from:rgb(var(--content3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/60:hover{--tw-gradient-from:rgb(var(--content3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/70:hover{--tw-gradient-from:rgb(var(--content3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/75:hover{--tw-gradient-from:rgb(var(--content3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/80:hover{--tw-gradient-from:rgb(var(--content3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/90:hover{--tw-gradient-from:rgb(var(--content3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-content3\/95:hover{--tw-gradient-from:rgb(var(--content3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/0:hover{--tw-gradient-from:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/10:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/100:hover{--tw-gradient-from:rgb(var(--cyan-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/20:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/25:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/30:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/40:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/5:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/50:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/60:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/70:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/75:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/80:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/90:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-1\/95:hover{--tw-gradient-from:rgb(var(--cyan-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/0:hover{--tw-gradient-from:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/10:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/100:hover{--tw-gradient-from:rgb(var(--cyan-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/20:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/25:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/30:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/40:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/5:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/50:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/60:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/70:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/75:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/80:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/90:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-10\/95:hover{--tw-gradient-from:rgb(var(--cyan-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/0:hover{--tw-gradient-from:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/10:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/100:hover{--tw-gradient-from:rgb(var(--cyan-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/20:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/25:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/30:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/40:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/5:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/50:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/60:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/70:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/75:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/80:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/90:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-2\/95:hover{--tw-gradient-from:rgb(var(--cyan-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/0:hover{--tw-gradient-from:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/10:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/100:hover{--tw-gradient-from:rgb(var(--cyan-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/20:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/25:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/30:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/40:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/5:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/50:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/60:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/70:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/75:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/80:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/90:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-3\/95:hover{--tw-gradient-from:rgb(var(--cyan-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/0:hover{--tw-gradient-from:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/10:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/100:hover{--tw-gradient-from:rgb(var(--cyan-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/20:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/25:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/30:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/40:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/5:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/50:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/60:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/70:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/75:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/80:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/90:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-4\/95:hover{--tw-gradient-from:rgb(var(--cyan-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/0:hover{--tw-gradient-from:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/10:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/100:hover{--tw-gradient-from:rgb(var(--cyan-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/20:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/25:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/30:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/40:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/5:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/50:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/60:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/70:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/75:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/80:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/90:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-5\/95:hover{--tw-gradient-from:rgb(var(--cyan-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/0:hover{--tw-gradient-from:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/10:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/100:hover{--tw-gradient-from:rgb(var(--cyan-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/20:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/25:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/30:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/40:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/5:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/50:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/60:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/70:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/75:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/80:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/90:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-6\/95:hover{--tw-gradient-from:rgb(var(--cyan-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/0:hover{--tw-gradient-from:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/10:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/100:hover{--tw-gradient-from:rgb(var(--cyan-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/20:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/25:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/30:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/40:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/5:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/50:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/60:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/70:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/75:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/80:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/90:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-7\/95:hover{--tw-gradient-from:rgb(var(--cyan-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/0:hover{--tw-gradient-from:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/10:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/100:hover{--tw-gradient-from:rgb(var(--cyan-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/20:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/25:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/30:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/40:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/5:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/50:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/60:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/70:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/75:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/80:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/90:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-8\/95:hover{--tw-gradient-from:rgb(var(--cyan-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/0:hover{--tw-gradient-from:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/10:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/100:hover{--tw-gradient-from:rgb(var(--cyan-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/20:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/25:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/30:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/40:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/5:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/50:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/60:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/70:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/75:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/80:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/90:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-cyan-9\/95:hover{--tw-gradient-from:rgb(var(--cyan-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error:hover{--tw-gradient-from:rgb(var(--error)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/0:hover{--tw-gradient-from:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/10:hover{--tw-gradient-from:rgb(var(--error)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/100:hover{--tw-gradient-from:rgb(var(--error)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/20:hover{--tw-gradient-from:rgb(var(--error)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/25:hover{--tw-gradient-from:rgb(var(--error)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/30:hover{--tw-gradient-from:rgb(var(--error)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/40:hover{--tw-gradient-from:rgb(var(--error)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/5:hover{--tw-gradient-from:rgb(var(--error)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/50:hover{--tw-gradient-from:rgb(var(--error)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/60:hover{--tw-gradient-from:rgb(var(--error)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/70:hover{--tw-gradient-from:rgb(var(--error)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/75:hover{--tw-gradient-from:rgb(var(--error)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/80:hover{--tw-gradient-from:rgb(var(--error)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/90:hover{--tw-gradient-from:rgb(var(--error)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/95:hover{--tw-gradient-from:rgb(var(--error)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/0:hover{--tw-gradient-from:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/10:hover{--tw-gradient-from:rgb(var(--gray-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/100:hover{--tw-gradient-from:rgb(var(--gray-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/20:hover{--tw-gradient-from:rgb(var(--gray-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/25:hover{--tw-gradient-from:rgb(var(--gray-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/30:hover{--tw-gradient-from:rgb(var(--gray-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/40:hover{--tw-gradient-from:rgb(var(--gray-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/5:hover{--tw-gradient-from:rgb(var(--gray-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/50:hover{--tw-gradient-from:rgb(var(--gray-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/60:hover{--tw-gradient-from:rgb(var(--gray-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/70:hover{--tw-gradient-from:rgb(var(--gray-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/75:hover{--tw-gradient-from:rgb(var(--gray-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/80:hover{--tw-gradient-from:rgb(var(--gray-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/90:hover{--tw-gradient-from:rgb(var(--gray-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-1\/95:hover{--tw-gradient-from:rgb(var(--gray-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/0:hover{--tw-gradient-from:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/10:hover{--tw-gradient-from:rgb(var(--gray-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/100:hover{--tw-gradient-from:rgb(var(--gray-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/20:hover{--tw-gradient-from:rgb(var(--gray-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/25:hover{--tw-gradient-from:rgb(var(--gray-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/30:hover{--tw-gradient-from:rgb(var(--gray-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/40:hover{--tw-gradient-from:rgb(var(--gray-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/5:hover{--tw-gradient-from:rgb(var(--gray-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/50:hover{--tw-gradient-from:rgb(var(--gray-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/60:hover{--tw-gradient-from:rgb(var(--gray-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/70:hover{--tw-gradient-from:rgb(var(--gray-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/75:hover{--tw-gradient-from:rgb(var(--gray-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/80:hover{--tw-gradient-from:rgb(var(--gray-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/90:hover{--tw-gradient-from:rgb(var(--gray-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-10\/95:hover{--tw-gradient-from:rgb(var(--gray-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/0:hover{--tw-gradient-from:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/10:hover{--tw-gradient-from:rgb(var(--gray-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/100:hover{--tw-gradient-from:rgb(var(--gray-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/20:hover{--tw-gradient-from:rgb(var(--gray-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/25:hover{--tw-gradient-from:rgb(var(--gray-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/30:hover{--tw-gradient-from:rgb(var(--gray-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/40:hover{--tw-gradient-from:rgb(var(--gray-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/5:hover{--tw-gradient-from:rgb(var(--gray-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/50:hover{--tw-gradient-from:rgb(var(--gray-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/60:hover{--tw-gradient-from:rgb(var(--gray-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/70:hover{--tw-gradient-from:rgb(var(--gray-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/75:hover{--tw-gradient-from:rgb(var(--gray-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/80:hover{--tw-gradient-from:rgb(var(--gray-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/90:hover{--tw-gradient-from:rgb(var(--gray-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-2\/95:hover{--tw-gradient-from:rgb(var(--gray-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/0:hover{--tw-gradient-from:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/10:hover{--tw-gradient-from:rgb(var(--gray-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/100:hover{--tw-gradient-from:rgb(var(--gray-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/20:hover{--tw-gradient-from:rgb(var(--gray-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/25:hover{--tw-gradient-from:rgb(var(--gray-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/30:hover{--tw-gradient-from:rgb(var(--gray-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/40:hover{--tw-gradient-from:rgb(var(--gray-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/5:hover{--tw-gradient-from:rgb(var(--gray-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/50:hover{--tw-gradient-from:rgb(var(--gray-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/60:hover{--tw-gradient-from:rgb(var(--gray-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/70:hover{--tw-gradient-from:rgb(var(--gray-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/75:hover{--tw-gradient-from:rgb(var(--gray-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/80:hover{--tw-gradient-from:rgb(var(--gray-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/90:hover{--tw-gradient-from:rgb(var(--gray-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-3\/95:hover{--tw-gradient-from:rgb(var(--gray-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/0:hover{--tw-gradient-from:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/10:hover{--tw-gradient-from:rgb(var(--gray-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/100:hover{--tw-gradient-from:rgb(var(--gray-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/20:hover{--tw-gradient-from:rgb(var(--gray-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/25:hover{--tw-gradient-from:rgb(var(--gray-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/30:hover{--tw-gradient-from:rgb(var(--gray-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/40:hover{--tw-gradient-from:rgb(var(--gray-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/5:hover{--tw-gradient-from:rgb(var(--gray-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/50:hover{--tw-gradient-from:rgb(var(--gray-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/60:hover{--tw-gradient-from:rgb(var(--gray-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/70:hover{--tw-gradient-from:rgb(var(--gray-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/75:hover{--tw-gradient-from:rgb(var(--gray-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/80:hover{--tw-gradient-from:rgb(var(--gray-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/90:hover{--tw-gradient-from:rgb(var(--gray-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-4\/95:hover{--tw-gradient-from:rgb(var(--gray-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/0:hover{--tw-gradient-from:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/10:hover{--tw-gradient-from:rgb(var(--gray-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/100:hover{--tw-gradient-from:rgb(var(--gray-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/20:hover{--tw-gradient-from:rgb(var(--gray-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/25:hover{--tw-gradient-from:rgb(var(--gray-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/30:hover{--tw-gradient-from:rgb(var(--gray-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/40:hover{--tw-gradient-from:rgb(var(--gray-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/5:hover{--tw-gradient-from:rgb(var(--gray-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/50:hover{--tw-gradient-from:rgb(var(--gray-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/60:hover{--tw-gradient-from:rgb(var(--gray-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/70:hover{--tw-gradient-from:rgb(var(--gray-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/75:hover{--tw-gradient-from:rgb(var(--gray-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/80:hover{--tw-gradient-from:rgb(var(--gray-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/90:hover{--tw-gradient-from:rgb(var(--gray-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-5\/95:hover{--tw-gradient-from:rgb(var(--gray-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/0:hover{--tw-gradient-from:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/10:hover{--tw-gradient-from:rgb(var(--gray-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/100:hover{--tw-gradient-from:rgb(var(--gray-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/20:hover{--tw-gradient-from:rgb(var(--gray-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/25:hover{--tw-gradient-from:rgb(var(--gray-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/30:hover{--tw-gradient-from:rgb(var(--gray-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/40:hover{--tw-gradient-from:rgb(var(--gray-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/5:hover{--tw-gradient-from:rgb(var(--gray-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/50:hover{--tw-gradient-from:rgb(var(--gray-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/60:hover{--tw-gradient-from:rgb(var(--gray-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/70:hover{--tw-gradient-from:rgb(var(--gray-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/75:hover{--tw-gradient-from:rgb(var(--gray-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/80:hover{--tw-gradient-from:rgb(var(--gray-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/90:hover{--tw-gradient-from:rgb(var(--gray-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-6\/95:hover{--tw-gradient-from:rgb(var(--gray-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/0:hover{--tw-gradient-from:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/10:hover{--tw-gradient-from:rgb(var(--gray-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/100:hover{--tw-gradient-from:rgb(var(--gray-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/20:hover{--tw-gradient-from:rgb(var(--gray-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/25:hover{--tw-gradient-from:rgb(var(--gray-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/30:hover{--tw-gradient-from:rgb(var(--gray-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/40:hover{--tw-gradient-from:rgb(var(--gray-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/5:hover{--tw-gradient-from:rgb(var(--gray-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/50:hover{--tw-gradient-from:rgb(var(--gray-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/60:hover{--tw-gradient-from:rgb(var(--gray-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/70:hover{--tw-gradient-from:rgb(var(--gray-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/75:hover{--tw-gradient-from:rgb(var(--gray-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/80:hover{--tw-gradient-from:rgb(var(--gray-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/90:hover{--tw-gradient-from:rgb(var(--gray-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-7\/95:hover{--tw-gradient-from:rgb(var(--gray-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/0:hover{--tw-gradient-from:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/10:hover{--tw-gradient-from:rgb(var(--gray-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/100:hover{--tw-gradient-from:rgb(var(--gray-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/20:hover{--tw-gradient-from:rgb(var(--gray-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/25:hover{--tw-gradient-from:rgb(var(--gray-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/30:hover{--tw-gradient-from:rgb(var(--gray-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/40:hover{--tw-gradient-from:rgb(var(--gray-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/5:hover{--tw-gradient-from:rgb(var(--gray-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/50:hover{--tw-gradient-from:rgb(var(--gray-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/60:hover{--tw-gradient-from:rgb(var(--gray-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/70:hover{--tw-gradient-from:rgb(var(--gray-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/75:hover{--tw-gradient-from:rgb(var(--gray-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/80:hover{--tw-gradient-from:rgb(var(--gray-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/90:hover{--tw-gradient-from:rgb(var(--gray-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-8\/95:hover{--tw-gradient-from:rgb(var(--gray-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/0:hover{--tw-gradient-from:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/10:hover{--tw-gradient-from:rgb(var(--gray-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/100:hover{--tw-gradient-from:rgb(var(--gray-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/20:hover{--tw-gradient-from:rgb(var(--gray-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/25:hover{--tw-gradient-from:rgb(var(--gray-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/30:hover{--tw-gradient-from:rgb(var(--gray-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/40:hover{--tw-gradient-from:rgb(var(--gray-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/5:hover{--tw-gradient-from:rgb(var(--gray-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/50:hover{--tw-gradient-from:rgb(var(--gray-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/60:hover{--tw-gradient-from:rgb(var(--gray-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/70:hover{--tw-gradient-from:rgb(var(--gray-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/75:hover{--tw-gradient-from:rgb(var(--gray-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/80:hover{--tw-gradient-from:rgb(var(--gray-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/90:hover{--tw-gradient-from:rgb(var(--gray-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-gray-9\/95:hover{--tw-gradient-from:rgb(var(--gray-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/0:hover{--tw-gradient-from:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/10:hover{--tw-gradient-from:rgb(var(--green-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/100:hover{--tw-gradient-from:rgb(var(--green-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/20:hover{--tw-gradient-from:rgb(var(--green-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/25:hover{--tw-gradient-from:rgb(var(--green-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/30:hover{--tw-gradient-from:rgb(var(--green-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/40:hover{--tw-gradient-from:rgb(var(--green-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/5:hover{--tw-gradient-from:rgb(var(--green-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/50:hover{--tw-gradient-from:rgb(var(--green-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/60:hover{--tw-gradient-from:rgb(var(--green-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/70:hover{--tw-gradient-from:rgb(var(--green-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/75:hover{--tw-gradient-from:rgb(var(--green-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/80:hover{--tw-gradient-from:rgb(var(--green-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/90:hover{--tw-gradient-from:rgb(var(--green-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-1\/95:hover{--tw-gradient-from:rgb(var(--green-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/0:hover{--tw-gradient-from:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/10:hover{--tw-gradient-from:rgb(var(--green-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/100:hover{--tw-gradient-from:rgb(var(--green-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/20:hover{--tw-gradient-from:rgb(var(--green-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/25:hover{--tw-gradient-from:rgb(var(--green-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/30:hover{--tw-gradient-from:rgb(var(--green-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/40:hover{--tw-gradient-from:rgb(var(--green-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/5:hover{--tw-gradient-from:rgb(var(--green-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/50:hover{--tw-gradient-from:rgb(var(--green-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/60:hover{--tw-gradient-from:rgb(var(--green-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/70:hover{--tw-gradient-from:rgb(var(--green-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/75:hover{--tw-gradient-from:rgb(var(--green-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/80:hover{--tw-gradient-from:rgb(var(--green-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/90:hover{--tw-gradient-from:rgb(var(--green-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-10\/95:hover{--tw-gradient-from:rgb(var(--green-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/0:hover{--tw-gradient-from:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/10:hover{--tw-gradient-from:rgb(var(--green-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/100:hover{--tw-gradient-from:rgb(var(--green-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/20:hover{--tw-gradient-from:rgb(var(--green-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/25:hover{--tw-gradient-from:rgb(var(--green-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/30:hover{--tw-gradient-from:rgb(var(--green-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/40:hover{--tw-gradient-from:rgb(var(--green-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/5:hover{--tw-gradient-from:rgb(var(--green-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/50:hover{--tw-gradient-from:rgb(var(--green-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/60:hover{--tw-gradient-from:rgb(var(--green-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/70:hover{--tw-gradient-from:rgb(var(--green-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/75:hover{--tw-gradient-from:rgb(var(--green-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/80:hover{--tw-gradient-from:rgb(var(--green-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/90:hover{--tw-gradient-from:rgb(var(--green-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-2\/95:hover{--tw-gradient-from:rgb(var(--green-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/0:hover{--tw-gradient-from:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/10:hover{--tw-gradient-from:rgb(var(--green-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/100:hover{--tw-gradient-from:rgb(var(--green-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/20:hover{--tw-gradient-from:rgb(var(--green-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/25:hover{--tw-gradient-from:rgb(var(--green-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/30:hover{--tw-gradient-from:rgb(var(--green-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/40:hover{--tw-gradient-from:rgb(var(--green-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/5:hover{--tw-gradient-from:rgb(var(--green-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/50:hover{--tw-gradient-from:rgb(var(--green-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/60:hover{--tw-gradient-from:rgb(var(--green-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/70:hover{--tw-gradient-from:rgb(var(--green-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/75:hover{--tw-gradient-from:rgb(var(--green-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/80:hover{--tw-gradient-from:rgb(var(--green-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/90:hover{--tw-gradient-from:rgb(var(--green-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-3\/95:hover{--tw-gradient-from:rgb(var(--green-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/0:hover{--tw-gradient-from:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/10:hover{--tw-gradient-from:rgb(var(--green-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/100:hover{--tw-gradient-from:rgb(var(--green-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/20:hover{--tw-gradient-from:rgb(var(--green-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/25:hover{--tw-gradient-from:rgb(var(--green-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/30:hover{--tw-gradient-from:rgb(var(--green-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/40:hover{--tw-gradient-from:rgb(var(--green-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/5:hover{--tw-gradient-from:rgb(var(--green-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/50:hover{--tw-gradient-from:rgb(var(--green-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/60:hover{--tw-gradient-from:rgb(var(--green-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/70:hover{--tw-gradient-from:rgb(var(--green-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/75:hover{--tw-gradient-from:rgb(var(--green-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/80:hover{--tw-gradient-from:rgb(var(--green-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/90:hover{--tw-gradient-from:rgb(var(--green-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-4\/95:hover{--tw-gradient-from:rgb(var(--green-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/0:hover{--tw-gradient-from:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/10:hover{--tw-gradient-from:rgb(var(--green-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/100:hover{--tw-gradient-from:rgb(var(--green-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/20:hover{--tw-gradient-from:rgb(var(--green-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/25:hover{--tw-gradient-from:rgb(var(--green-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/30:hover{--tw-gradient-from:rgb(var(--green-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/40:hover{--tw-gradient-from:rgb(var(--green-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/5:hover{--tw-gradient-from:rgb(var(--green-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/50:hover{--tw-gradient-from:rgb(var(--green-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/60:hover{--tw-gradient-from:rgb(var(--green-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/70:hover{--tw-gradient-from:rgb(var(--green-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/75:hover{--tw-gradient-from:rgb(var(--green-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/80:hover{--tw-gradient-from:rgb(var(--green-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/90:hover{--tw-gradient-from:rgb(var(--green-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-5\/95:hover{--tw-gradient-from:rgb(var(--green-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/0:hover{--tw-gradient-from:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/10:hover{--tw-gradient-from:rgb(var(--green-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/100:hover{--tw-gradient-from:rgb(var(--green-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/20:hover{--tw-gradient-from:rgb(var(--green-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/25:hover{--tw-gradient-from:rgb(var(--green-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/30:hover{--tw-gradient-from:rgb(var(--green-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/40:hover{--tw-gradient-from:rgb(var(--green-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/5:hover{--tw-gradient-from:rgb(var(--green-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/50:hover{--tw-gradient-from:rgb(var(--green-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/60:hover{--tw-gradient-from:rgb(var(--green-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/70:hover{--tw-gradient-from:rgb(var(--green-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/75:hover{--tw-gradient-from:rgb(var(--green-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/80:hover{--tw-gradient-from:rgb(var(--green-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/90:hover{--tw-gradient-from:rgb(var(--green-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-6\/95:hover{--tw-gradient-from:rgb(var(--green-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/0:hover{--tw-gradient-from:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/10:hover{--tw-gradient-from:rgb(var(--green-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/100:hover{--tw-gradient-from:rgb(var(--green-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/20:hover{--tw-gradient-from:rgb(var(--green-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/25:hover{--tw-gradient-from:rgb(var(--green-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/30:hover{--tw-gradient-from:rgb(var(--green-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/40:hover{--tw-gradient-from:rgb(var(--green-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/5:hover{--tw-gradient-from:rgb(var(--green-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/50:hover{--tw-gradient-from:rgb(var(--green-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/60:hover{--tw-gradient-from:rgb(var(--green-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/70:hover{--tw-gradient-from:rgb(var(--green-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/75:hover{--tw-gradient-from:rgb(var(--green-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/80:hover{--tw-gradient-from:rgb(var(--green-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/90:hover{--tw-gradient-from:rgb(var(--green-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-7\/95:hover{--tw-gradient-from:rgb(var(--green-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/0:hover{--tw-gradient-from:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/10:hover{--tw-gradient-from:rgb(var(--green-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/100:hover{--tw-gradient-from:rgb(var(--green-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/20:hover{--tw-gradient-from:rgb(var(--green-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/25:hover{--tw-gradient-from:rgb(var(--green-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/30:hover{--tw-gradient-from:rgb(var(--green-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/40:hover{--tw-gradient-from:rgb(var(--green-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/5:hover{--tw-gradient-from:rgb(var(--green-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/50:hover{--tw-gradient-from:rgb(var(--green-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/60:hover{--tw-gradient-from:rgb(var(--green-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/70:hover{--tw-gradient-from:rgb(var(--green-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/75:hover{--tw-gradient-from:rgb(var(--green-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/80:hover{--tw-gradient-from:rgb(var(--green-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/90:hover{--tw-gradient-from:rgb(var(--green-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-8\/95:hover{--tw-gradient-from:rgb(var(--green-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/0:hover{--tw-gradient-from:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/10:hover{--tw-gradient-from:rgb(var(--green-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/100:hover{--tw-gradient-from:rgb(var(--green-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/20:hover{--tw-gradient-from:rgb(var(--green-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/25:hover{--tw-gradient-from:rgb(var(--green-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/30:hover{--tw-gradient-from:rgb(var(--green-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/40:hover{--tw-gradient-from:rgb(var(--green-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/5:hover{--tw-gradient-from:rgb(var(--green-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/50:hover{--tw-gradient-from:rgb(var(--green-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/60:hover{--tw-gradient-from:rgb(var(--green-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/70:hover{--tw-gradient-from:rgb(var(--green-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/75:hover{--tw-gradient-from:rgb(var(--green-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/80:hover{--tw-gradient-from:rgb(var(--green-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/90:hover{--tw-gradient-from:rgb(var(--green-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-green-9\/95:hover{--tw-gradient-from:rgb(var(--green-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/0:hover{--tw-gradient-from:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/10:hover{--tw-gradient-from:rgb(var(--pink-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/100:hover{--tw-gradient-from:rgb(var(--pink-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/20:hover{--tw-gradient-from:rgb(var(--pink-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/25:hover{--tw-gradient-from:rgb(var(--pink-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/30:hover{--tw-gradient-from:rgb(var(--pink-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/40:hover{--tw-gradient-from:rgb(var(--pink-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/5:hover{--tw-gradient-from:rgb(var(--pink-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/50:hover{--tw-gradient-from:rgb(var(--pink-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/60:hover{--tw-gradient-from:rgb(var(--pink-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/70:hover{--tw-gradient-from:rgb(var(--pink-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/75:hover{--tw-gradient-from:rgb(var(--pink-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/80:hover{--tw-gradient-from:rgb(var(--pink-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/90:hover{--tw-gradient-from:rgb(var(--pink-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-1\/95:hover{--tw-gradient-from:rgb(var(--pink-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/0:hover{--tw-gradient-from:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/10:hover{--tw-gradient-from:rgb(var(--pink-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/100:hover{--tw-gradient-from:rgb(var(--pink-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/20:hover{--tw-gradient-from:rgb(var(--pink-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/25:hover{--tw-gradient-from:rgb(var(--pink-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/30:hover{--tw-gradient-from:rgb(var(--pink-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/40:hover{--tw-gradient-from:rgb(var(--pink-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/5:hover{--tw-gradient-from:rgb(var(--pink-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/50:hover{--tw-gradient-from:rgb(var(--pink-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/60:hover{--tw-gradient-from:rgb(var(--pink-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/70:hover{--tw-gradient-from:rgb(var(--pink-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/75:hover{--tw-gradient-from:rgb(var(--pink-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/80:hover{--tw-gradient-from:rgb(var(--pink-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/90:hover{--tw-gradient-from:rgb(var(--pink-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-10\/95:hover{--tw-gradient-from:rgb(var(--pink-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/0:hover{--tw-gradient-from:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/10:hover{--tw-gradient-from:rgb(var(--pink-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/100:hover{--tw-gradient-from:rgb(var(--pink-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/20:hover{--tw-gradient-from:rgb(var(--pink-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/25:hover{--tw-gradient-from:rgb(var(--pink-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/30:hover{--tw-gradient-from:rgb(var(--pink-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/40:hover{--tw-gradient-from:rgb(var(--pink-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/5:hover{--tw-gradient-from:rgb(var(--pink-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/50:hover{--tw-gradient-from:rgb(var(--pink-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/60:hover{--tw-gradient-from:rgb(var(--pink-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/70:hover{--tw-gradient-from:rgb(var(--pink-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/75:hover{--tw-gradient-from:rgb(var(--pink-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/80:hover{--tw-gradient-from:rgb(var(--pink-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/90:hover{--tw-gradient-from:rgb(var(--pink-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-2\/95:hover{--tw-gradient-from:rgb(var(--pink-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/0:hover{--tw-gradient-from:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/10:hover{--tw-gradient-from:rgb(var(--pink-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/100:hover{--tw-gradient-from:rgb(var(--pink-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/20:hover{--tw-gradient-from:rgb(var(--pink-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/25:hover{--tw-gradient-from:rgb(var(--pink-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/30:hover{--tw-gradient-from:rgb(var(--pink-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/40:hover{--tw-gradient-from:rgb(var(--pink-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/5:hover{--tw-gradient-from:rgb(var(--pink-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/50:hover{--tw-gradient-from:rgb(var(--pink-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/60:hover{--tw-gradient-from:rgb(var(--pink-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/70:hover{--tw-gradient-from:rgb(var(--pink-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/75:hover{--tw-gradient-from:rgb(var(--pink-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/80:hover{--tw-gradient-from:rgb(var(--pink-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/90:hover{--tw-gradient-from:rgb(var(--pink-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-3\/95:hover{--tw-gradient-from:rgb(var(--pink-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/0:hover{--tw-gradient-from:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/10:hover{--tw-gradient-from:rgb(var(--pink-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/100:hover{--tw-gradient-from:rgb(var(--pink-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/20:hover{--tw-gradient-from:rgb(var(--pink-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/25:hover{--tw-gradient-from:rgb(var(--pink-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/30:hover{--tw-gradient-from:rgb(var(--pink-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/40:hover{--tw-gradient-from:rgb(var(--pink-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/5:hover{--tw-gradient-from:rgb(var(--pink-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/50:hover{--tw-gradient-from:rgb(var(--pink-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/60:hover{--tw-gradient-from:rgb(var(--pink-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/70:hover{--tw-gradient-from:rgb(var(--pink-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/75:hover{--tw-gradient-from:rgb(var(--pink-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/80:hover{--tw-gradient-from:rgb(var(--pink-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/90:hover{--tw-gradient-from:rgb(var(--pink-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-4\/95:hover{--tw-gradient-from:rgb(var(--pink-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/0:hover{--tw-gradient-from:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/10:hover{--tw-gradient-from:rgb(var(--pink-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/100:hover{--tw-gradient-from:rgb(var(--pink-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/20:hover{--tw-gradient-from:rgb(var(--pink-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/25:hover{--tw-gradient-from:rgb(var(--pink-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/30:hover{--tw-gradient-from:rgb(var(--pink-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/40:hover{--tw-gradient-from:rgb(var(--pink-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/5:hover{--tw-gradient-from:rgb(var(--pink-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/50:hover{--tw-gradient-from:rgb(var(--pink-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/60:hover{--tw-gradient-from:rgb(var(--pink-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/70:hover{--tw-gradient-from:rgb(var(--pink-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/75:hover{--tw-gradient-from:rgb(var(--pink-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/80:hover{--tw-gradient-from:rgb(var(--pink-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/90:hover{--tw-gradient-from:rgb(var(--pink-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-5\/95:hover{--tw-gradient-from:rgb(var(--pink-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/0:hover{--tw-gradient-from:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/10:hover{--tw-gradient-from:rgb(var(--pink-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/100:hover{--tw-gradient-from:rgb(var(--pink-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/20:hover{--tw-gradient-from:rgb(var(--pink-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/25:hover{--tw-gradient-from:rgb(var(--pink-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/30:hover{--tw-gradient-from:rgb(var(--pink-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/40:hover{--tw-gradient-from:rgb(var(--pink-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/5:hover{--tw-gradient-from:rgb(var(--pink-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/50:hover{--tw-gradient-from:rgb(var(--pink-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/60:hover{--tw-gradient-from:rgb(var(--pink-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/70:hover{--tw-gradient-from:rgb(var(--pink-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/75:hover{--tw-gradient-from:rgb(var(--pink-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/80:hover{--tw-gradient-from:rgb(var(--pink-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/90:hover{--tw-gradient-from:rgb(var(--pink-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-6\/95:hover{--tw-gradient-from:rgb(var(--pink-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/0:hover{--tw-gradient-from:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/10:hover{--tw-gradient-from:rgb(var(--pink-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/100:hover{--tw-gradient-from:rgb(var(--pink-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/20:hover{--tw-gradient-from:rgb(var(--pink-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/25:hover{--tw-gradient-from:rgb(var(--pink-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/30:hover{--tw-gradient-from:rgb(var(--pink-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/40:hover{--tw-gradient-from:rgb(var(--pink-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/5:hover{--tw-gradient-from:rgb(var(--pink-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/50:hover{--tw-gradient-from:rgb(var(--pink-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/60:hover{--tw-gradient-from:rgb(var(--pink-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/70:hover{--tw-gradient-from:rgb(var(--pink-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/75:hover{--tw-gradient-from:rgb(var(--pink-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/80:hover{--tw-gradient-from:rgb(var(--pink-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/90:hover{--tw-gradient-from:rgb(var(--pink-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-7\/95:hover{--tw-gradient-from:rgb(var(--pink-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/0:hover{--tw-gradient-from:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/10:hover{--tw-gradient-from:rgb(var(--pink-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/100:hover{--tw-gradient-from:rgb(var(--pink-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/20:hover{--tw-gradient-from:rgb(var(--pink-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/25:hover{--tw-gradient-from:rgb(var(--pink-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/30:hover{--tw-gradient-from:rgb(var(--pink-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/40:hover{--tw-gradient-from:rgb(var(--pink-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/5:hover{--tw-gradient-from:rgb(var(--pink-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/50:hover{--tw-gradient-from:rgb(var(--pink-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/60:hover{--tw-gradient-from:rgb(var(--pink-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/70:hover{--tw-gradient-from:rgb(var(--pink-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/75:hover{--tw-gradient-from:rgb(var(--pink-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/80:hover{--tw-gradient-from:rgb(var(--pink-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/90:hover{--tw-gradient-from:rgb(var(--pink-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-8\/95:hover{--tw-gradient-from:rgb(var(--pink-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/0:hover{--tw-gradient-from:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/10:hover{--tw-gradient-from:rgb(var(--pink-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/100:hover{--tw-gradient-from:rgb(var(--pink-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/20:hover{--tw-gradient-from:rgb(var(--pink-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/25:hover{--tw-gradient-from:rgb(var(--pink-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/30:hover{--tw-gradient-from:rgb(var(--pink-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/40:hover{--tw-gradient-from:rgb(var(--pink-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/5:hover{--tw-gradient-from:rgb(var(--pink-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/50:hover{--tw-gradient-from:rgb(var(--pink-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/60:hover{--tw-gradient-from:rgb(var(--pink-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/70:hover{--tw-gradient-from:rgb(var(--pink-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/75:hover{--tw-gradient-from:rgb(var(--pink-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/80:hover{--tw-gradient-from:rgb(var(--pink-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/90:hover{--tw-gradient-from:rgb(var(--pink-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-pink-9\/95:hover{--tw-gradient-from:rgb(var(--pink-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary:hover{--tw-gradient-from:rgb(var(--primary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/0:hover{--tw-gradient-from:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/10:hover{--tw-gradient-from:rgb(var(--primary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/100:hover{--tw-gradient-from:rgb(var(--primary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/20:hover{--tw-gradient-from:rgb(var(--primary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/25:hover{--tw-gradient-from:rgb(var(--primary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/30:hover{--tw-gradient-from:rgb(var(--primary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/40:hover{--tw-gradient-from:rgb(var(--primary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/5:hover{--tw-gradient-from:rgb(var(--primary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/50:hover{--tw-gradient-from:rgb(var(--primary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/60:hover{--tw-gradient-from:rgb(var(--primary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/70:hover{--tw-gradient-from:rgb(var(--primary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/75:hover{--tw-gradient-from:rgb(var(--primary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/80:hover{--tw-gradient-from:rgb(var(--primary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/90:hover{--tw-gradient-from:rgb(var(--primary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/95:hover{--tw-gradient-from:rgb(var(--primary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/0:hover{--tw-gradient-from:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/10:hover{--tw-gradient-from:rgb(var(--purple-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/100:hover{--tw-gradient-from:rgb(var(--purple-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/20:hover{--tw-gradient-from:rgb(var(--purple-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/25:hover{--tw-gradient-from:rgb(var(--purple-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/30:hover{--tw-gradient-from:rgb(var(--purple-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/40:hover{--tw-gradient-from:rgb(var(--purple-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/5:hover{--tw-gradient-from:rgb(var(--purple-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/50:hover{--tw-gradient-from:rgb(var(--purple-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/60:hover{--tw-gradient-from:rgb(var(--purple-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/70:hover{--tw-gradient-from:rgb(var(--purple-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/75:hover{--tw-gradient-from:rgb(var(--purple-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/80:hover{--tw-gradient-from:rgb(var(--purple-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/90:hover{--tw-gradient-from:rgb(var(--purple-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-1\/95:hover{--tw-gradient-from:rgb(var(--purple-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/0:hover{--tw-gradient-from:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/10:hover{--tw-gradient-from:rgb(var(--purple-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/100:hover{--tw-gradient-from:rgb(var(--purple-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/20:hover{--tw-gradient-from:rgb(var(--purple-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/25:hover{--tw-gradient-from:rgb(var(--purple-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/30:hover{--tw-gradient-from:rgb(var(--purple-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/40:hover{--tw-gradient-from:rgb(var(--purple-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/5:hover{--tw-gradient-from:rgb(var(--purple-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/50:hover{--tw-gradient-from:rgb(var(--purple-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/60:hover{--tw-gradient-from:rgb(var(--purple-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/70:hover{--tw-gradient-from:rgb(var(--purple-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/75:hover{--tw-gradient-from:rgb(var(--purple-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/80:hover{--tw-gradient-from:rgb(var(--purple-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/90:hover{--tw-gradient-from:rgb(var(--purple-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-10\/95:hover{--tw-gradient-from:rgb(var(--purple-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/0:hover{--tw-gradient-from:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/10:hover{--tw-gradient-from:rgb(var(--purple-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/100:hover{--tw-gradient-from:rgb(var(--purple-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/20:hover{--tw-gradient-from:rgb(var(--purple-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/25:hover{--tw-gradient-from:rgb(var(--purple-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/30:hover{--tw-gradient-from:rgb(var(--purple-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/40:hover{--tw-gradient-from:rgb(var(--purple-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/5:hover{--tw-gradient-from:rgb(var(--purple-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/50:hover{--tw-gradient-from:rgb(var(--purple-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/60:hover{--tw-gradient-from:rgb(var(--purple-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/70:hover{--tw-gradient-from:rgb(var(--purple-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/75:hover{--tw-gradient-from:rgb(var(--purple-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/80:hover{--tw-gradient-from:rgb(var(--purple-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/90:hover{--tw-gradient-from:rgb(var(--purple-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-2\/95:hover{--tw-gradient-from:rgb(var(--purple-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/0:hover{--tw-gradient-from:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/10:hover{--tw-gradient-from:rgb(var(--purple-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/100:hover{--tw-gradient-from:rgb(var(--purple-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/20:hover{--tw-gradient-from:rgb(var(--purple-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/25:hover{--tw-gradient-from:rgb(var(--purple-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/30:hover{--tw-gradient-from:rgb(var(--purple-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/40:hover{--tw-gradient-from:rgb(var(--purple-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/5:hover{--tw-gradient-from:rgb(var(--purple-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/50:hover{--tw-gradient-from:rgb(var(--purple-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/60:hover{--tw-gradient-from:rgb(var(--purple-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/70:hover{--tw-gradient-from:rgb(var(--purple-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/75:hover{--tw-gradient-from:rgb(var(--purple-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/80:hover{--tw-gradient-from:rgb(var(--purple-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/90:hover{--tw-gradient-from:rgb(var(--purple-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-3\/95:hover{--tw-gradient-from:rgb(var(--purple-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/0:hover{--tw-gradient-from:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/10:hover{--tw-gradient-from:rgb(var(--purple-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/100:hover{--tw-gradient-from:rgb(var(--purple-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/20:hover{--tw-gradient-from:rgb(var(--purple-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/25:hover{--tw-gradient-from:rgb(var(--purple-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/30:hover{--tw-gradient-from:rgb(var(--purple-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/40:hover{--tw-gradient-from:rgb(var(--purple-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/5:hover{--tw-gradient-from:rgb(var(--purple-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/50:hover{--tw-gradient-from:rgb(var(--purple-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/60:hover{--tw-gradient-from:rgb(var(--purple-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/70:hover{--tw-gradient-from:rgb(var(--purple-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/75:hover{--tw-gradient-from:rgb(var(--purple-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/80:hover{--tw-gradient-from:rgb(var(--purple-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/90:hover{--tw-gradient-from:rgb(var(--purple-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-4\/95:hover{--tw-gradient-from:rgb(var(--purple-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/0:hover{--tw-gradient-from:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/10:hover{--tw-gradient-from:rgb(var(--purple-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/100:hover{--tw-gradient-from:rgb(var(--purple-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/20:hover{--tw-gradient-from:rgb(var(--purple-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/25:hover{--tw-gradient-from:rgb(var(--purple-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/30:hover{--tw-gradient-from:rgb(var(--purple-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/40:hover{--tw-gradient-from:rgb(var(--purple-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/5:hover{--tw-gradient-from:rgb(var(--purple-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/50:hover{--tw-gradient-from:rgb(var(--purple-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/60:hover{--tw-gradient-from:rgb(var(--purple-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/70:hover{--tw-gradient-from:rgb(var(--purple-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/75:hover{--tw-gradient-from:rgb(var(--purple-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/80:hover{--tw-gradient-from:rgb(var(--purple-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/90:hover{--tw-gradient-from:rgb(var(--purple-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-5\/95:hover{--tw-gradient-from:rgb(var(--purple-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/0:hover{--tw-gradient-from:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/10:hover{--tw-gradient-from:rgb(var(--purple-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/100:hover{--tw-gradient-from:rgb(var(--purple-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/20:hover{--tw-gradient-from:rgb(var(--purple-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/25:hover{--tw-gradient-from:rgb(var(--purple-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/30:hover{--tw-gradient-from:rgb(var(--purple-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/40:hover{--tw-gradient-from:rgb(var(--purple-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/5:hover{--tw-gradient-from:rgb(var(--purple-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/50:hover{--tw-gradient-from:rgb(var(--purple-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/60:hover{--tw-gradient-from:rgb(var(--purple-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/70:hover{--tw-gradient-from:rgb(var(--purple-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/75:hover{--tw-gradient-from:rgb(var(--purple-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/80:hover{--tw-gradient-from:rgb(var(--purple-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/90:hover{--tw-gradient-from:rgb(var(--purple-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-6\/95:hover{--tw-gradient-from:rgb(var(--purple-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/0:hover{--tw-gradient-from:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/10:hover{--tw-gradient-from:rgb(var(--purple-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/100:hover{--tw-gradient-from:rgb(var(--purple-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/20:hover{--tw-gradient-from:rgb(var(--purple-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/25:hover{--tw-gradient-from:rgb(var(--purple-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/30:hover{--tw-gradient-from:rgb(var(--purple-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/40:hover{--tw-gradient-from:rgb(var(--purple-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/5:hover{--tw-gradient-from:rgb(var(--purple-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/50:hover{--tw-gradient-from:rgb(var(--purple-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/60:hover{--tw-gradient-from:rgb(var(--purple-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/70:hover{--tw-gradient-from:rgb(var(--purple-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/75:hover{--tw-gradient-from:rgb(var(--purple-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/80:hover{--tw-gradient-from:rgb(var(--purple-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/90:hover{--tw-gradient-from:rgb(var(--purple-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-7\/95:hover{--tw-gradient-from:rgb(var(--purple-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/0:hover{--tw-gradient-from:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/10:hover{--tw-gradient-from:rgb(var(--purple-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/100:hover{--tw-gradient-from:rgb(var(--purple-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/20:hover{--tw-gradient-from:rgb(var(--purple-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/25:hover{--tw-gradient-from:rgb(var(--purple-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/30:hover{--tw-gradient-from:rgb(var(--purple-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/40:hover{--tw-gradient-from:rgb(var(--purple-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/5:hover{--tw-gradient-from:rgb(var(--purple-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/50:hover{--tw-gradient-from:rgb(var(--purple-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/60:hover{--tw-gradient-from:rgb(var(--purple-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/70:hover{--tw-gradient-from:rgb(var(--purple-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/75:hover{--tw-gradient-from:rgb(var(--purple-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/80:hover{--tw-gradient-from:rgb(var(--purple-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/90:hover{--tw-gradient-from:rgb(var(--purple-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-8\/95:hover{--tw-gradient-from:rgb(var(--purple-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/0:hover{--tw-gradient-from:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/10:hover{--tw-gradient-from:rgb(var(--purple-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/100:hover{--tw-gradient-from:rgb(var(--purple-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/20:hover{--tw-gradient-from:rgb(var(--purple-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/25:hover{--tw-gradient-from:rgb(var(--purple-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/30:hover{--tw-gradient-from:rgb(var(--purple-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/40:hover{--tw-gradient-from:rgb(var(--purple-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/5:hover{--tw-gradient-from:rgb(var(--purple-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/50:hover{--tw-gradient-from:rgb(var(--purple-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/60:hover{--tw-gradient-from:rgb(var(--purple-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/70:hover{--tw-gradient-from:rgb(var(--purple-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/75:hover{--tw-gradient-from:rgb(var(--purple-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/80:hover{--tw-gradient-from:rgb(var(--purple-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/90:hover{--tw-gradient-from:rgb(var(--purple-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-purple-9\/95:hover{--tw-gradient-from:rgb(var(--purple-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/0:hover{--tw-gradient-from:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/10:hover{--tw-gradient-from:rgb(var(--red-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/100:hover{--tw-gradient-from:rgb(var(--red-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/20:hover{--tw-gradient-from:rgb(var(--red-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/25:hover{--tw-gradient-from:rgb(var(--red-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/30:hover{--tw-gradient-from:rgb(var(--red-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/40:hover{--tw-gradient-from:rgb(var(--red-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/5:hover{--tw-gradient-from:rgb(var(--red-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/50:hover{--tw-gradient-from:rgb(var(--red-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/60:hover{--tw-gradient-from:rgb(var(--red-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/70:hover{--tw-gradient-from:rgb(var(--red-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/75:hover{--tw-gradient-from:rgb(var(--red-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/80:hover{--tw-gradient-from:rgb(var(--red-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/90:hover{--tw-gradient-from:rgb(var(--red-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-1\/95:hover{--tw-gradient-from:rgb(var(--red-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/0:hover{--tw-gradient-from:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/10:hover{--tw-gradient-from:rgb(var(--red-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/100:hover{--tw-gradient-from:rgb(var(--red-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/20:hover{--tw-gradient-from:rgb(var(--red-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/25:hover{--tw-gradient-from:rgb(var(--red-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/30:hover{--tw-gradient-from:rgb(var(--red-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/40:hover{--tw-gradient-from:rgb(var(--red-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/5:hover{--tw-gradient-from:rgb(var(--red-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/50:hover{--tw-gradient-from:rgb(var(--red-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/60:hover{--tw-gradient-from:rgb(var(--red-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/70:hover{--tw-gradient-from:rgb(var(--red-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/75:hover{--tw-gradient-from:rgb(var(--red-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/80:hover{--tw-gradient-from:rgb(var(--red-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/90:hover{--tw-gradient-from:rgb(var(--red-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-10\/95:hover{--tw-gradient-from:rgb(var(--red-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/0:hover{--tw-gradient-from:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/10:hover{--tw-gradient-from:rgb(var(--red-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/100:hover{--tw-gradient-from:rgb(var(--red-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/20:hover{--tw-gradient-from:rgb(var(--red-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/25:hover{--tw-gradient-from:rgb(var(--red-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/30:hover{--tw-gradient-from:rgb(var(--red-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/40:hover{--tw-gradient-from:rgb(var(--red-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/5:hover{--tw-gradient-from:rgb(var(--red-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/50:hover{--tw-gradient-from:rgb(var(--red-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/60:hover{--tw-gradient-from:rgb(var(--red-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/70:hover{--tw-gradient-from:rgb(var(--red-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/75:hover{--tw-gradient-from:rgb(var(--red-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/80:hover{--tw-gradient-from:rgb(var(--red-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/90:hover{--tw-gradient-from:rgb(var(--red-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-2\/95:hover{--tw-gradient-from:rgb(var(--red-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/0:hover{--tw-gradient-from:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/10:hover{--tw-gradient-from:rgb(var(--red-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/100:hover{--tw-gradient-from:rgb(var(--red-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/20:hover{--tw-gradient-from:rgb(var(--red-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/25:hover{--tw-gradient-from:rgb(var(--red-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/30:hover{--tw-gradient-from:rgb(var(--red-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/40:hover{--tw-gradient-from:rgb(var(--red-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/5:hover{--tw-gradient-from:rgb(var(--red-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/50:hover{--tw-gradient-from:rgb(var(--red-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/60:hover{--tw-gradient-from:rgb(var(--red-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/70:hover{--tw-gradient-from:rgb(var(--red-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/75:hover{--tw-gradient-from:rgb(var(--red-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/80:hover{--tw-gradient-from:rgb(var(--red-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/90:hover{--tw-gradient-from:rgb(var(--red-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-3\/95:hover{--tw-gradient-from:rgb(var(--red-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/0:hover{--tw-gradient-from:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/10:hover{--tw-gradient-from:rgb(var(--red-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/100:hover{--tw-gradient-from:rgb(var(--red-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/20:hover{--tw-gradient-from:rgb(var(--red-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/25:hover{--tw-gradient-from:rgb(var(--red-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/30:hover{--tw-gradient-from:rgb(var(--red-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/40:hover{--tw-gradient-from:rgb(var(--red-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/5:hover{--tw-gradient-from:rgb(var(--red-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/50:hover{--tw-gradient-from:rgb(var(--red-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/60:hover{--tw-gradient-from:rgb(var(--red-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/70:hover{--tw-gradient-from:rgb(var(--red-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/75:hover{--tw-gradient-from:rgb(var(--red-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/80:hover{--tw-gradient-from:rgb(var(--red-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/90:hover{--tw-gradient-from:rgb(var(--red-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-4\/95:hover{--tw-gradient-from:rgb(var(--red-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/0:hover{--tw-gradient-from:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/10:hover{--tw-gradient-from:rgb(var(--red-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/100:hover{--tw-gradient-from:rgb(var(--red-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/20:hover{--tw-gradient-from:rgb(var(--red-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/25:hover{--tw-gradient-from:rgb(var(--red-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/30:hover{--tw-gradient-from:rgb(var(--red-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/40:hover{--tw-gradient-from:rgb(var(--red-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/5:hover{--tw-gradient-from:rgb(var(--red-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/50:hover{--tw-gradient-from:rgb(var(--red-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/60:hover{--tw-gradient-from:rgb(var(--red-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/70:hover{--tw-gradient-from:rgb(var(--red-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/75:hover{--tw-gradient-from:rgb(var(--red-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/80:hover{--tw-gradient-from:rgb(var(--red-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/90:hover{--tw-gradient-from:rgb(var(--red-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-5\/95:hover{--tw-gradient-from:rgb(var(--red-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/0:hover{--tw-gradient-from:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/10:hover{--tw-gradient-from:rgb(var(--red-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/100:hover{--tw-gradient-from:rgb(var(--red-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/20:hover{--tw-gradient-from:rgb(var(--red-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/25:hover{--tw-gradient-from:rgb(var(--red-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/30:hover{--tw-gradient-from:rgb(var(--red-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/40:hover{--tw-gradient-from:rgb(var(--red-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/5:hover{--tw-gradient-from:rgb(var(--red-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/50:hover{--tw-gradient-from:rgb(var(--red-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/60:hover{--tw-gradient-from:rgb(var(--red-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/70:hover{--tw-gradient-from:rgb(var(--red-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/75:hover{--tw-gradient-from:rgb(var(--red-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/80:hover{--tw-gradient-from:rgb(var(--red-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/90:hover{--tw-gradient-from:rgb(var(--red-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-6\/95:hover{--tw-gradient-from:rgb(var(--red-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/0:hover{--tw-gradient-from:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/10:hover{--tw-gradient-from:rgb(var(--red-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/100:hover{--tw-gradient-from:rgb(var(--red-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/20:hover{--tw-gradient-from:rgb(var(--red-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/25:hover{--tw-gradient-from:rgb(var(--red-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/30:hover{--tw-gradient-from:rgb(var(--red-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/40:hover{--tw-gradient-from:rgb(var(--red-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/5:hover{--tw-gradient-from:rgb(var(--red-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/50:hover{--tw-gradient-from:rgb(var(--red-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/60:hover{--tw-gradient-from:rgb(var(--red-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/70:hover{--tw-gradient-from:rgb(var(--red-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/75:hover{--tw-gradient-from:rgb(var(--red-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/80:hover{--tw-gradient-from:rgb(var(--red-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/90:hover{--tw-gradient-from:rgb(var(--red-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-7\/95:hover{--tw-gradient-from:rgb(var(--red-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/0:hover{--tw-gradient-from:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/10:hover{--tw-gradient-from:rgb(var(--red-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/100:hover{--tw-gradient-from:rgb(var(--red-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/20:hover{--tw-gradient-from:rgb(var(--red-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/25:hover{--tw-gradient-from:rgb(var(--red-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/30:hover{--tw-gradient-from:rgb(var(--red-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/40:hover{--tw-gradient-from:rgb(var(--red-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/5:hover{--tw-gradient-from:rgb(var(--red-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/50:hover{--tw-gradient-from:rgb(var(--red-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/60:hover{--tw-gradient-from:rgb(var(--red-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/70:hover{--tw-gradient-from:rgb(var(--red-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/75:hover{--tw-gradient-from:rgb(var(--red-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/80:hover{--tw-gradient-from:rgb(var(--red-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/90:hover{--tw-gradient-from:rgb(var(--red-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-8\/95:hover{--tw-gradient-from:rgb(var(--red-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/0:hover{--tw-gradient-from:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/10:hover{--tw-gradient-from:rgb(var(--red-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/100:hover{--tw-gradient-from:rgb(var(--red-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/20:hover{--tw-gradient-from:rgb(var(--red-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/25:hover{--tw-gradient-from:rgb(var(--red-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/30:hover{--tw-gradient-from:rgb(var(--red-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/40:hover{--tw-gradient-from:rgb(var(--red-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/5:hover{--tw-gradient-from:rgb(var(--red-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/50:hover{--tw-gradient-from:rgb(var(--red-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/60:hover{--tw-gradient-from:rgb(var(--red-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/70:hover{--tw-gradient-from:rgb(var(--red-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/75:hover{--tw-gradient-from:rgb(var(--red-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/80:hover{--tw-gradient-from:rgb(var(--red-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/90:hover{--tw-gradient-from:rgb(var(--red-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-red-9\/95:hover{--tw-gradient-from:rgb(var(--red-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary:hover{--tw-gradient-from:rgb(var(--secondary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/0:hover{--tw-gradient-from:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/10:hover{--tw-gradient-from:rgb(var(--secondary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/100:hover{--tw-gradient-from:rgb(var(--secondary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/20:hover{--tw-gradient-from:rgb(var(--secondary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/25:hover{--tw-gradient-from:rgb(var(--secondary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/30:hover{--tw-gradient-from:rgb(var(--secondary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/40:hover{--tw-gradient-from:rgb(var(--secondary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/5:hover{--tw-gradient-from:rgb(var(--secondary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/50:hover{--tw-gradient-from:rgb(var(--secondary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/60:hover{--tw-gradient-from:rgb(var(--secondary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/70:hover{--tw-gradient-from:rgb(var(--secondary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/75:hover{--tw-gradient-from:rgb(var(--secondary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/80:hover{--tw-gradient-from:rgb(var(--secondary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/90:hover{--tw-gradient-from:rgb(var(--secondary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/95:hover{--tw-gradient-from:rgb(var(--secondary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/0:hover{--tw-gradient-from:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/10:hover{--tw-gradient-from:rgb(var(--slate-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/100:hover{--tw-gradient-from:rgb(var(--slate-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/20:hover{--tw-gradient-from:rgb(var(--slate-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/25:hover{--tw-gradient-from:rgb(var(--slate-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/30:hover{--tw-gradient-from:rgb(var(--slate-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/40:hover{--tw-gradient-from:rgb(var(--slate-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/5:hover{--tw-gradient-from:rgb(var(--slate-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/50:hover{--tw-gradient-from:rgb(var(--slate-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/60:hover{--tw-gradient-from:rgb(var(--slate-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/70:hover{--tw-gradient-from:rgb(var(--slate-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/75:hover{--tw-gradient-from:rgb(var(--slate-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/80:hover{--tw-gradient-from:rgb(var(--slate-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/90:hover{--tw-gradient-from:rgb(var(--slate-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-1\/95:hover{--tw-gradient-from:rgb(var(--slate-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/0:hover{--tw-gradient-from:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/10:hover{--tw-gradient-from:rgb(var(--slate-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/100:hover{--tw-gradient-from:rgb(var(--slate-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/20:hover{--tw-gradient-from:rgb(var(--slate-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/25:hover{--tw-gradient-from:rgb(var(--slate-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/30:hover{--tw-gradient-from:rgb(var(--slate-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/40:hover{--tw-gradient-from:rgb(var(--slate-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/5:hover{--tw-gradient-from:rgb(var(--slate-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/50:hover{--tw-gradient-from:rgb(var(--slate-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/60:hover{--tw-gradient-from:rgb(var(--slate-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/70:hover{--tw-gradient-from:rgb(var(--slate-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/75:hover{--tw-gradient-from:rgb(var(--slate-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/80:hover{--tw-gradient-from:rgb(var(--slate-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/90:hover{--tw-gradient-from:rgb(var(--slate-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-10\/95:hover{--tw-gradient-from:rgb(var(--slate-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/0:hover{--tw-gradient-from:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/10:hover{--tw-gradient-from:rgb(var(--slate-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/100:hover{--tw-gradient-from:rgb(var(--slate-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/20:hover{--tw-gradient-from:rgb(var(--slate-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/25:hover{--tw-gradient-from:rgb(var(--slate-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/30:hover{--tw-gradient-from:rgb(var(--slate-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/40:hover{--tw-gradient-from:rgb(var(--slate-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/5:hover{--tw-gradient-from:rgb(var(--slate-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/50:hover{--tw-gradient-from:rgb(var(--slate-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/60:hover{--tw-gradient-from:rgb(var(--slate-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/70:hover{--tw-gradient-from:rgb(var(--slate-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/75:hover{--tw-gradient-from:rgb(var(--slate-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/80:hover{--tw-gradient-from:rgb(var(--slate-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/90:hover{--tw-gradient-from:rgb(var(--slate-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-2\/95:hover{--tw-gradient-from:rgb(var(--slate-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/0:hover{--tw-gradient-from:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/10:hover{--tw-gradient-from:rgb(var(--slate-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/100:hover{--tw-gradient-from:rgb(var(--slate-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/20:hover{--tw-gradient-from:rgb(var(--slate-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/25:hover{--tw-gradient-from:rgb(var(--slate-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/30:hover{--tw-gradient-from:rgb(var(--slate-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/40:hover{--tw-gradient-from:rgb(var(--slate-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/5:hover{--tw-gradient-from:rgb(var(--slate-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/50:hover{--tw-gradient-from:rgb(var(--slate-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/60:hover{--tw-gradient-from:rgb(var(--slate-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/70:hover{--tw-gradient-from:rgb(var(--slate-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/75:hover{--tw-gradient-from:rgb(var(--slate-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/80:hover{--tw-gradient-from:rgb(var(--slate-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/90:hover{--tw-gradient-from:rgb(var(--slate-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-3\/95:hover{--tw-gradient-from:rgb(var(--slate-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/0:hover{--tw-gradient-from:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/10:hover{--tw-gradient-from:rgb(var(--slate-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/100:hover{--tw-gradient-from:rgb(var(--slate-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/20:hover{--tw-gradient-from:rgb(var(--slate-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/25:hover{--tw-gradient-from:rgb(var(--slate-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/30:hover{--tw-gradient-from:rgb(var(--slate-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/40:hover{--tw-gradient-from:rgb(var(--slate-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/5:hover{--tw-gradient-from:rgb(var(--slate-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/50:hover{--tw-gradient-from:rgb(var(--slate-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/60:hover{--tw-gradient-from:rgb(var(--slate-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/70:hover{--tw-gradient-from:rgb(var(--slate-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/75:hover{--tw-gradient-from:rgb(var(--slate-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/80:hover{--tw-gradient-from:rgb(var(--slate-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/90:hover{--tw-gradient-from:rgb(var(--slate-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-4\/95:hover{--tw-gradient-from:rgb(var(--slate-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/0:hover{--tw-gradient-from:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/10:hover{--tw-gradient-from:rgb(var(--slate-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/100:hover{--tw-gradient-from:rgb(var(--slate-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/20:hover{--tw-gradient-from:rgb(var(--slate-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/25:hover{--tw-gradient-from:rgb(var(--slate-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/30:hover{--tw-gradient-from:rgb(var(--slate-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/40:hover{--tw-gradient-from:rgb(var(--slate-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/5:hover{--tw-gradient-from:rgb(var(--slate-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/50:hover{--tw-gradient-from:rgb(var(--slate-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/60:hover{--tw-gradient-from:rgb(var(--slate-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/70:hover{--tw-gradient-from:rgb(var(--slate-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/75:hover{--tw-gradient-from:rgb(var(--slate-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/80:hover{--tw-gradient-from:rgb(var(--slate-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/90:hover{--tw-gradient-from:rgb(var(--slate-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-5\/95:hover{--tw-gradient-from:rgb(var(--slate-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/0:hover{--tw-gradient-from:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/10:hover{--tw-gradient-from:rgb(var(--slate-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/100:hover{--tw-gradient-from:rgb(var(--slate-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/20:hover{--tw-gradient-from:rgb(var(--slate-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/25:hover{--tw-gradient-from:rgb(var(--slate-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/30:hover{--tw-gradient-from:rgb(var(--slate-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/40:hover{--tw-gradient-from:rgb(var(--slate-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/5:hover{--tw-gradient-from:rgb(var(--slate-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/50:hover{--tw-gradient-from:rgb(var(--slate-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/60:hover{--tw-gradient-from:rgb(var(--slate-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/70:hover{--tw-gradient-from:rgb(var(--slate-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/75:hover{--tw-gradient-from:rgb(var(--slate-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/80:hover{--tw-gradient-from:rgb(var(--slate-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/90:hover{--tw-gradient-from:rgb(var(--slate-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-6\/95:hover{--tw-gradient-from:rgb(var(--slate-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/0:hover{--tw-gradient-from:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/10:hover{--tw-gradient-from:rgb(var(--slate-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/100:hover{--tw-gradient-from:rgb(var(--slate-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/20:hover{--tw-gradient-from:rgb(var(--slate-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/25:hover{--tw-gradient-from:rgb(var(--slate-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/30:hover{--tw-gradient-from:rgb(var(--slate-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/40:hover{--tw-gradient-from:rgb(var(--slate-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/5:hover{--tw-gradient-from:rgb(var(--slate-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/50:hover{--tw-gradient-from:rgb(var(--slate-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/60:hover{--tw-gradient-from:rgb(var(--slate-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/70:hover{--tw-gradient-from:rgb(var(--slate-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/75:hover{--tw-gradient-from:rgb(var(--slate-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/80:hover{--tw-gradient-from:rgb(var(--slate-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/90:hover{--tw-gradient-from:rgb(var(--slate-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-7\/95:hover{--tw-gradient-from:rgb(var(--slate-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/0:hover{--tw-gradient-from:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/10:hover{--tw-gradient-from:rgb(var(--slate-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/100:hover{--tw-gradient-from:rgb(var(--slate-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/20:hover{--tw-gradient-from:rgb(var(--slate-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/25:hover{--tw-gradient-from:rgb(var(--slate-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/30:hover{--tw-gradient-from:rgb(var(--slate-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/40:hover{--tw-gradient-from:rgb(var(--slate-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/5:hover{--tw-gradient-from:rgb(var(--slate-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/50:hover{--tw-gradient-from:rgb(var(--slate-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/60:hover{--tw-gradient-from:rgb(var(--slate-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/70:hover{--tw-gradient-from:rgb(var(--slate-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/75:hover{--tw-gradient-from:rgb(var(--slate-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/80:hover{--tw-gradient-from:rgb(var(--slate-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/90:hover{--tw-gradient-from:rgb(var(--slate-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-8\/95:hover{--tw-gradient-from:rgb(var(--slate-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/0:hover{--tw-gradient-from:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/10:hover{--tw-gradient-from:rgb(var(--slate-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/100:hover{--tw-gradient-from:rgb(var(--slate-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/20:hover{--tw-gradient-from:rgb(var(--slate-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/25:hover{--tw-gradient-from:rgb(var(--slate-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/30:hover{--tw-gradient-from:rgb(var(--slate-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/40:hover{--tw-gradient-from:rgb(var(--slate-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/5:hover{--tw-gradient-from:rgb(var(--slate-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/50:hover{--tw-gradient-from:rgb(var(--slate-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/60:hover{--tw-gradient-from:rgb(var(--slate-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/70:hover{--tw-gradient-from:rgb(var(--slate-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/75:hover{--tw-gradient-from:rgb(var(--slate-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/80:hover{--tw-gradient-from:rgb(var(--slate-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/90:hover{--tw-gradient-from:rgb(var(--slate-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-slate-9\/95:hover{--tw-gradient-from:rgb(var(--slate-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success:hover{--tw-gradient-from:rgb(var(--success)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/0:hover{--tw-gradient-from:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/10:hover{--tw-gradient-from:rgb(var(--success)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/100:hover{--tw-gradient-from:rgb(var(--success)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/20:hover{--tw-gradient-from:rgb(var(--success)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/25:hover{--tw-gradient-from:rgb(var(--success)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/30:hover{--tw-gradient-from:rgb(var(--success)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/40:hover{--tw-gradient-from:rgb(var(--success)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/5:hover{--tw-gradient-from:rgb(var(--success)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/50:hover{--tw-gradient-from:rgb(var(--success)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/60:hover{--tw-gradient-from:rgb(var(--success)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/70:hover{--tw-gradient-from:rgb(var(--success)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/75:hover{--tw-gradient-from:rgb(var(--success)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/80:hover{--tw-gradient-from:rgb(var(--success)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/90:hover{--tw-gradient-from:rgb(var(--success)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/95:hover{--tw-gradient-from:rgb(var(--success)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning:hover{--tw-gradient-from:rgb(var(--warning)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/0:hover{--tw-gradient-from:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/10:hover{--tw-gradient-from:rgb(var(--warning)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/100:hover{--tw-gradient-from:rgb(var(--warning)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/20:hover{--tw-gradient-from:rgb(var(--warning)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/25:hover{--tw-gradient-from:rgb(var(--warning)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/30:hover{--tw-gradient-from:rgb(var(--warning)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/40:hover{--tw-gradient-from:rgb(var(--warning)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/5:hover{--tw-gradient-from:rgb(var(--warning)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/50:hover{--tw-gradient-from:rgb(var(--warning)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/60:hover{--tw-gradient-from:rgb(var(--warning)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/70:hover{--tw-gradient-from:rgb(var(--warning)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/75:hover{--tw-gradient-from:rgb(var(--warning)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/80:hover{--tw-gradient-from:rgb(var(--warning)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/90:hover{--tw-gradient-from:rgb(var(--warning)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/95:hover{--tw-gradient-from:rgb(var(--warning)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white:hover{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/0:hover{--tw-gradient-from:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/10:hover{--tw-gradient-from:hsla(0,0%,100%,.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/100:hover{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/20:hover{--tw-gradient-from:hsla(0,0%,100%,.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/25:hover{--tw-gradient-from:hsla(0,0%,100%,.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/30:hover{--tw-gradient-from:hsla(0,0%,100%,.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/40:hover{--tw-gradient-from:hsla(0,0%,100%,.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/5:hover{--tw-gradient-from:hsla(0,0%,100%,.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/50:hover{--tw-gradient-from:hsla(0,0%,100%,.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/60:hover{--tw-gradient-from:hsla(0,0%,100%,.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/70:hover{--tw-gradient-from:hsla(0,0%,100%,.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/75:hover{--tw-gradient-from:hsla(0,0%,100%,.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/80:hover{--tw-gradient-from:hsla(0,0%,100%,.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/90:hover{--tw-gradient-from:hsla(0,0%,100%,.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-white\/95:hover{--tw-gradient-from:hsla(0,0%,100%,.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted:hover{--tw-gradient-from:rgb(var(--whiteInverted)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/0:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/10:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/100:hover{--tw-gradient-from:rgb(var(--whiteInverted)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/20:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/25:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/30:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/40:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/5:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/50:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/60:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/70:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/75:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/80:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/90:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-whiteInverted\/95:hover{--tw-gradient-from:rgb(var(--whiteInverted)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:via-backgroundPrimary:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundPrimary\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-backgroundSecondary\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#000 var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),transparent var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#000 var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-black\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blackInverted\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-blue-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-border\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-content3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-cyan-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-gray-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-green-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-pink-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-purple-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-red-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-1\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-10\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-2\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-3\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-4\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-5\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-6\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-7\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-8\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-slate-9\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#fff var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#fff var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-white\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/0:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/10:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/100:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/20:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/25:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/30:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/40:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/5:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/50:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/60:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/70:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/75:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/80:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/90:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-whiteInverted\/95:hover{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:to-backgroundPrimary:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/0:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/10:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/100:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/20:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/25:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/30:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/40:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/5:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/50:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/60:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/70:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/75:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/80:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/90:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundPrimary\/95:hover{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/0:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/10:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/100:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/20:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/25:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/30:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/40:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/5:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/50:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/60:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/70:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/75:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/80:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/90:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-backgroundSecondary\/95:hover{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black:hover{--tw-gradient-to:#000 var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/0:hover{--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/10:hover{--tw-gradient-to:rgba(0,0,0,.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/100:hover{--tw-gradient-to:#000 var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/20:hover{--tw-gradient-to:rgba(0,0,0,.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/25:hover{--tw-gradient-to:rgba(0,0,0,.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/30:hover{--tw-gradient-to:rgba(0,0,0,.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/40:hover{--tw-gradient-to:rgba(0,0,0,.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/5:hover{--tw-gradient-to:rgba(0,0,0,.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/50:hover{--tw-gradient-to:rgba(0,0,0,.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/60:hover{--tw-gradient-to:rgba(0,0,0,.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/70:hover{--tw-gradient-to:rgba(0,0,0,.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/75:hover{--tw-gradient-to:rgba(0,0,0,.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/80:hover{--tw-gradient-to:rgba(0,0,0,.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/90:hover{--tw-gradient-to:rgba(0,0,0,.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-black\/95:hover{--tw-gradient-to:rgba(0,0,0,.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted:hover{--tw-gradient-to:rgb(var(--blackInverted)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/0:hover{--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/10:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/100:hover{--tw-gradient-to:rgb(var(--blackInverted)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/20:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/25:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/30:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/40:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/5:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/50:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/60:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/70:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/75:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/80:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/90:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blackInverted\/95:hover{--tw-gradient-to:rgb(var(--blackInverted)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/0:hover{--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/10:hover{--tw-gradient-to:rgb(var(--blue-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/100:hover{--tw-gradient-to:rgb(var(--blue-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/20:hover{--tw-gradient-to:rgb(var(--blue-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/25:hover{--tw-gradient-to:rgb(var(--blue-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/30:hover{--tw-gradient-to:rgb(var(--blue-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/40:hover{--tw-gradient-to:rgb(var(--blue-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/5:hover{--tw-gradient-to:rgb(var(--blue-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/50:hover{--tw-gradient-to:rgb(var(--blue-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/60:hover{--tw-gradient-to:rgb(var(--blue-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/70:hover{--tw-gradient-to:rgb(var(--blue-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/75:hover{--tw-gradient-to:rgb(var(--blue-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/80:hover{--tw-gradient-to:rgb(var(--blue-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/90:hover{--tw-gradient-to:rgb(var(--blue-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-1\/95:hover{--tw-gradient-to:rgb(var(--blue-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/0:hover{--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/10:hover{--tw-gradient-to:rgb(var(--blue-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/100:hover{--tw-gradient-to:rgb(var(--blue-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/20:hover{--tw-gradient-to:rgb(var(--blue-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/25:hover{--tw-gradient-to:rgb(var(--blue-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/30:hover{--tw-gradient-to:rgb(var(--blue-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/40:hover{--tw-gradient-to:rgb(var(--blue-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/5:hover{--tw-gradient-to:rgb(var(--blue-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/50:hover{--tw-gradient-to:rgb(var(--blue-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/60:hover{--tw-gradient-to:rgb(var(--blue-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/70:hover{--tw-gradient-to:rgb(var(--blue-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/75:hover{--tw-gradient-to:rgb(var(--blue-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/80:hover{--tw-gradient-to:rgb(var(--blue-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/90:hover{--tw-gradient-to:rgb(var(--blue-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-10\/95:hover{--tw-gradient-to:rgb(var(--blue-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/0:hover{--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/10:hover{--tw-gradient-to:rgb(var(--blue-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/100:hover{--tw-gradient-to:rgb(var(--blue-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/20:hover{--tw-gradient-to:rgb(var(--blue-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/25:hover{--tw-gradient-to:rgb(var(--blue-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/30:hover{--tw-gradient-to:rgb(var(--blue-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/40:hover{--tw-gradient-to:rgb(var(--blue-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/5:hover{--tw-gradient-to:rgb(var(--blue-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/50:hover{--tw-gradient-to:rgb(var(--blue-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/60:hover{--tw-gradient-to:rgb(var(--blue-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/70:hover{--tw-gradient-to:rgb(var(--blue-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/75:hover{--tw-gradient-to:rgb(var(--blue-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/80:hover{--tw-gradient-to:rgb(var(--blue-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/90:hover{--tw-gradient-to:rgb(var(--blue-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-2\/95:hover{--tw-gradient-to:rgb(var(--blue-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/0:hover{--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/10:hover{--tw-gradient-to:rgb(var(--blue-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/100:hover{--tw-gradient-to:rgb(var(--blue-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/20:hover{--tw-gradient-to:rgb(var(--blue-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/25:hover{--tw-gradient-to:rgb(var(--blue-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/30:hover{--tw-gradient-to:rgb(var(--blue-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/40:hover{--tw-gradient-to:rgb(var(--blue-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/5:hover{--tw-gradient-to:rgb(var(--blue-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/50:hover{--tw-gradient-to:rgb(var(--blue-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/60:hover{--tw-gradient-to:rgb(var(--blue-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/70:hover{--tw-gradient-to:rgb(var(--blue-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/75:hover{--tw-gradient-to:rgb(var(--blue-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/80:hover{--tw-gradient-to:rgb(var(--blue-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/90:hover{--tw-gradient-to:rgb(var(--blue-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-3\/95:hover{--tw-gradient-to:rgb(var(--blue-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/0:hover{--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/10:hover{--tw-gradient-to:rgb(var(--blue-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/100:hover{--tw-gradient-to:rgb(var(--blue-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/20:hover{--tw-gradient-to:rgb(var(--blue-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/25:hover{--tw-gradient-to:rgb(var(--blue-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/30:hover{--tw-gradient-to:rgb(var(--blue-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/40:hover{--tw-gradient-to:rgb(var(--blue-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/5:hover{--tw-gradient-to:rgb(var(--blue-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/50:hover{--tw-gradient-to:rgb(var(--blue-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/60:hover{--tw-gradient-to:rgb(var(--blue-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/70:hover{--tw-gradient-to:rgb(var(--blue-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/75:hover{--tw-gradient-to:rgb(var(--blue-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/80:hover{--tw-gradient-to:rgb(var(--blue-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/90:hover{--tw-gradient-to:rgb(var(--blue-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-4\/95:hover{--tw-gradient-to:rgb(var(--blue-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/0:hover{--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/10:hover{--tw-gradient-to:rgb(var(--blue-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/100:hover{--tw-gradient-to:rgb(var(--blue-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/20:hover{--tw-gradient-to:rgb(var(--blue-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/25:hover{--tw-gradient-to:rgb(var(--blue-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/30:hover{--tw-gradient-to:rgb(var(--blue-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/40:hover{--tw-gradient-to:rgb(var(--blue-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/5:hover{--tw-gradient-to:rgb(var(--blue-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/50:hover{--tw-gradient-to:rgb(var(--blue-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/60:hover{--tw-gradient-to:rgb(var(--blue-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/70:hover{--tw-gradient-to:rgb(var(--blue-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/75:hover{--tw-gradient-to:rgb(var(--blue-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/80:hover{--tw-gradient-to:rgb(var(--blue-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/90:hover{--tw-gradient-to:rgb(var(--blue-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-5\/95:hover{--tw-gradient-to:rgb(var(--blue-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/0:hover{--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/10:hover{--tw-gradient-to:rgb(var(--blue-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/100:hover{--tw-gradient-to:rgb(var(--blue-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/20:hover{--tw-gradient-to:rgb(var(--blue-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/25:hover{--tw-gradient-to:rgb(var(--blue-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/30:hover{--tw-gradient-to:rgb(var(--blue-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/40:hover{--tw-gradient-to:rgb(var(--blue-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/5:hover{--tw-gradient-to:rgb(var(--blue-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/50:hover{--tw-gradient-to:rgb(var(--blue-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/60:hover{--tw-gradient-to:rgb(var(--blue-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/70:hover{--tw-gradient-to:rgb(var(--blue-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/75:hover{--tw-gradient-to:rgb(var(--blue-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/80:hover{--tw-gradient-to:rgb(var(--blue-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/90:hover{--tw-gradient-to:rgb(var(--blue-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-6\/95:hover{--tw-gradient-to:rgb(var(--blue-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/0:hover{--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/10:hover{--tw-gradient-to:rgb(var(--blue-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/100:hover{--tw-gradient-to:rgb(var(--blue-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/20:hover{--tw-gradient-to:rgb(var(--blue-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/25:hover{--tw-gradient-to:rgb(var(--blue-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/30:hover{--tw-gradient-to:rgb(var(--blue-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/40:hover{--tw-gradient-to:rgb(var(--blue-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/5:hover{--tw-gradient-to:rgb(var(--blue-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/50:hover{--tw-gradient-to:rgb(var(--blue-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/60:hover{--tw-gradient-to:rgb(var(--blue-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/70:hover{--tw-gradient-to:rgb(var(--blue-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/75:hover{--tw-gradient-to:rgb(var(--blue-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/80:hover{--tw-gradient-to:rgb(var(--blue-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/90:hover{--tw-gradient-to:rgb(var(--blue-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-7\/95:hover{--tw-gradient-to:rgb(var(--blue-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/0:hover{--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/10:hover{--tw-gradient-to:rgb(var(--blue-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/100:hover{--tw-gradient-to:rgb(var(--blue-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/20:hover{--tw-gradient-to:rgb(var(--blue-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/25:hover{--tw-gradient-to:rgb(var(--blue-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/30:hover{--tw-gradient-to:rgb(var(--blue-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/40:hover{--tw-gradient-to:rgb(var(--blue-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/5:hover{--tw-gradient-to:rgb(var(--blue-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/50:hover{--tw-gradient-to:rgb(var(--blue-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/60:hover{--tw-gradient-to:rgb(var(--blue-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/70:hover{--tw-gradient-to:rgb(var(--blue-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/75:hover{--tw-gradient-to:rgb(var(--blue-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/80:hover{--tw-gradient-to:rgb(var(--blue-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/90:hover{--tw-gradient-to:rgb(var(--blue-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-8\/95:hover{--tw-gradient-to:rgb(var(--blue-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/0:hover{--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/10:hover{--tw-gradient-to:rgb(var(--blue-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/100:hover{--tw-gradient-to:rgb(var(--blue-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/20:hover{--tw-gradient-to:rgb(var(--blue-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/25:hover{--tw-gradient-to:rgb(var(--blue-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/30:hover{--tw-gradient-to:rgb(var(--blue-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/40:hover{--tw-gradient-to:rgb(var(--blue-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/5:hover{--tw-gradient-to:rgb(var(--blue-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/50:hover{--tw-gradient-to:rgb(var(--blue-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/60:hover{--tw-gradient-to:rgb(var(--blue-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/70:hover{--tw-gradient-to:rgb(var(--blue-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/75:hover{--tw-gradient-to:rgb(var(--blue-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/80:hover{--tw-gradient-to:rgb(var(--blue-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/90:hover{--tw-gradient-to:rgb(var(--blue-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-blue-9\/95:hover{--tw-gradient-to:rgb(var(--blue-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border:hover{--tw-gradient-to:rgb(var(--border)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/0:hover{--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/10:hover{--tw-gradient-to:rgb(var(--border)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/100:hover{--tw-gradient-to:rgb(var(--border)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/20:hover{--tw-gradient-to:rgb(var(--border)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/25:hover{--tw-gradient-to:rgb(var(--border)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/30:hover{--tw-gradient-to:rgb(var(--border)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/40:hover{--tw-gradient-to:rgb(var(--border)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/5:hover{--tw-gradient-to:rgb(var(--border)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/50:hover{--tw-gradient-to:rgb(var(--border)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/60:hover{--tw-gradient-to:rgb(var(--border)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/70:hover{--tw-gradient-to:rgb(var(--border)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/75:hover{--tw-gradient-to:rgb(var(--border)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/80:hover{--tw-gradient-to:rgb(var(--border)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/90:hover{--tw-gradient-to:rgb(var(--border)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-border\/95:hover{--tw-gradient-to:rgb(var(--border)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1:hover{--tw-gradient-to:rgb(var(--content1)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/0:hover{--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/10:hover{--tw-gradient-to:rgb(var(--content1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/100:hover{--tw-gradient-to:rgb(var(--content1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/20:hover{--tw-gradient-to:rgb(var(--content1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/25:hover{--tw-gradient-to:rgb(var(--content1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/30:hover{--tw-gradient-to:rgb(var(--content1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/40:hover{--tw-gradient-to:rgb(var(--content1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/5:hover{--tw-gradient-to:rgb(var(--content1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/50:hover{--tw-gradient-to:rgb(var(--content1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/60:hover{--tw-gradient-to:rgb(var(--content1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/70:hover{--tw-gradient-to:rgb(var(--content1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/75:hover{--tw-gradient-to:rgb(var(--content1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/80:hover{--tw-gradient-to:rgb(var(--content1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/90:hover{--tw-gradient-to:rgb(var(--content1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content1\/95:hover{--tw-gradient-to:rgb(var(--content1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2:hover{--tw-gradient-to:rgb(var(--content2)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/0:hover{--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/10:hover{--tw-gradient-to:rgb(var(--content2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/100:hover{--tw-gradient-to:rgb(var(--content2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/20:hover{--tw-gradient-to:rgb(var(--content2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/25:hover{--tw-gradient-to:rgb(var(--content2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/30:hover{--tw-gradient-to:rgb(var(--content2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/40:hover{--tw-gradient-to:rgb(var(--content2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/5:hover{--tw-gradient-to:rgb(var(--content2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/50:hover{--tw-gradient-to:rgb(var(--content2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/60:hover{--tw-gradient-to:rgb(var(--content2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/70:hover{--tw-gradient-to:rgb(var(--content2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/75:hover{--tw-gradient-to:rgb(var(--content2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/80:hover{--tw-gradient-to:rgb(var(--content2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/90:hover{--tw-gradient-to:rgb(var(--content2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content2\/95:hover{--tw-gradient-to:rgb(var(--content2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3:hover{--tw-gradient-to:rgb(var(--content3)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/0:hover{--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/10:hover{--tw-gradient-to:rgb(var(--content3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/100:hover{--tw-gradient-to:rgb(var(--content3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/20:hover{--tw-gradient-to:rgb(var(--content3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/25:hover{--tw-gradient-to:rgb(var(--content3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/30:hover{--tw-gradient-to:rgb(var(--content3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/40:hover{--tw-gradient-to:rgb(var(--content3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/5:hover{--tw-gradient-to:rgb(var(--content3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/50:hover{--tw-gradient-to:rgb(var(--content3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/60:hover{--tw-gradient-to:rgb(var(--content3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/70:hover{--tw-gradient-to:rgb(var(--content3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/75:hover{--tw-gradient-to:rgb(var(--content3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/80:hover{--tw-gradient-to:rgb(var(--content3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/90:hover{--tw-gradient-to:rgb(var(--content3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-content3\/95:hover{--tw-gradient-to:rgb(var(--content3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/0:hover{--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/10:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/100:hover{--tw-gradient-to:rgb(var(--cyan-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/20:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/25:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/30:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/40:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/5:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/50:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/60:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/70:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/75:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/80:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/90:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-1\/95:hover{--tw-gradient-to:rgb(var(--cyan-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/0:hover{--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/10:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/100:hover{--tw-gradient-to:rgb(var(--cyan-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/20:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/25:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/30:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/40:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/5:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/50:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/60:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/70:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/75:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/80:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/90:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-10\/95:hover{--tw-gradient-to:rgb(var(--cyan-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/0:hover{--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/10:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/100:hover{--tw-gradient-to:rgb(var(--cyan-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/20:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/25:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/30:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/40:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/5:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/50:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/60:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/70:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/75:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/80:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/90:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-2\/95:hover{--tw-gradient-to:rgb(var(--cyan-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/0:hover{--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/10:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/100:hover{--tw-gradient-to:rgb(var(--cyan-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/20:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/25:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/30:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/40:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/5:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/50:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/60:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/70:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/75:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/80:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/90:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-3\/95:hover{--tw-gradient-to:rgb(var(--cyan-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/0:hover{--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/10:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/100:hover{--tw-gradient-to:rgb(var(--cyan-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/20:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/25:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/30:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/40:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/5:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/50:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/60:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/70:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/75:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/80:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/90:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-4\/95:hover{--tw-gradient-to:rgb(var(--cyan-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/0:hover{--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/10:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/100:hover{--tw-gradient-to:rgb(var(--cyan-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/20:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/25:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/30:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/40:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/5:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/50:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/60:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/70:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/75:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/80:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/90:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-5\/95:hover{--tw-gradient-to:rgb(var(--cyan-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/0:hover{--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/10:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/100:hover{--tw-gradient-to:rgb(var(--cyan-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/20:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/25:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/30:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/40:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/5:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/50:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/60:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/70:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/75:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/80:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/90:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-6\/95:hover{--tw-gradient-to:rgb(var(--cyan-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/0:hover{--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/10:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/100:hover{--tw-gradient-to:rgb(var(--cyan-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/20:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/25:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/30:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/40:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/5:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/50:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/60:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/70:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/75:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/80:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/90:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-7\/95:hover{--tw-gradient-to:rgb(var(--cyan-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/0:hover{--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/10:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/100:hover{--tw-gradient-to:rgb(var(--cyan-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/20:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/25:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/30:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/40:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/5:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/50:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/60:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/70:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/75:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/80:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/90:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-8\/95:hover{--tw-gradient-to:rgb(var(--cyan-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/0:hover{--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/10:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/100:hover{--tw-gradient-to:rgb(var(--cyan-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/20:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/25:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/30:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/40:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/5:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/50:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/60:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/70:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/75:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/80:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/90:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-cyan-9\/95:hover{--tw-gradient-to:rgb(var(--cyan-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error:hover{--tw-gradient-to:rgb(var(--error)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/0:hover{--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/10:hover{--tw-gradient-to:rgb(var(--error)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/100:hover{--tw-gradient-to:rgb(var(--error)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/20:hover{--tw-gradient-to:rgb(var(--error)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/25:hover{--tw-gradient-to:rgb(var(--error)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/30:hover{--tw-gradient-to:rgb(var(--error)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/40:hover{--tw-gradient-to:rgb(var(--error)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/5:hover{--tw-gradient-to:rgb(var(--error)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/50:hover{--tw-gradient-to:rgb(var(--error)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/60:hover{--tw-gradient-to:rgb(var(--error)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/70:hover{--tw-gradient-to:rgb(var(--error)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/75:hover{--tw-gradient-to:rgb(var(--error)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/80:hover{--tw-gradient-to:rgb(var(--error)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/90:hover{--tw-gradient-to:rgb(var(--error)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-error\/95:hover{--tw-gradient-to:rgb(var(--error)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/0:hover{--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/10:hover{--tw-gradient-to:rgb(var(--gray-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/100:hover{--tw-gradient-to:rgb(var(--gray-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/20:hover{--tw-gradient-to:rgb(var(--gray-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/25:hover{--tw-gradient-to:rgb(var(--gray-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/30:hover{--tw-gradient-to:rgb(var(--gray-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/40:hover{--tw-gradient-to:rgb(var(--gray-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/5:hover{--tw-gradient-to:rgb(var(--gray-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/50:hover{--tw-gradient-to:rgb(var(--gray-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/60:hover{--tw-gradient-to:rgb(var(--gray-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/70:hover{--tw-gradient-to:rgb(var(--gray-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/75:hover{--tw-gradient-to:rgb(var(--gray-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/80:hover{--tw-gradient-to:rgb(var(--gray-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/90:hover{--tw-gradient-to:rgb(var(--gray-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-1\/95:hover{--tw-gradient-to:rgb(var(--gray-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/0:hover{--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/10:hover{--tw-gradient-to:rgb(var(--gray-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/100:hover{--tw-gradient-to:rgb(var(--gray-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/20:hover{--tw-gradient-to:rgb(var(--gray-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/25:hover{--tw-gradient-to:rgb(var(--gray-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/30:hover{--tw-gradient-to:rgb(var(--gray-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/40:hover{--tw-gradient-to:rgb(var(--gray-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/5:hover{--tw-gradient-to:rgb(var(--gray-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/50:hover{--tw-gradient-to:rgb(var(--gray-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/60:hover{--tw-gradient-to:rgb(var(--gray-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/70:hover{--tw-gradient-to:rgb(var(--gray-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/75:hover{--tw-gradient-to:rgb(var(--gray-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/80:hover{--tw-gradient-to:rgb(var(--gray-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/90:hover{--tw-gradient-to:rgb(var(--gray-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-10\/95:hover{--tw-gradient-to:rgb(var(--gray-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/0:hover{--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/10:hover{--tw-gradient-to:rgb(var(--gray-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/100:hover{--tw-gradient-to:rgb(var(--gray-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/20:hover{--tw-gradient-to:rgb(var(--gray-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/25:hover{--tw-gradient-to:rgb(var(--gray-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/30:hover{--tw-gradient-to:rgb(var(--gray-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/40:hover{--tw-gradient-to:rgb(var(--gray-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/5:hover{--tw-gradient-to:rgb(var(--gray-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/50:hover{--tw-gradient-to:rgb(var(--gray-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/60:hover{--tw-gradient-to:rgb(var(--gray-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/70:hover{--tw-gradient-to:rgb(var(--gray-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/75:hover{--tw-gradient-to:rgb(var(--gray-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/80:hover{--tw-gradient-to:rgb(var(--gray-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/90:hover{--tw-gradient-to:rgb(var(--gray-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-2\/95:hover{--tw-gradient-to:rgb(var(--gray-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/0:hover{--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/10:hover{--tw-gradient-to:rgb(var(--gray-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/100:hover{--tw-gradient-to:rgb(var(--gray-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/20:hover{--tw-gradient-to:rgb(var(--gray-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/25:hover{--tw-gradient-to:rgb(var(--gray-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/30:hover{--tw-gradient-to:rgb(var(--gray-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/40:hover{--tw-gradient-to:rgb(var(--gray-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/5:hover{--tw-gradient-to:rgb(var(--gray-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/50:hover{--tw-gradient-to:rgb(var(--gray-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/60:hover{--tw-gradient-to:rgb(var(--gray-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/70:hover{--tw-gradient-to:rgb(var(--gray-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/75:hover{--tw-gradient-to:rgb(var(--gray-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/80:hover{--tw-gradient-to:rgb(var(--gray-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/90:hover{--tw-gradient-to:rgb(var(--gray-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-3\/95:hover{--tw-gradient-to:rgb(var(--gray-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/0:hover{--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/10:hover{--tw-gradient-to:rgb(var(--gray-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/100:hover{--tw-gradient-to:rgb(var(--gray-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/20:hover{--tw-gradient-to:rgb(var(--gray-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/25:hover{--tw-gradient-to:rgb(var(--gray-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/30:hover{--tw-gradient-to:rgb(var(--gray-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/40:hover{--tw-gradient-to:rgb(var(--gray-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/5:hover{--tw-gradient-to:rgb(var(--gray-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/50:hover{--tw-gradient-to:rgb(var(--gray-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/60:hover{--tw-gradient-to:rgb(var(--gray-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/70:hover{--tw-gradient-to:rgb(var(--gray-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/75:hover{--tw-gradient-to:rgb(var(--gray-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/80:hover{--tw-gradient-to:rgb(var(--gray-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/90:hover{--tw-gradient-to:rgb(var(--gray-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-4\/95:hover{--tw-gradient-to:rgb(var(--gray-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/0:hover{--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/10:hover{--tw-gradient-to:rgb(var(--gray-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/100:hover{--tw-gradient-to:rgb(var(--gray-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/20:hover{--tw-gradient-to:rgb(var(--gray-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/25:hover{--tw-gradient-to:rgb(var(--gray-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/30:hover{--tw-gradient-to:rgb(var(--gray-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/40:hover{--tw-gradient-to:rgb(var(--gray-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/5:hover{--tw-gradient-to:rgb(var(--gray-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/50:hover{--tw-gradient-to:rgb(var(--gray-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/60:hover{--tw-gradient-to:rgb(var(--gray-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/70:hover{--tw-gradient-to:rgb(var(--gray-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/75:hover{--tw-gradient-to:rgb(var(--gray-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/80:hover{--tw-gradient-to:rgb(var(--gray-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/90:hover{--tw-gradient-to:rgb(var(--gray-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-5\/95:hover{--tw-gradient-to:rgb(var(--gray-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/0:hover{--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/10:hover{--tw-gradient-to:rgb(var(--gray-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/100:hover{--tw-gradient-to:rgb(var(--gray-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/20:hover{--tw-gradient-to:rgb(var(--gray-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/25:hover{--tw-gradient-to:rgb(var(--gray-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/30:hover{--tw-gradient-to:rgb(var(--gray-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/40:hover{--tw-gradient-to:rgb(var(--gray-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/5:hover{--tw-gradient-to:rgb(var(--gray-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/50:hover{--tw-gradient-to:rgb(var(--gray-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/60:hover{--tw-gradient-to:rgb(var(--gray-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/70:hover{--tw-gradient-to:rgb(var(--gray-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/75:hover{--tw-gradient-to:rgb(var(--gray-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/80:hover{--tw-gradient-to:rgb(var(--gray-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/90:hover{--tw-gradient-to:rgb(var(--gray-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-6\/95:hover{--tw-gradient-to:rgb(var(--gray-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/0:hover{--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/10:hover{--tw-gradient-to:rgb(var(--gray-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/100:hover{--tw-gradient-to:rgb(var(--gray-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/20:hover{--tw-gradient-to:rgb(var(--gray-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/25:hover{--tw-gradient-to:rgb(var(--gray-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/30:hover{--tw-gradient-to:rgb(var(--gray-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/40:hover{--tw-gradient-to:rgb(var(--gray-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/5:hover{--tw-gradient-to:rgb(var(--gray-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/50:hover{--tw-gradient-to:rgb(var(--gray-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/60:hover{--tw-gradient-to:rgb(var(--gray-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/70:hover{--tw-gradient-to:rgb(var(--gray-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/75:hover{--tw-gradient-to:rgb(var(--gray-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/80:hover{--tw-gradient-to:rgb(var(--gray-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/90:hover{--tw-gradient-to:rgb(var(--gray-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-7\/95:hover{--tw-gradient-to:rgb(var(--gray-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/0:hover{--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/10:hover{--tw-gradient-to:rgb(var(--gray-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/100:hover{--tw-gradient-to:rgb(var(--gray-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/20:hover{--tw-gradient-to:rgb(var(--gray-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/25:hover{--tw-gradient-to:rgb(var(--gray-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/30:hover{--tw-gradient-to:rgb(var(--gray-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/40:hover{--tw-gradient-to:rgb(var(--gray-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/5:hover{--tw-gradient-to:rgb(var(--gray-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/50:hover{--tw-gradient-to:rgb(var(--gray-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/60:hover{--tw-gradient-to:rgb(var(--gray-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/70:hover{--tw-gradient-to:rgb(var(--gray-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/75:hover{--tw-gradient-to:rgb(var(--gray-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/80:hover{--tw-gradient-to:rgb(var(--gray-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/90:hover{--tw-gradient-to:rgb(var(--gray-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-8\/95:hover{--tw-gradient-to:rgb(var(--gray-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/0:hover{--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/10:hover{--tw-gradient-to:rgb(var(--gray-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/100:hover{--tw-gradient-to:rgb(var(--gray-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/20:hover{--tw-gradient-to:rgb(var(--gray-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/25:hover{--tw-gradient-to:rgb(var(--gray-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/30:hover{--tw-gradient-to:rgb(var(--gray-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/40:hover{--tw-gradient-to:rgb(var(--gray-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/5:hover{--tw-gradient-to:rgb(var(--gray-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/50:hover{--tw-gradient-to:rgb(var(--gray-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/60:hover{--tw-gradient-to:rgb(var(--gray-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/70:hover{--tw-gradient-to:rgb(var(--gray-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/75:hover{--tw-gradient-to:rgb(var(--gray-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/80:hover{--tw-gradient-to:rgb(var(--gray-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/90:hover{--tw-gradient-to:rgb(var(--gray-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-gray-9\/95:hover{--tw-gradient-to:rgb(var(--gray-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/0:hover{--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/10:hover{--tw-gradient-to:rgb(var(--green-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/100:hover{--tw-gradient-to:rgb(var(--green-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/20:hover{--tw-gradient-to:rgb(var(--green-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/25:hover{--tw-gradient-to:rgb(var(--green-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/30:hover{--tw-gradient-to:rgb(var(--green-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/40:hover{--tw-gradient-to:rgb(var(--green-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/5:hover{--tw-gradient-to:rgb(var(--green-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/50:hover{--tw-gradient-to:rgb(var(--green-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/60:hover{--tw-gradient-to:rgb(var(--green-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/70:hover{--tw-gradient-to:rgb(var(--green-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/75:hover{--tw-gradient-to:rgb(var(--green-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/80:hover{--tw-gradient-to:rgb(var(--green-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/90:hover{--tw-gradient-to:rgb(var(--green-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-1\/95:hover{--tw-gradient-to:rgb(var(--green-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/0:hover{--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/10:hover{--tw-gradient-to:rgb(var(--green-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/100:hover{--tw-gradient-to:rgb(var(--green-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/20:hover{--tw-gradient-to:rgb(var(--green-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/25:hover{--tw-gradient-to:rgb(var(--green-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/30:hover{--tw-gradient-to:rgb(var(--green-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/40:hover{--tw-gradient-to:rgb(var(--green-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/5:hover{--tw-gradient-to:rgb(var(--green-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/50:hover{--tw-gradient-to:rgb(var(--green-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/60:hover{--tw-gradient-to:rgb(var(--green-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/70:hover{--tw-gradient-to:rgb(var(--green-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/75:hover{--tw-gradient-to:rgb(var(--green-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/80:hover{--tw-gradient-to:rgb(var(--green-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/90:hover{--tw-gradient-to:rgb(var(--green-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-10\/95:hover{--tw-gradient-to:rgb(var(--green-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/0:hover{--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/10:hover{--tw-gradient-to:rgb(var(--green-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/100:hover{--tw-gradient-to:rgb(var(--green-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/20:hover{--tw-gradient-to:rgb(var(--green-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/25:hover{--tw-gradient-to:rgb(var(--green-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/30:hover{--tw-gradient-to:rgb(var(--green-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/40:hover{--tw-gradient-to:rgb(var(--green-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/5:hover{--tw-gradient-to:rgb(var(--green-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/50:hover{--tw-gradient-to:rgb(var(--green-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/60:hover{--tw-gradient-to:rgb(var(--green-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/70:hover{--tw-gradient-to:rgb(var(--green-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/75:hover{--tw-gradient-to:rgb(var(--green-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/80:hover{--tw-gradient-to:rgb(var(--green-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/90:hover{--tw-gradient-to:rgb(var(--green-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-2\/95:hover{--tw-gradient-to:rgb(var(--green-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/0:hover{--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/10:hover{--tw-gradient-to:rgb(var(--green-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/100:hover{--tw-gradient-to:rgb(var(--green-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/20:hover{--tw-gradient-to:rgb(var(--green-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/25:hover{--tw-gradient-to:rgb(var(--green-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/30:hover{--tw-gradient-to:rgb(var(--green-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/40:hover{--tw-gradient-to:rgb(var(--green-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/5:hover{--tw-gradient-to:rgb(var(--green-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/50:hover{--tw-gradient-to:rgb(var(--green-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/60:hover{--tw-gradient-to:rgb(var(--green-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/70:hover{--tw-gradient-to:rgb(var(--green-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/75:hover{--tw-gradient-to:rgb(var(--green-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/80:hover{--tw-gradient-to:rgb(var(--green-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/90:hover{--tw-gradient-to:rgb(var(--green-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-3\/95:hover{--tw-gradient-to:rgb(var(--green-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/0:hover{--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/10:hover{--tw-gradient-to:rgb(var(--green-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/100:hover{--tw-gradient-to:rgb(var(--green-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/20:hover{--tw-gradient-to:rgb(var(--green-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/25:hover{--tw-gradient-to:rgb(var(--green-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/30:hover{--tw-gradient-to:rgb(var(--green-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/40:hover{--tw-gradient-to:rgb(var(--green-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/5:hover{--tw-gradient-to:rgb(var(--green-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/50:hover{--tw-gradient-to:rgb(var(--green-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/60:hover{--tw-gradient-to:rgb(var(--green-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/70:hover{--tw-gradient-to:rgb(var(--green-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/75:hover{--tw-gradient-to:rgb(var(--green-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/80:hover{--tw-gradient-to:rgb(var(--green-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/90:hover{--tw-gradient-to:rgb(var(--green-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-4\/95:hover{--tw-gradient-to:rgb(var(--green-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/0:hover{--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/10:hover{--tw-gradient-to:rgb(var(--green-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/100:hover{--tw-gradient-to:rgb(var(--green-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/20:hover{--tw-gradient-to:rgb(var(--green-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/25:hover{--tw-gradient-to:rgb(var(--green-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/30:hover{--tw-gradient-to:rgb(var(--green-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/40:hover{--tw-gradient-to:rgb(var(--green-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/5:hover{--tw-gradient-to:rgb(var(--green-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/50:hover{--tw-gradient-to:rgb(var(--green-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/60:hover{--tw-gradient-to:rgb(var(--green-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/70:hover{--tw-gradient-to:rgb(var(--green-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/75:hover{--tw-gradient-to:rgb(var(--green-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/80:hover{--tw-gradient-to:rgb(var(--green-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/90:hover{--tw-gradient-to:rgb(var(--green-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-5\/95:hover{--tw-gradient-to:rgb(var(--green-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/0:hover{--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/10:hover{--tw-gradient-to:rgb(var(--green-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/100:hover{--tw-gradient-to:rgb(var(--green-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/20:hover{--tw-gradient-to:rgb(var(--green-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/25:hover{--tw-gradient-to:rgb(var(--green-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/30:hover{--tw-gradient-to:rgb(var(--green-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/40:hover{--tw-gradient-to:rgb(var(--green-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/5:hover{--tw-gradient-to:rgb(var(--green-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/50:hover{--tw-gradient-to:rgb(var(--green-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/60:hover{--tw-gradient-to:rgb(var(--green-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/70:hover{--tw-gradient-to:rgb(var(--green-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/75:hover{--tw-gradient-to:rgb(var(--green-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/80:hover{--tw-gradient-to:rgb(var(--green-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/90:hover{--tw-gradient-to:rgb(var(--green-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-6\/95:hover{--tw-gradient-to:rgb(var(--green-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/0:hover{--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/10:hover{--tw-gradient-to:rgb(var(--green-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/100:hover{--tw-gradient-to:rgb(var(--green-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/20:hover{--tw-gradient-to:rgb(var(--green-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/25:hover{--tw-gradient-to:rgb(var(--green-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/30:hover{--tw-gradient-to:rgb(var(--green-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/40:hover{--tw-gradient-to:rgb(var(--green-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/5:hover{--tw-gradient-to:rgb(var(--green-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/50:hover{--tw-gradient-to:rgb(var(--green-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/60:hover{--tw-gradient-to:rgb(var(--green-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/70:hover{--tw-gradient-to:rgb(var(--green-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/75:hover{--tw-gradient-to:rgb(var(--green-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/80:hover{--tw-gradient-to:rgb(var(--green-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/90:hover{--tw-gradient-to:rgb(var(--green-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-7\/95:hover{--tw-gradient-to:rgb(var(--green-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/0:hover{--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/10:hover{--tw-gradient-to:rgb(var(--green-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/100:hover{--tw-gradient-to:rgb(var(--green-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/20:hover{--tw-gradient-to:rgb(var(--green-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/25:hover{--tw-gradient-to:rgb(var(--green-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/30:hover{--tw-gradient-to:rgb(var(--green-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/40:hover{--tw-gradient-to:rgb(var(--green-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/5:hover{--tw-gradient-to:rgb(var(--green-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/50:hover{--tw-gradient-to:rgb(var(--green-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/60:hover{--tw-gradient-to:rgb(var(--green-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/70:hover{--tw-gradient-to:rgb(var(--green-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/75:hover{--tw-gradient-to:rgb(var(--green-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/80:hover{--tw-gradient-to:rgb(var(--green-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/90:hover{--tw-gradient-to:rgb(var(--green-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-8\/95:hover{--tw-gradient-to:rgb(var(--green-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/0:hover{--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/10:hover{--tw-gradient-to:rgb(var(--green-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/100:hover{--tw-gradient-to:rgb(var(--green-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/20:hover{--tw-gradient-to:rgb(var(--green-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/25:hover{--tw-gradient-to:rgb(var(--green-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/30:hover{--tw-gradient-to:rgb(var(--green-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/40:hover{--tw-gradient-to:rgb(var(--green-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/5:hover{--tw-gradient-to:rgb(var(--green-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/50:hover{--tw-gradient-to:rgb(var(--green-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/60:hover{--tw-gradient-to:rgb(var(--green-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/70:hover{--tw-gradient-to:rgb(var(--green-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/75:hover{--tw-gradient-to:rgb(var(--green-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/80:hover{--tw-gradient-to:rgb(var(--green-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/90:hover{--tw-gradient-to:rgb(var(--green-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-green-9\/95:hover{--tw-gradient-to:rgb(var(--green-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/0:hover{--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/10:hover{--tw-gradient-to:rgb(var(--pink-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/100:hover{--tw-gradient-to:rgb(var(--pink-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/20:hover{--tw-gradient-to:rgb(var(--pink-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/25:hover{--tw-gradient-to:rgb(var(--pink-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/30:hover{--tw-gradient-to:rgb(var(--pink-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/40:hover{--tw-gradient-to:rgb(var(--pink-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/5:hover{--tw-gradient-to:rgb(var(--pink-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/50:hover{--tw-gradient-to:rgb(var(--pink-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/60:hover{--tw-gradient-to:rgb(var(--pink-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/70:hover{--tw-gradient-to:rgb(var(--pink-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/75:hover{--tw-gradient-to:rgb(var(--pink-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/80:hover{--tw-gradient-to:rgb(var(--pink-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/90:hover{--tw-gradient-to:rgb(var(--pink-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-1\/95:hover{--tw-gradient-to:rgb(var(--pink-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/0:hover{--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/10:hover{--tw-gradient-to:rgb(var(--pink-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/100:hover{--tw-gradient-to:rgb(var(--pink-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/20:hover{--tw-gradient-to:rgb(var(--pink-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/25:hover{--tw-gradient-to:rgb(var(--pink-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/30:hover{--tw-gradient-to:rgb(var(--pink-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/40:hover{--tw-gradient-to:rgb(var(--pink-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/5:hover{--tw-gradient-to:rgb(var(--pink-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/50:hover{--tw-gradient-to:rgb(var(--pink-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/60:hover{--tw-gradient-to:rgb(var(--pink-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/70:hover{--tw-gradient-to:rgb(var(--pink-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/75:hover{--tw-gradient-to:rgb(var(--pink-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/80:hover{--tw-gradient-to:rgb(var(--pink-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/90:hover{--tw-gradient-to:rgb(var(--pink-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-10\/95:hover{--tw-gradient-to:rgb(var(--pink-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/0:hover{--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/10:hover{--tw-gradient-to:rgb(var(--pink-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/100:hover{--tw-gradient-to:rgb(var(--pink-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/20:hover{--tw-gradient-to:rgb(var(--pink-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/25:hover{--tw-gradient-to:rgb(var(--pink-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/30:hover{--tw-gradient-to:rgb(var(--pink-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/40:hover{--tw-gradient-to:rgb(var(--pink-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/5:hover{--tw-gradient-to:rgb(var(--pink-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/50:hover{--tw-gradient-to:rgb(var(--pink-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/60:hover{--tw-gradient-to:rgb(var(--pink-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/70:hover{--tw-gradient-to:rgb(var(--pink-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/75:hover{--tw-gradient-to:rgb(var(--pink-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/80:hover{--tw-gradient-to:rgb(var(--pink-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/90:hover{--tw-gradient-to:rgb(var(--pink-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-2\/95:hover{--tw-gradient-to:rgb(var(--pink-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/0:hover{--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/10:hover{--tw-gradient-to:rgb(var(--pink-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/100:hover{--tw-gradient-to:rgb(var(--pink-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/20:hover{--tw-gradient-to:rgb(var(--pink-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/25:hover{--tw-gradient-to:rgb(var(--pink-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/30:hover{--tw-gradient-to:rgb(var(--pink-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/40:hover{--tw-gradient-to:rgb(var(--pink-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/5:hover{--tw-gradient-to:rgb(var(--pink-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/50:hover{--tw-gradient-to:rgb(var(--pink-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/60:hover{--tw-gradient-to:rgb(var(--pink-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/70:hover{--tw-gradient-to:rgb(var(--pink-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/75:hover{--tw-gradient-to:rgb(var(--pink-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/80:hover{--tw-gradient-to:rgb(var(--pink-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/90:hover{--tw-gradient-to:rgb(var(--pink-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-3\/95:hover{--tw-gradient-to:rgb(var(--pink-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/0:hover{--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/10:hover{--tw-gradient-to:rgb(var(--pink-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/100:hover{--tw-gradient-to:rgb(var(--pink-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/20:hover{--tw-gradient-to:rgb(var(--pink-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/25:hover{--tw-gradient-to:rgb(var(--pink-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/30:hover{--tw-gradient-to:rgb(var(--pink-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/40:hover{--tw-gradient-to:rgb(var(--pink-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/5:hover{--tw-gradient-to:rgb(var(--pink-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/50:hover{--tw-gradient-to:rgb(var(--pink-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/60:hover{--tw-gradient-to:rgb(var(--pink-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/70:hover{--tw-gradient-to:rgb(var(--pink-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/75:hover{--tw-gradient-to:rgb(var(--pink-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/80:hover{--tw-gradient-to:rgb(var(--pink-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/90:hover{--tw-gradient-to:rgb(var(--pink-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-4\/95:hover{--tw-gradient-to:rgb(var(--pink-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/0:hover{--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/10:hover{--tw-gradient-to:rgb(var(--pink-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/100:hover{--tw-gradient-to:rgb(var(--pink-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/20:hover{--tw-gradient-to:rgb(var(--pink-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/25:hover{--tw-gradient-to:rgb(var(--pink-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/30:hover{--tw-gradient-to:rgb(var(--pink-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/40:hover{--tw-gradient-to:rgb(var(--pink-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/5:hover{--tw-gradient-to:rgb(var(--pink-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/50:hover{--tw-gradient-to:rgb(var(--pink-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/60:hover{--tw-gradient-to:rgb(var(--pink-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/70:hover{--tw-gradient-to:rgb(var(--pink-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/75:hover{--tw-gradient-to:rgb(var(--pink-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/80:hover{--tw-gradient-to:rgb(var(--pink-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/90:hover{--tw-gradient-to:rgb(var(--pink-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-5\/95:hover{--tw-gradient-to:rgb(var(--pink-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/0:hover{--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/10:hover{--tw-gradient-to:rgb(var(--pink-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/100:hover{--tw-gradient-to:rgb(var(--pink-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/20:hover{--tw-gradient-to:rgb(var(--pink-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/25:hover{--tw-gradient-to:rgb(var(--pink-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/30:hover{--tw-gradient-to:rgb(var(--pink-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/40:hover{--tw-gradient-to:rgb(var(--pink-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/5:hover{--tw-gradient-to:rgb(var(--pink-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/50:hover{--tw-gradient-to:rgb(var(--pink-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/60:hover{--tw-gradient-to:rgb(var(--pink-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/70:hover{--tw-gradient-to:rgb(var(--pink-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/75:hover{--tw-gradient-to:rgb(var(--pink-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/80:hover{--tw-gradient-to:rgb(var(--pink-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/90:hover{--tw-gradient-to:rgb(var(--pink-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-6\/95:hover{--tw-gradient-to:rgb(var(--pink-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/0:hover{--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/10:hover{--tw-gradient-to:rgb(var(--pink-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/100:hover{--tw-gradient-to:rgb(var(--pink-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/20:hover{--tw-gradient-to:rgb(var(--pink-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/25:hover{--tw-gradient-to:rgb(var(--pink-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/30:hover{--tw-gradient-to:rgb(var(--pink-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/40:hover{--tw-gradient-to:rgb(var(--pink-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/5:hover{--tw-gradient-to:rgb(var(--pink-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/50:hover{--tw-gradient-to:rgb(var(--pink-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/60:hover{--tw-gradient-to:rgb(var(--pink-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/70:hover{--tw-gradient-to:rgb(var(--pink-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/75:hover{--tw-gradient-to:rgb(var(--pink-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/80:hover{--tw-gradient-to:rgb(var(--pink-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/90:hover{--tw-gradient-to:rgb(var(--pink-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-7\/95:hover{--tw-gradient-to:rgb(var(--pink-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/0:hover{--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/10:hover{--tw-gradient-to:rgb(var(--pink-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/100:hover{--tw-gradient-to:rgb(var(--pink-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/20:hover{--tw-gradient-to:rgb(var(--pink-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/25:hover{--tw-gradient-to:rgb(var(--pink-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/30:hover{--tw-gradient-to:rgb(var(--pink-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/40:hover{--tw-gradient-to:rgb(var(--pink-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/5:hover{--tw-gradient-to:rgb(var(--pink-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/50:hover{--tw-gradient-to:rgb(var(--pink-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/60:hover{--tw-gradient-to:rgb(var(--pink-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/70:hover{--tw-gradient-to:rgb(var(--pink-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/75:hover{--tw-gradient-to:rgb(var(--pink-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/80:hover{--tw-gradient-to:rgb(var(--pink-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/90:hover{--tw-gradient-to:rgb(var(--pink-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-8\/95:hover{--tw-gradient-to:rgb(var(--pink-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/0:hover{--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/10:hover{--tw-gradient-to:rgb(var(--pink-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/100:hover{--tw-gradient-to:rgb(var(--pink-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/20:hover{--tw-gradient-to:rgb(var(--pink-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/25:hover{--tw-gradient-to:rgb(var(--pink-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/30:hover{--tw-gradient-to:rgb(var(--pink-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/40:hover{--tw-gradient-to:rgb(var(--pink-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/5:hover{--tw-gradient-to:rgb(var(--pink-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/50:hover{--tw-gradient-to:rgb(var(--pink-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/60:hover{--tw-gradient-to:rgb(var(--pink-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/70:hover{--tw-gradient-to:rgb(var(--pink-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/75:hover{--tw-gradient-to:rgb(var(--pink-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/80:hover{--tw-gradient-to:rgb(var(--pink-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/90:hover{--tw-gradient-to:rgb(var(--pink-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-pink-9\/95:hover{--tw-gradient-to:rgb(var(--pink-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary:hover{--tw-gradient-to:rgb(var(--primary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/0:hover{--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/10:hover{--tw-gradient-to:rgb(var(--primary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/100:hover{--tw-gradient-to:rgb(var(--primary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/20:hover{--tw-gradient-to:rgb(var(--primary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/25:hover{--tw-gradient-to:rgb(var(--primary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/30:hover{--tw-gradient-to:rgb(var(--primary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/40:hover{--tw-gradient-to:rgb(var(--primary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/5:hover{--tw-gradient-to:rgb(var(--primary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/50:hover{--tw-gradient-to:rgb(var(--primary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/60:hover{--tw-gradient-to:rgb(var(--primary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/70:hover{--tw-gradient-to:rgb(var(--primary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/75:hover{--tw-gradient-to:rgb(var(--primary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/80:hover{--tw-gradient-to:rgb(var(--primary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/90:hover{--tw-gradient-to:rgb(var(--primary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-primary\/95:hover{--tw-gradient-to:rgb(var(--primary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/0:hover{--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/10:hover{--tw-gradient-to:rgb(var(--purple-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/100:hover{--tw-gradient-to:rgb(var(--purple-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/20:hover{--tw-gradient-to:rgb(var(--purple-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/25:hover{--tw-gradient-to:rgb(var(--purple-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/30:hover{--tw-gradient-to:rgb(var(--purple-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/40:hover{--tw-gradient-to:rgb(var(--purple-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/5:hover{--tw-gradient-to:rgb(var(--purple-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/50:hover{--tw-gradient-to:rgb(var(--purple-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/60:hover{--tw-gradient-to:rgb(var(--purple-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/70:hover{--tw-gradient-to:rgb(var(--purple-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/75:hover{--tw-gradient-to:rgb(var(--purple-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/80:hover{--tw-gradient-to:rgb(var(--purple-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/90:hover{--tw-gradient-to:rgb(var(--purple-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-1\/95:hover{--tw-gradient-to:rgb(var(--purple-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/0:hover{--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/10:hover{--tw-gradient-to:rgb(var(--purple-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/100:hover{--tw-gradient-to:rgb(var(--purple-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/20:hover{--tw-gradient-to:rgb(var(--purple-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/25:hover{--tw-gradient-to:rgb(var(--purple-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/30:hover{--tw-gradient-to:rgb(var(--purple-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/40:hover{--tw-gradient-to:rgb(var(--purple-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/5:hover{--tw-gradient-to:rgb(var(--purple-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/50:hover{--tw-gradient-to:rgb(var(--purple-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/60:hover{--tw-gradient-to:rgb(var(--purple-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/70:hover{--tw-gradient-to:rgb(var(--purple-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/75:hover{--tw-gradient-to:rgb(var(--purple-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/80:hover{--tw-gradient-to:rgb(var(--purple-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/90:hover{--tw-gradient-to:rgb(var(--purple-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-10\/95:hover{--tw-gradient-to:rgb(var(--purple-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/0:hover{--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/10:hover{--tw-gradient-to:rgb(var(--purple-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/100:hover{--tw-gradient-to:rgb(var(--purple-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/20:hover{--tw-gradient-to:rgb(var(--purple-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/25:hover{--tw-gradient-to:rgb(var(--purple-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/30:hover{--tw-gradient-to:rgb(var(--purple-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/40:hover{--tw-gradient-to:rgb(var(--purple-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/5:hover{--tw-gradient-to:rgb(var(--purple-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/50:hover{--tw-gradient-to:rgb(var(--purple-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/60:hover{--tw-gradient-to:rgb(var(--purple-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/70:hover{--tw-gradient-to:rgb(var(--purple-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/75:hover{--tw-gradient-to:rgb(var(--purple-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/80:hover{--tw-gradient-to:rgb(var(--purple-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/90:hover{--tw-gradient-to:rgb(var(--purple-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-2\/95:hover{--tw-gradient-to:rgb(var(--purple-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/0:hover{--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/10:hover{--tw-gradient-to:rgb(var(--purple-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/100:hover{--tw-gradient-to:rgb(var(--purple-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/20:hover{--tw-gradient-to:rgb(var(--purple-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/25:hover{--tw-gradient-to:rgb(var(--purple-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/30:hover{--tw-gradient-to:rgb(var(--purple-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/40:hover{--tw-gradient-to:rgb(var(--purple-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/5:hover{--tw-gradient-to:rgb(var(--purple-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/50:hover{--tw-gradient-to:rgb(var(--purple-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/60:hover{--tw-gradient-to:rgb(var(--purple-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/70:hover{--tw-gradient-to:rgb(var(--purple-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/75:hover{--tw-gradient-to:rgb(var(--purple-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/80:hover{--tw-gradient-to:rgb(var(--purple-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/90:hover{--tw-gradient-to:rgb(var(--purple-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-3\/95:hover{--tw-gradient-to:rgb(var(--purple-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/0:hover{--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/10:hover{--tw-gradient-to:rgb(var(--purple-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/100:hover{--tw-gradient-to:rgb(var(--purple-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/20:hover{--tw-gradient-to:rgb(var(--purple-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/25:hover{--tw-gradient-to:rgb(var(--purple-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/30:hover{--tw-gradient-to:rgb(var(--purple-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/40:hover{--tw-gradient-to:rgb(var(--purple-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/5:hover{--tw-gradient-to:rgb(var(--purple-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/50:hover{--tw-gradient-to:rgb(var(--purple-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/60:hover{--tw-gradient-to:rgb(var(--purple-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/70:hover{--tw-gradient-to:rgb(var(--purple-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/75:hover{--tw-gradient-to:rgb(var(--purple-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/80:hover{--tw-gradient-to:rgb(var(--purple-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/90:hover{--tw-gradient-to:rgb(var(--purple-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-4\/95:hover{--tw-gradient-to:rgb(var(--purple-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/0:hover{--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/10:hover{--tw-gradient-to:rgb(var(--purple-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/100:hover{--tw-gradient-to:rgb(var(--purple-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/20:hover{--tw-gradient-to:rgb(var(--purple-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/25:hover{--tw-gradient-to:rgb(var(--purple-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/30:hover{--tw-gradient-to:rgb(var(--purple-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/40:hover{--tw-gradient-to:rgb(var(--purple-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/5:hover{--tw-gradient-to:rgb(var(--purple-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/50:hover{--tw-gradient-to:rgb(var(--purple-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/60:hover{--tw-gradient-to:rgb(var(--purple-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/70:hover{--tw-gradient-to:rgb(var(--purple-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/75:hover{--tw-gradient-to:rgb(var(--purple-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/80:hover{--tw-gradient-to:rgb(var(--purple-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/90:hover{--tw-gradient-to:rgb(var(--purple-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-5\/95:hover{--tw-gradient-to:rgb(var(--purple-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/0:hover{--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/10:hover{--tw-gradient-to:rgb(var(--purple-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/100:hover{--tw-gradient-to:rgb(var(--purple-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/20:hover{--tw-gradient-to:rgb(var(--purple-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/25:hover{--tw-gradient-to:rgb(var(--purple-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/30:hover{--tw-gradient-to:rgb(var(--purple-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/40:hover{--tw-gradient-to:rgb(var(--purple-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/5:hover{--tw-gradient-to:rgb(var(--purple-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/50:hover{--tw-gradient-to:rgb(var(--purple-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/60:hover{--tw-gradient-to:rgb(var(--purple-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/70:hover{--tw-gradient-to:rgb(var(--purple-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/75:hover{--tw-gradient-to:rgb(var(--purple-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/80:hover{--tw-gradient-to:rgb(var(--purple-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/90:hover{--tw-gradient-to:rgb(var(--purple-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-6\/95:hover{--tw-gradient-to:rgb(var(--purple-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/0:hover{--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/10:hover{--tw-gradient-to:rgb(var(--purple-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/100:hover{--tw-gradient-to:rgb(var(--purple-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/20:hover{--tw-gradient-to:rgb(var(--purple-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/25:hover{--tw-gradient-to:rgb(var(--purple-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/30:hover{--tw-gradient-to:rgb(var(--purple-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/40:hover{--tw-gradient-to:rgb(var(--purple-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/5:hover{--tw-gradient-to:rgb(var(--purple-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/50:hover{--tw-gradient-to:rgb(var(--purple-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/60:hover{--tw-gradient-to:rgb(var(--purple-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/70:hover{--tw-gradient-to:rgb(var(--purple-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/75:hover{--tw-gradient-to:rgb(var(--purple-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/80:hover{--tw-gradient-to:rgb(var(--purple-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/90:hover{--tw-gradient-to:rgb(var(--purple-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-7\/95:hover{--tw-gradient-to:rgb(var(--purple-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/0:hover{--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/10:hover{--tw-gradient-to:rgb(var(--purple-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/100:hover{--tw-gradient-to:rgb(var(--purple-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/20:hover{--tw-gradient-to:rgb(var(--purple-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/25:hover{--tw-gradient-to:rgb(var(--purple-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/30:hover{--tw-gradient-to:rgb(var(--purple-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/40:hover{--tw-gradient-to:rgb(var(--purple-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/5:hover{--tw-gradient-to:rgb(var(--purple-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/50:hover{--tw-gradient-to:rgb(var(--purple-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/60:hover{--tw-gradient-to:rgb(var(--purple-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/70:hover{--tw-gradient-to:rgb(var(--purple-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/75:hover{--tw-gradient-to:rgb(var(--purple-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/80:hover{--tw-gradient-to:rgb(var(--purple-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/90:hover{--tw-gradient-to:rgb(var(--purple-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-8\/95:hover{--tw-gradient-to:rgb(var(--purple-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/0:hover{--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/10:hover{--tw-gradient-to:rgb(var(--purple-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/100:hover{--tw-gradient-to:rgb(var(--purple-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/20:hover{--tw-gradient-to:rgb(var(--purple-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/25:hover{--tw-gradient-to:rgb(var(--purple-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/30:hover{--tw-gradient-to:rgb(var(--purple-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/40:hover{--tw-gradient-to:rgb(var(--purple-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/5:hover{--tw-gradient-to:rgb(var(--purple-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/50:hover{--tw-gradient-to:rgb(var(--purple-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/60:hover{--tw-gradient-to:rgb(var(--purple-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/70:hover{--tw-gradient-to:rgb(var(--purple-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/75:hover{--tw-gradient-to:rgb(var(--purple-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/80:hover{--tw-gradient-to:rgb(var(--purple-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/90:hover{--tw-gradient-to:rgb(var(--purple-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-purple-9\/95:hover{--tw-gradient-to:rgb(var(--purple-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/0:hover{--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/10:hover{--tw-gradient-to:rgb(var(--red-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/100:hover{--tw-gradient-to:rgb(var(--red-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/20:hover{--tw-gradient-to:rgb(var(--red-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/25:hover{--tw-gradient-to:rgb(var(--red-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/30:hover{--tw-gradient-to:rgb(var(--red-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/40:hover{--tw-gradient-to:rgb(var(--red-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/5:hover{--tw-gradient-to:rgb(var(--red-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/50:hover{--tw-gradient-to:rgb(var(--red-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/60:hover{--tw-gradient-to:rgb(var(--red-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/70:hover{--tw-gradient-to:rgb(var(--red-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/75:hover{--tw-gradient-to:rgb(var(--red-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/80:hover{--tw-gradient-to:rgb(var(--red-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/90:hover{--tw-gradient-to:rgb(var(--red-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-1\/95:hover{--tw-gradient-to:rgb(var(--red-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/0:hover{--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/10:hover{--tw-gradient-to:rgb(var(--red-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/100:hover{--tw-gradient-to:rgb(var(--red-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/20:hover{--tw-gradient-to:rgb(var(--red-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/25:hover{--tw-gradient-to:rgb(var(--red-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/30:hover{--tw-gradient-to:rgb(var(--red-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/40:hover{--tw-gradient-to:rgb(var(--red-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/5:hover{--tw-gradient-to:rgb(var(--red-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/50:hover{--tw-gradient-to:rgb(var(--red-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/60:hover{--tw-gradient-to:rgb(var(--red-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/70:hover{--tw-gradient-to:rgb(var(--red-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/75:hover{--tw-gradient-to:rgb(var(--red-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/80:hover{--tw-gradient-to:rgb(var(--red-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/90:hover{--tw-gradient-to:rgb(var(--red-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-10\/95:hover{--tw-gradient-to:rgb(var(--red-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/0:hover{--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/10:hover{--tw-gradient-to:rgb(var(--red-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/100:hover{--tw-gradient-to:rgb(var(--red-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/20:hover{--tw-gradient-to:rgb(var(--red-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/25:hover{--tw-gradient-to:rgb(var(--red-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/30:hover{--tw-gradient-to:rgb(var(--red-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/40:hover{--tw-gradient-to:rgb(var(--red-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/5:hover{--tw-gradient-to:rgb(var(--red-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/50:hover{--tw-gradient-to:rgb(var(--red-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/60:hover{--tw-gradient-to:rgb(var(--red-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/70:hover{--tw-gradient-to:rgb(var(--red-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/75:hover{--tw-gradient-to:rgb(var(--red-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/80:hover{--tw-gradient-to:rgb(var(--red-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/90:hover{--tw-gradient-to:rgb(var(--red-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-2\/95:hover{--tw-gradient-to:rgb(var(--red-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/0:hover{--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/10:hover{--tw-gradient-to:rgb(var(--red-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/100:hover{--tw-gradient-to:rgb(var(--red-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/20:hover{--tw-gradient-to:rgb(var(--red-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/25:hover{--tw-gradient-to:rgb(var(--red-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/30:hover{--tw-gradient-to:rgb(var(--red-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/40:hover{--tw-gradient-to:rgb(var(--red-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/5:hover{--tw-gradient-to:rgb(var(--red-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/50:hover{--tw-gradient-to:rgb(var(--red-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/60:hover{--tw-gradient-to:rgb(var(--red-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/70:hover{--tw-gradient-to:rgb(var(--red-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/75:hover{--tw-gradient-to:rgb(var(--red-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/80:hover{--tw-gradient-to:rgb(var(--red-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/90:hover{--tw-gradient-to:rgb(var(--red-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-3\/95:hover{--tw-gradient-to:rgb(var(--red-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/0:hover{--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/10:hover{--tw-gradient-to:rgb(var(--red-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/100:hover{--tw-gradient-to:rgb(var(--red-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/20:hover{--tw-gradient-to:rgb(var(--red-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/25:hover{--tw-gradient-to:rgb(var(--red-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/30:hover{--tw-gradient-to:rgb(var(--red-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/40:hover{--tw-gradient-to:rgb(var(--red-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/5:hover{--tw-gradient-to:rgb(var(--red-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/50:hover{--tw-gradient-to:rgb(var(--red-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/60:hover{--tw-gradient-to:rgb(var(--red-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/70:hover{--tw-gradient-to:rgb(var(--red-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/75:hover{--tw-gradient-to:rgb(var(--red-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/80:hover{--tw-gradient-to:rgb(var(--red-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/90:hover{--tw-gradient-to:rgb(var(--red-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-4\/95:hover{--tw-gradient-to:rgb(var(--red-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/0:hover{--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/10:hover{--tw-gradient-to:rgb(var(--red-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/100:hover{--tw-gradient-to:rgb(var(--red-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/20:hover{--tw-gradient-to:rgb(var(--red-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/25:hover{--tw-gradient-to:rgb(var(--red-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/30:hover{--tw-gradient-to:rgb(var(--red-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/40:hover{--tw-gradient-to:rgb(var(--red-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/5:hover{--tw-gradient-to:rgb(var(--red-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/50:hover{--tw-gradient-to:rgb(var(--red-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/60:hover{--tw-gradient-to:rgb(var(--red-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/70:hover{--tw-gradient-to:rgb(var(--red-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/75:hover{--tw-gradient-to:rgb(var(--red-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/80:hover{--tw-gradient-to:rgb(var(--red-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/90:hover{--tw-gradient-to:rgb(var(--red-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-5\/95:hover{--tw-gradient-to:rgb(var(--red-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/0:hover{--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/10:hover{--tw-gradient-to:rgb(var(--red-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/100:hover{--tw-gradient-to:rgb(var(--red-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/20:hover{--tw-gradient-to:rgb(var(--red-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/25:hover{--tw-gradient-to:rgb(var(--red-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/30:hover{--tw-gradient-to:rgb(var(--red-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/40:hover{--tw-gradient-to:rgb(var(--red-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/5:hover{--tw-gradient-to:rgb(var(--red-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/50:hover{--tw-gradient-to:rgb(var(--red-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/60:hover{--tw-gradient-to:rgb(var(--red-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/70:hover{--tw-gradient-to:rgb(var(--red-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/75:hover{--tw-gradient-to:rgb(var(--red-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/80:hover{--tw-gradient-to:rgb(var(--red-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/90:hover{--tw-gradient-to:rgb(var(--red-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-6\/95:hover{--tw-gradient-to:rgb(var(--red-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/0:hover{--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/10:hover{--tw-gradient-to:rgb(var(--red-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/100:hover{--tw-gradient-to:rgb(var(--red-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/20:hover{--tw-gradient-to:rgb(var(--red-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/25:hover{--tw-gradient-to:rgb(var(--red-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/30:hover{--tw-gradient-to:rgb(var(--red-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/40:hover{--tw-gradient-to:rgb(var(--red-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/5:hover{--tw-gradient-to:rgb(var(--red-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/50:hover{--tw-gradient-to:rgb(var(--red-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/60:hover{--tw-gradient-to:rgb(var(--red-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/70:hover{--tw-gradient-to:rgb(var(--red-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/75:hover{--tw-gradient-to:rgb(var(--red-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/80:hover{--tw-gradient-to:rgb(var(--red-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/90:hover{--tw-gradient-to:rgb(var(--red-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-7\/95:hover{--tw-gradient-to:rgb(var(--red-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/0:hover{--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/10:hover{--tw-gradient-to:rgb(var(--red-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/100:hover{--tw-gradient-to:rgb(var(--red-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/20:hover{--tw-gradient-to:rgb(var(--red-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/25:hover{--tw-gradient-to:rgb(var(--red-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/30:hover{--tw-gradient-to:rgb(var(--red-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/40:hover{--tw-gradient-to:rgb(var(--red-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/5:hover{--tw-gradient-to:rgb(var(--red-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/50:hover{--tw-gradient-to:rgb(var(--red-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/60:hover{--tw-gradient-to:rgb(var(--red-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/70:hover{--tw-gradient-to:rgb(var(--red-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/75:hover{--tw-gradient-to:rgb(var(--red-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/80:hover{--tw-gradient-to:rgb(var(--red-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/90:hover{--tw-gradient-to:rgb(var(--red-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-8\/95:hover{--tw-gradient-to:rgb(var(--red-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/0:hover{--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/10:hover{--tw-gradient-to:rgb(var(--red-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/100:hover{--tw-gradient-to:rgb(var(--red-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/20:hover{--tw-gradient-to:rgb(var(--red-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/25:hover{--tw-gradient-to:rgb(var(--red-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/30:hover{--tw-gradient-to:rgb(var(--red-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/40:hover{--tw-gradient-to:rgb(var(--red-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/5:hover{--tw-gradient-to:rgb(var(--red-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/50:hover{--tw-gradient-to:rgb(var(--red-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/60:hover{--tw-gradient-to:rgb(var(--red-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/70:hover{--tw-gradient-to:rgb(var(--red-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/75:hover{--tw-gradient-to:rgb(var(--red-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/80:hover{--tw-gradient-to:rgb(var(--red-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/90:hover{--tw-gradient-to:rgb(var(--red-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-red-9\/95:hover{--tw-gradient-to:rgb(var(--red-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary:hover{--tw-gradient-to:rgb(var(--secondary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/0:hover{--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/10:hover{--tw-gradient-to:rgb(var(--secondary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/100:hover{--tw-gradient-to:rgb(var(--secondary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/20:hover{--tw-gradient-to:rgb(var(--secondary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/25:hover{--tw-gradient-to:rgb(var(--secondary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/30:hover{--tw-gradient-to:rgb(var(--secondary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/40:hover{--tw-gradient-to:rgb(var(--secondary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/5:hover{--tw-gradient-to:rgb(var(--secondary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/50:hover{--tw-gradient-to:rgb(var(--secondary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/60:hover{--tw-gradient-to:rgb(var(--secondary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/70:hover{--tw-gradient-to:rgb(var(--secondary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/75:hover{--tw-gradient-to:rgb(var(--secondary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/80:hover{--tw-gradient-to:rgb(var(--secondary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/90:hover{--tw-gradient-to:rgb(var(--secondary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-secondary\/95:hover{--tw-gradient-to:rgb(var(--secondary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/0:hover{--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/10:hover{--tw-gradient-to:rgb(var(--slate-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/100:hover{--tw-gradient-to:rgb(var(--slate-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/20:hover{--tw-gradient-to:rgb(var(--slate-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/25:hover{--tw-gradient-to:rgb(var(--slate-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/30:hover{--tw-gradient-to:rgb(var(--slate-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/40:hover{--tw-gradient-to:rgb(var(--slate-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/5:hover{--tw-gradient-to:rgb(var(--slate-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/50:hover{--tw-gradient-to:rgb(var(--slate-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/60:hover{--tw-gradient-to:rgb(var(--slate-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/70:hover{--tw-gradient-to:rgb(var(--slate-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/75:hover{--tw-gradient-to:rgb(var(--slate-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/80:hover{--tw-gradient-to:rgb(var(--slate-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/90:hover{--tw-gradient-to:rgb(var(--slate-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-1\/95:hover{--tw-gradient-to:rgb(var(--slate-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/0:hover{--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/10:hover{--tw-gradient-to:rgb(var(--slate-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/100:hover{--tw-gradient-to:rgb(var(--slate-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/20:hover{--tw-gradient-to:rgb(var(--slate-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/25:hover{--tw-gradient-to:rgb(var(--slate-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/30:hover{--tw-gradient-to:rgb(var(--slate-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/40:hover{--tw-gradient-to:rgb(var(--slate-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/5:hover{--tw-gradient-to:rgb(var(--slate-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/50:hover{--tw-gradient-to:rgb(var(--slate-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/60:hover{--tw-gradient-to:rgb(var(--slate-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/70:hover{--tw-gradient-to:rgb(var(--slate-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/75:hover{--tw-gradient-to:rgb(var(--slate-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/80:hover{--tw-gradient-to:rgb(var(--slate-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/90:hover{--tw-gradient-to:rgb(var(--slate-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-10\/95:hover{--tw-gradient-to:rgb(var(--slate-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/0:hover{--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/10:hover{--tw-gradient-to:rgb(var(--slate-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/100:hover{--tw-gradient-to:rgb(var(--slate-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/20:hover{--tw-gradient-to:rgb(var(--slate-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/25:hover{--tw-gradient-to:rgb(var(--slate-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/30:hover{--tw-gradient-to:rgb(var(--slate-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/40:hover{--tw-gradient-to:rgb(var(--slate-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/5:hover{--tw-gradient-to:rgb(var(--slate-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/50:hover{--tw-gradient-to:rgb(var(--slate-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/60:hover{--tw-gradient-to:rgb(var(--slate-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/70:hover{--tw-gradient-to:rgb(var(--slate-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/75:hover{--tw-gradient-to:rgb(var(--slate-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/80:hover{--tw-gradient-to:rgb(var(--slate-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/90:hover{--tw-gradient-to:rgb(var(--slate-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-2\/95:hover{--tw-gradient-to:rgb(var(--slate-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/0:hover{--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/10:hover{--tw-gradient-to:rgb(var(--slate-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/100:hover{--tw-gradient-to:rgb(var(--slate-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/20:hover{--tw-gradient-to:rgb(var(--slate-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/25:hover{--tw-gradient-to:rgb(var(--slate-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/30:hover{--tw-gradient-to:rgb(var(--slate-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/40:hover{--tw-gradient-to:rgb(var(--slate-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/5:hover{--tw-gradient-to:rgb(var(--slate-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/50:hover{--tw-gradient-to:rgb(var(--slate-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/60:hover{--tw-gradient-to:rgb(var(--slate-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/70:hover{--tw-gradient-to:rgb(var(--slate-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/75:hover{--tw-gradient-to:rgb(var(--slate-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/80:hover{--tw-gradient-to:rgb(var(--slate-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/90:hover{--tw-gradient-to:rgb(var(--slate-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-3\/95:hover{--tw-gradient-to:rgb(var(--slate-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/0:hover{--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/10:hover{--tw-gradient-to:rgb(var(--slate-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/100:hover{--tw-gradient-to:rgb(var(--slate-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/20:hover{--tw-gradient-to:rgb(var(--slate-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/25:hover{--tw-gradient-to:rgb(var(--slate-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/30:hover{--tw-gradient-to:rgb(var(--slate-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/40:hover{--tw-gradient-to:rgb(var(--slate-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/5:hover{--tw-gradient-to:rgb(var(--slate-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/50:hover{--tw-gradient-to:rgb(var(--slate-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/60:hover{--tw-gradient-to:rgb(var(--slate-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/70:hover{--tw-gradient-to:rgb(var(--slate-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/75:hover{--tw-gradient-to:rgb(var(--slate-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/80:hover{--tw-gradient-to:rgb(var(--slate-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/90:hover{--tw-gradient-to:rgb(var(--slate-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-4\/95:hover{--tw-gradient-to:rgb(var(--slate-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/0:hover{--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/10:hover{--tw-gradient-to:rgb(var(--slate-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/100:hover{--tw-gradient-to:rgb(var(--slate-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/20:hover{--tw-gradient-to:rgb(var(--slate-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/25:hover{--tw-gradient-to:rgb(var(--slate-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/30:hover{--tw-gradient-to:rgb(var(--slate-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/40:hover{--tw-gradient-to:rgb(var(--slate-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/5:hover{--tw-gradient-to:rgb(var(--slate-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/50:hover{--tw-gradient-to:rgb(var(--slate-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/60:hover{--tw-gradient-to:rgb(var(--slate-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/70:hover{--tw-gradient-to:rgb(var(--slate-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/75:hover{--tw-gradient-to:rgb(var(--slate-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/80:hover{--tw-gradient-to:rgb(var(--slate-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/90:hover{--tw-gradient-to:rgb(var(--slate-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-5\/95:hover{--tw-gradient-to:rgb(var(--slate-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/0:hover{--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/10:hover{--tw-gradient-to:rgb(var(--slate-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/100:hover{--tw-gradient-to:rgb(var(--slate-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/20:hover{--tw-gradient-to:rgb(var(--slate-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/25:hover{--tw-gradient-to:rgb(var(--slate-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/30:hover{--tw-gradient-to:rgb(var(--slate-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/40:hover{--tw-gradient-to:rgb(var(--slate-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/5:hover{--tw-gradient-to:rgb(var(--slate-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/50:hover{--tw-gradient-to:rgb(var(--slate-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/60:hover{--tw-gradient-to:rgb(var(--slate-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/70:hover{--tw-gradient-to:rgb(var(--slate-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/75:hover{--tw-gradient-to:rgb(var(--slate-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/80:hover{--tw-gradient-to:rgb(var(--slate-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/90:hover{--tw-gradient-to:rgb(var(--slate-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-6\/95:hover{--tw-gradient-to:rgb(var(--slate-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/0:hover{--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/10:hover{--tw-gradient-to:rgb(var(--slate-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/100:hover{--tw-gradient-to:rgb(var(--slate-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/20:hover{--tw-gradient-to:rgb(var(--slate-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/25:hover{--tw-gradient-to:rgb(var(--slate-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/30:hover{--tw-gradient-to:rgb(var(--slate-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/40:hover{--tw-gradient-to:rgb(var(--slate-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/5:hover{--tw-gradient-to:rgb(var(--slate-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/50:hover{--tw-gradient-to:rgb(var(--slate-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/60:hover{--tw-gradient-to:rgb(var(--slate-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/70:hover{--tw-gradient-to:rgb(var(--slate-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/75:hover{--tw-gradient-to:rgb(var(--slate-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/80:hover{--tw-gradient-to:rgb(var(--slate-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/90:hover{--tw-gradient-to:rgb(var(--slate-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-7\/95:hover{--tw-gradient-to:rgb(var(--slate-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/0:hover{--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/10:hover{--tw-gradient-to:rgb(var(--slate-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/100:hover{--tw-gradient-to:rgb(var(--slate-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/20:hover{--tw-gradient-to:rgb(var(--slate-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/25:hover{--tw-gradient-to:rgb(var(--slate-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/30:hover{--tw-gradient-to:rgb(var(--slate-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/40:hover{--tw-gradient-to:rgb(var(--slate-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/5:hover{--tw-gradient-to:rgb(var(--slate-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/50:hover{--tw-gradient-to:rgb(var(--slate-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/60:hover{--tw-gradient-to:rgb(var(--slate-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/70:hover{--tw-gradient-to:rgb(var(--slate-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/75:hover{--tw-gradient-to:rgb(var(--slate-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/80:hover{--tw-gradient-to:rgb(var(--slate-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/90:hover{--tw-gradient-to:rgb(var(--slate-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-8\/95:hover{--tw-gradient-to:rgb(var(--slate-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/0:hover{--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/10:hover{--tw-gradient-to:rgb(var(--slate-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/100:hover{--tw-gradient-to:rgb(var(--slate-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/20:hover{--tw-gradient-to:rgb(var(--slate-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/25:hover{--tw-gradient-to:rgb(var(--slate-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/30:hover{--tw-gradient-to:rgb(var(--slate-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/40:hover{--tw-gradient-to:rgb(var(--slate-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/5:hover{--tw-gradient-to:rgb(var(--slate-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/50:hover{--tw-gradient-to:rgb(var(--slate-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/60:hover{--tw-gradient-to:rgb(var(--slate-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/70:hover{--tw-gradient-to:rgb(var(--slate-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/75:hover{--tw-gradient-to:rgb(var(--slate-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/80:hover{--tw-gradient-to:rgb(var(--slate-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/90:hover{--tw-gradient-to:rgb(var(--slate-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-slate-9\/95:hover{--tw-gradient-to:rgb(var(--slate-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success:hover{--tw-gradient-to:rgb(var(--success)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/0:hover{--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/10:hover{--tw-gradient-to:rgb(var(--success)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/100:hover{--tw-gradient-to:rgb(var(--success)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/20:hover{--tw-gradient-to:rgb(var(--success)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/25:hover{--tw-gradient-to:rgb(var(--success)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/30:hover{--tw-gradient-to:rgb(var(--success)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/40:hover{--tw-gradient-to:rgb(var(--success)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/5:hover{--tw-gradient-to:rgb(var(--success)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/50:hover{--tw-gradient-to:rgb(var(--success)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/60:hover{--tw-gradient-to:rgb(var(--success)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/70:hover{--tw-gradient-to:rgb(var(--success)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/75:hover{--tw-gradient-to:rgb(var(--success)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/80:hover{--tw-gradient-to:rgb(var(--success)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/90:hover{--tw-gradient-to:rgb(var(--success)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-success\/95:hover{--tw-gradient-to:rgb(var(--success)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning:hover{--tw-gradient-to:rgb(var(--warning)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/0:hover{--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/10:hover{--tw-gradient-to:rgb(var(--warning)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/100:hover{--tw-gradient-to:rgb(var(--warning)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/20:hover{--tw-gradient-to:rgb(var(--warning)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/25:hover{--tw-gradient-to:rgb(var(--warning)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/30:hover{--tw-gradient-to:rgb(var(--warning)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/40:hover{--tw-gradient-to:rgb(var(--warning)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/5:hover{--tw-gradient-to:rgb(var(--warning)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/50:hover{--tw-gradient-to:rgb(var(--warning)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/60:hover{--tw-gradient-to:rgb(var(--warning)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/70:hover{--tw-gradient-to:rgb(var(--warning)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/75:hover{--tw-gradient-to:rgb(var(--warning)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/80:hover{--tw-gradient-to:rgb(var(--warning)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/90:hover{--tw-gradient-to:rgb(var(--warning)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-warning\/95:hover{--tw-gradient-to:rgb(var(--warning)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white:hover{--tw-gradient-to:#fff var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/0:hover{--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/10:hover{--tw-gradient-to:hsla(0,0%,100%,.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/100:hover{--tw-gradient-to:#fff var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/20:hover{--tw-gradient-to:hsla(0,0%,100%,.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/25:hover{--tw-gradient-to:hsla(0,0%,100%,.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/30:hover{--tw-gradient-to:hsla(0,0%,100%,.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/40:hover{--tw-gradient-to:hsla(0,0%,100%,.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/5:hover{--tw-gradient-to:hsla(0,0%,100%,.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/50:hover{--tw-gradient-to:hsla(0,0%,100%,.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/60:hover{--tw-gradient-to:hsla(0,0%,100%,.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/70:hover{--tw-gradient-to:hsla(0,0%,100%,.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/75:hover{--tw-gradient-to:hsla(0,0%,100%,.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/80:hover{--tw-gradient-to:hsla(0,0%,100%,.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/90:hover{--tw-gradient-to:hsla(0,0%,100%,.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-white\/95:hover{--tw-gradient-to:hsla(0,0%,100%,.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted:hover{--tw-gradient-to:rgb(var(--whiteInverted)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/0:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/10:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/100:hover{--tw-gradient-to:rgb(var(--whiteInverted)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/20:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/25:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/30:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/40:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/5:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/50:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/60:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/70:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/75:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/80:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/90:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:to-whiteInverted\/95:hover{--tw-gradient-to:rgb(var(--whiteInverted)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.hover\:fill-backgroundPrimary:hover{fill:rgb(var(--backgroundPrimary))}.hover\:fill-backgroundPrimary\/0:hover{fill:rgb(var(--backgroundPrimary)/0)}.hover\:fill-backgroundPrimary\/10:hover{fill:rgb(var(--backgroundPrimary)/.1)}.hover\:fill-backgroundPrimary\/100:hover{fill:rgb(var(--backgroundPrimary)/1)}.hover\:fill-backgroundPrimary\/20:hover{fill:rgb(var(--backgroundPrimary)/.2)}.hover\:fill-backgroundPrimary\/25:hover{fill:rgb(var(--backgroundPrimary)/.25)}.hover\:fill-backgroundPrimary\/30:hover{fill:rgb(var(--backgroundPrimary)/.3)}.hover\:fill-backgroundPrimary\/40:hover{fill:rgb(var(--backgroundPrimary)/.4)}.hover\:fill-backgroundPrimary\/5:hover{fill:rgb(var(--backgroundPrimary)/.05)}.hover\:fill-backgroundPrimary\/50:hover{fill:rgb(var(--backgroundPrimary)/.5)}.hover\:fill-backgroundPrimary\/60:hover{fill:rgb(var(--backgroundPrimary)/.6)}.hover\:fill-backgroundPrimary\/70:hover{fill:rgb(var(--backgroundPrimary)/.7)}.hover\:fill-backgroundPrimary\/75:hover{fill:rgb(var(--backgroundPrimary)/.75)}.hover\:fill-backgroundPrimary\/80:hover{fill:rgb(var(--backgroundPrimary)/.8)}.hover\:fill-backgroundPrimary\/90:hover{fill:rgb(var(--backgroundPrimary)/.9)}.hover\:fill-backgroundPrimary\/95:hover{fill:rgb(var(--backgroundPrimary)/.95)}.hover\:fill-backgroundSecondary:hover{fill:rgb(var(--backgroundSecondary))}.hover\:fill-backgroundSecondary\/0:hover{fill:rgb(var(--backgroundSecondary)/0)}.hover\:fill-backgroundSecondary\/10:hover{fill:rgb(var(--backgroundSecondary)/.1)}.hover\:fill-backgroundSecondary\/100:hover{fill:rgb(var(--backgroundSecondary)/1)}.hover\:fill-backgroundSecondary\/20:hover{fill:rgb(var(--backgroundSecondary)/.2)}.hover\:fill-backgroundSecondary\/25:hover{fill:rgb(var(--backgroundSecondary)/.25)}.hover\:fill-backgroundSecondary\/30:hover{fill:rgb(var(--backgroundSecondary)/.3)}.hover\:fill-backgroundSecondary\/40:hover{fill:rgb(var(--backgroundSecondary)/.4)}.hover\:fill-backgroundSecondary\/5:hover{fill:rgb(var(--backgroundSecondary)/.05)}.hover\:fill-backgroundSecondary\/50:hover{fill:rgb(var(--backgroundSecondary)/.5)}.hover\:fill-backgroundSecondary\/60:hover{fill:rgb(var(--backgroundSecondary)/.6)}.hover\:fill-backgroundSecondary\/70:hover{fill:rgb(var(--backgroundSecondary)/.7)}.hover\:fill-backgroundSecondary\/75:hover{fill:rgb(var(--backgroundSecondary)/.75)}.hover\:fill-backgroundSecondary\/80:hover{fill:rgb(var(--backgroundSecondary)/.8)}.hover\:fill-backgroundSecondary\/90:hover{fill:rgb(var(--backgroundSecondary)/.9)}.hover\:fill-backgroundSecondary\/95:hover{fill:rgb(var(--backgroundSecondary)/.95)}.hover\:fill-black:hover{fill:#000}.hover\:fill-black\/0:hover{fill:transparent}.hover\:fill-black\/10:hover{fill:rgba(0,0,0,.1)}.hover\:fill-black\/100:hover{fill:#000}.hover\:fill-black\/20:hover{fill:rgba(0,0,0,.2)}.hover\:fill-black\/25:hover{fill:rgba(0,0,0,.25)}.hover\:fill-black\/30:hover{fill:rgba(0,0,0,.3)}.hover\:fill-black\/40:hover{fill:rgba(0,0,0,.4)}.hover\:fill-black\/5:hover{fill:rgba(0,0,0,.05)}.hover\:fill-black\/50:hover{fill:rgba(0,0,0,.5)}.hover\:fill-black\/60:hover{fill:rgba(0,0,0,.6)}.hover\:fill-black\/70:hover{fill:rgba(0,0,0,.7)}.hover\:fill-black\/75:hover{fill:rgba(0,0,0,.75)}.hover\:fill-black\/80:hover{fill:rgba(0,0,0,.8)}.hover\:fill-black\/90:hover{fill:rgba(0,0,0,.9)}.hover\:fill-black\/95:hover{fill:rgba(0,0,0,.95)}.hover\:fill-blackInverted:hover{fill:rgb(var(--blackInverted))}.hover\:fill-blackInverted\/0:hover{fill:rgb(var(--blackInverted)/0)}.hover\:fill-blackInverted\/10:hover{fill:rgb(var(--blackInverted)/.1)}.hover\:fill-blackInverted\/100:hover{fill:rgb(var(--blackInverted)/1)}.hover\:fill-blackInverted\/20:hover{fill:rgb(var(--blackInverted)/.2)}.hover\:fill-blackInverted\/25:hover{fill:rgb(var(--blackInverted)/.25)}.hover\:fill-blackInverted\/30:hover{fill:rgb(var(--blackInverted)/.3)}.hover\:fill-blackInverted\/40:hover{fill:rgb(var(--blackInverted)/.4)}.hover\:fill-blackInverted\/5:hover{fill:rgb(var(--blackInverted)/.05)}.hover\:fill-blackInverted\/50:hover{fill:rgb(var(--blackInverted)/.5)}.hover\:fill-blackInverted\/60:hover{fill:rgb(var(--blackInverted)/.6)}.hover\:fill-blackInverted\/70:hover{fill:rgb(var(--blackInverted)/.7)}.hover\:fill-blackInverted\/75:hover{fill:rgb(var(--blackInverted)/.75)}.hover\:fill-blackInverted\/80:hover{fill:rgb(var(--blackInverted)/.8)}.hover\:fill-blackInverted\/90:hover{fill:rgb(var(--blackInverted)/.9)}.hover\:fill-blackInverted\/95:hover{fill:rgb(var(--blackInverted)/.95)}.hover\:fill-blue-1\/0:hover{fill:rgb(var(--blue-1)/0)}.hover\:fill-blue-1\/10:hover{fill:rgb(var(--blue-1)/.1)}.hover\:fill-blue-1\/100:hover{fill:rgb(var(--blue-1)/1)}.hover\:fill-blue-1\/20:hover{fill:rgb(var(--blue-1)/.2)}.hover\:fill-blue-1\/25:hover{fill:rgb(var(--blue-1)/.25)}.hover\:fill-blue-1\/30:hover{fill:rgb(var(--blue-1)/.3)}.hover\:fill-blue-1\/40:hover{fill:rgb(var(--blue-1)/.4)}.hover\:fill-blue-1\/5:hover{fill:rgb(var(--blue-1)/.05)}.hover\:fill-blue-1\/50:hover{fill:rgb(var(--blue-1)/.5)}.hover\:fill-blue-1\/60:hover{fill:rgb(var(--blue-1)/.6)}.hover\:fill-blue-1\/70:hover{fill:rgb(var(--blue-1)/.7)}.hover\:fill-blue-1\/75:hover{fill:rgb(var(--blue-1)/.75)}.hover\:fill-blue-1\/80:hover{fill:rgb(var(--blue-1)/.8)}.hover\:fill-blue-1\/90:hover{fill:rgb(var(--blue-1)/.9)}.hover\:fill-blue-1\/95:hover{fill:rgb(var(--blue-1)/.95)}.hover\:fill-blue-10\/0:hover{fill:rgb(var(--blue-10)/0)}.hover\:fill-blue-10\/10:hover{fill:rgb(var(--blue-10)/.1)}.hover\:fill-blue-10\/100:hover{fill:rgb(var(--blue-10)/1)}.hover\:fill-blue-10\/20:hover{fill:rgb(var(--blue-10)/.2)}.hover\:fill-blue-10\/25:hover{fill:rgb(var(--blue-10)/.25)}.hover\:fill-blue-10\/30:hover{fill:rgb(var(--blue-10)/.3)}.hover\:fill-blue-10\/40:hover{fill:rgb(var(--blue-10)/.4)}.hover\:fill-blue-10\/5:hover{fill:rgb(var(--blue-10)/.05)}.hover\:fill-blue-10\/50:hover{fill:rgb(var(--blue-10)/.5)}.hover\:fill-blue-10\/60:hover{fill:rgb(var(--blue-10)/.6)}.hover\:fill-blue-10\/70:hover{fill:rgb(var(--blue-10)/.7)}.hover\:fill-blue-10\/75:hover{fill:rgb(var(--blue-10)/.75)}.hover\:fill-blue-10\/80:hover{fill:rgb(var(--blue-10)/.8)}.hover\:fill-blue-10\/90:hover{fill:rgb(var(--blue-10)/.9)}.hover\:fill-blue-10\/95:hover{fill:rgb(var(--blue-10)/.95)}.hover\:fill-blue-2\/0:hover{fill:rgb(var(--blue-2)/0)}.hover\:fill-blue-2\/10:hover{fill:rgb(var(--blue-2)/.1)}.hover\:fill-blue-2\/100:hover{fill:rgb(var(--blue-2)/1)}.hover\:fill-blue-2\/20:hover{fill:rgb(var(--blue-2)/.2)}.hover\:fill-blue-2\/25:hover{fill:rgb(var(--blue-2)/.25)}.hover\:fill-blue-2\/30:hover{fill:rgb(var(--blue-2)/.3)}.hover\:fill-blue-2\/40:hover{fill:rgb(var(--blue-2)/.4)}.hover\:fill-blue-2\/5:hover{fill:rgb(var(--blue-2)/.05)}.hover\:fill-blue-2\/50:hover{fill:rgb(var(--blue-2)/.5)}.hover\:fill-blue-2\/60:hover{fill:rgb(var(--blue-2)/.6)}.hover\:fill-blue-2\/70:hover{fill:rgb(var(--blue-2)/.7)}.hover\:fill-blue-2\/75:hover{fill:rgb(var(--blue-2)/.75)}.hover\:fill-blue-2\/80:hover{fill:rgb(var(--blue-2)/.8)}.hover\:fill-blue-2\/90:hover{fill:rgb(var(--blue-2)/.9)}.hover\:fill-blue-2\/95:hover{fill:rgb(var(--blue-2)/.95)}.hover\:fill-blue-3\/0:hover{fill:rgb(var(--blue-3)/0)}.hover\:fill-blue-3\/10:hover{fill:rgb(var(--blue-3)/.1)}.hover\:fill-blue-3\/100:hover{fill:rgb(var(--blue-3)/1)}.hover\:fill-blue-3\/20:hover{fill:rgb(var(--blue-3)/.2)}.hover\:fill-blue-3\/25:hover{fill:rgb(var(--blue-3)/.25)}.hover\:fill-blue-3\/30:hover{fill:rgb(var(--blue-3)/.3)}.hover\:fill-blue-3\/40:hover{fill:rgb(var(--blue-3)/.4)}.hover\:fill-blue-3\/5:hover{fill:rgb(var(--blue-3)/.05)}.hover\:fill-blue-3\/50:hover{fill:rgb(var(--blue-3)/.5)}.hover\:fill-blue-3\/60:hover{fill:rgb(var(--blue-3)/.6)}.hover\:fill-blue-3\/70:hover{fill:rgb(var(--blue-3)/.7)}.hover\:fill-blue-3\/75:hover{fill:rgb(var(--blue-3)/.75)}.hover\:fill-blue-3\/80:hover{fill:rgb(var(--blue-3)/.8)}.hover\:fill-blue-3\/90:hover{fill:rgb(var(--blue-3)/.9)}.hover\:fill-blue-3\/95:hover{fill:rgb(var(--blue-3)/.95)}.hover\:fill-blue-4\/0:hover{fill:rgb(var(--blue-4)/0)}.hover\:fill-blue-4\/10:hover{fill:rgb(var(--blue-4)/.1)}.hover\:fill-blue-4\/100:hover{fill:rgb(var(--blue-4)/1)}.hover\:fill-blue-4\/20:hover{fill:rgb(var(--blue-4)/.2)}.hover\:fill-blue-4\/25:hover{fill:rgb(var(--blue-4)/.25)}.hover\:fill-blue-4\/30:hover{fill:rgb(var(--blue-4)/.3)}.hover\:fill-blue-4\/40:hover{fill:rgb(var(--blue-4)/.4)}.hover\:fill-blue-4\/5:hover{fill:rgb(var(--blue-4)/.05)}.hover\:fill-blue-4\/50:hover{fill:rgb(var(--blue-4)/.5)}.hover\:fill-blue-4\/60:hover{fill:rgb(var(--blue-4)/.6)}.hover\:fill-blue-4\/70:hover{fill:rgb(var(--blue-4)/.7)}.hover\:fill-blue-4\/75:hover{fill:rgb(var(--blue-4)/.75)}.hover\:fill-blue-4\/80:hover{fill:rgb(var(--blue-4)/.8)}.hover\:fill-blue-4\/90:hover{fill:rgb(var(--blue-4)/.9)}.hover\:fill-blue-4\/95:hover{fill:rgb(var(--blue-4)/.95)}.hover\:fill-blue-5\/0:hover{fill:rgb(var(--blue-5)/0)}.hover\:fill-blue-5\/10:hover{fill:rgb(var(--blue-5)/.1)}.hover\:fill-blue-5\/100:hover{fill:rgb(var(--blue-5)/1)}.hover\:fill-blue-5\/20:hover{fill:rgb(var(--blue-5)/.2)}.hover\:fill-blue-5\/25:hover{fill:rgb(var(--blue-5)/.25)}.hover\:fill-blue-5\/30:hover{fill:rgb(var(--blue-5)/.3)}.hover\:fill-blue-5\/40:hover{fill:rgb(var(--blue-5)/.4)}.hover\:fill-blue-5\/5:hover{fill:rgb(var(--blue-5)/.05)}.hover\:fill-blue-5\/50:hover{fill:rgb(var(--blue-5)/.5)}.hover\:fill-blue-5\/60:hover{fill:rgb(var(--blue-5)/.6)}.hover\:fill-blue-5\/70:hover{fill:rgb(var(--blue-5)/.7)}.hover\:fill-blue-5\/75:hover{fill:rgb(var(--blue-5)/.75)}.hover\:fill-blue-5\/80:hover{fill:rgb(var(--blue-5)/.8)}.hover\:fill-blue-5\/90:hover{fill:rgb(var(--blue-5)/.9)}.hover\:fill-blue-5\/95:hover{fill:rgb(var(--blue-5)/.95)}.hover\:fill-blue-6\/0:hover{fill:rgb(var(--blue-6)/0)}.hover\:fill-blue-6\/10:hover{fill:rgb(var(--blue-6)/.1)}.hover\:fill-blue-6\/100:hover{fill:rgb(var(--blue-6)/1)}.hover\:fill-blue-6\/20:hover{fill:rgb(var(--blue-6)/.2)}.hover\:fill-blue-6\/25:hover{fill:rgb(var(--blue-6)/.25)}.hover\:fill-blue-6\/30:hover{fill:rgb(var(--blue-6)/.3)}.hover\:fill-blue-6\/40:hover{fill:rgb(var(--blue-6)/.4)}.hover\:fill-blue-6\/5:hover{fill:rgb(var(--blue-6)/.05)}.hover\:fill-blue-6\/50:hover{fill:rgb(var(--blue-6)/.5)}.hover\:fill-blue-6\/60:hover{fill:rgb(var(--blue-6)/.6)}.hover\:fill-blue-6\/70:hover{fill:rgb(var(--blue-6)/.7)}.hover\:fill-blue-6\/75:hover{fill:rgb(var(--blue-6)/.75)}.hover\:fill-blue-6\/80:hover{fill:rgb(var(--blue-6)/.8)}.hover\:fill-blue-6\/90:hover{fill:rgb(var(--blue-6)/.9)}.hover\:fill-blue-6\/95:hover{fill:rgb(var(--blue-6)/.95)}.hover\:fill-blue-7\/0:hover{fill:rgb(var(--blue-7)/0)}.hover\:fill-blue-7\/10:hover{fill:rgb(var(--blue-7)/.1)}.hover\:fill-blue-7\/100:hover{fill:rgb(var(--blue-7)/1)}.hover\:fill-blue-7\/20:hover{fill:rgb(var(--blue-7)/.2)}.hover\:fill-blue-7\/25:hover{fill:rgb(var(--blue-7)/.25)}.hover\:fill-blue-7\/30:hover{fill:rgb(var(--blue-7)/.3)}.hover\:fill-blue-7\/40:hover{fill:rgb(var(--blue-7)/.4)}.hover\:fill-blue-7\/5:hover{fill:rgb(var(--blue-7)/.05)}.hover\:fill-blue-7\/50:hover{fill:rgb(var(--blue-7)/.5)}.hover\:fill-blue-7\/60:hover{fill:rgb(var(--blue-7)/.6)}.hover\:fill-blue-7\/70:hover{fill:rgb(var(--blue-7)/.7)}.hover\:fill-blue-7\/75:hover{fill:rgb(var(--blue-7)/.75)}.hover\:fill-blue-7\/80:hover{fill:rgb(var(--blue-7)/.8)}.hover\:fill-blue-7\/90:hover{fill:rgb(var(--blue-7)/.9)}.hover\:fill-blue-7\/95:hover{fill:rgb(var(--blue-7)/.95)}.hover\:fill-blue-8\/0:hover{fill:rgb(var(--blue-8)/0)}.hover\:fill-blue-8\/10:hover{fill:rgb(var(--blue-8)/.1)}.hover\:fill-blue-8\/100:hover{fill:rgb(var(--blue-8)/1)}.hover\:fill-blue-8\/20:hover{fill:rgb(var(--blue-8)/.2)}.hover\:fill-blue-8\/25:hover{fill:rgb(var(--blue-8)/.25)}.hover\:fill-blue-8\/30:hover{fill:rgb(var(--blue-8)/.3)}.hover\:fill-blue-8\/40:hover{fill:rgb(var(--blue-8)/.4)}.hover\:fill-blue-8\/5:hover{fill:rgb(var(--blue-8)/.05)}.hover\:fill-blue-8\/50:hover{fill:rgb(var(--blue-8)/.5)}.hover\:fill-blue-8\/60:hover{fill:rgb(var(--blue-8)/.6)}.hover\:fill-blue-8\/70:hover{fill:rgb(var(--blue-8)/.7)}.hover\:fill-blue-8\/75:hover{fill:rgb(var(--blue-8)/.75)}.hover\:fill-blue-8\/80:hover{fill:rgb(var(--blue-8)/.8)}.hover\:fill-blue-8\/90:hover{fill:rgb(var(--blue-8)/.9)}.hover\:fill-blue-8\/95:hover{fill:rgb(var(--blue-8)/.95)}.hover\:fill-blue-9\/0:hover{fill:rgb(var(--blue-9)/0)}.hover\:fill-blue-9\/10:hover{fill:rgb(var(--blue-9)/.1)}.hover\:fill-blue-9\/100:hover{fill:rgb(var(--blue-9)/1)}.hover\:fill-blue-9\/20:hover{fill:rgb(var(--blue-9)/.2)}.hover\:fill-blue-9\/25:hover{fill:rgb(var(--blue-9)/.25)}.hover\:fill-blue-9\/30:hover{fill:rgb(var(--blue-9)/.3)}.hover\:fill-blue-9\/40:hover{fill:rgb(var(--blue-9)/.4)}.hover\:fill-blue-9\/5:hover{fill:rgb(var(--blue-9)/.05)}.hover\:fill-blue-9\/50:hover{fill:rgb(var(--blue-9)/.5)}.hover\:fill-blue-9\/60:hover{fill:rgb(var(--blue-9)/.6)}.hover\:fill-blue-9\/70:hover{fill:rgb(var(--blue-9)/.7)}.hover\:fill-blue-9\/75:hover{fill:rgb(var(--blue-9)/.75)}.hover\:fill-blue-9\/80:hover{fill:rgb(var(--blue-9)/.8)}.hover\:fill-blue-9\/90:hover{fill:rgb(var(--blue-9)/.9)}.hover\:fill-blue-9\/95:hover{fill:rgb(var(--blue-9)/.95)}.hover\:fill-border:hover{fill:rgb(var(--border))}.hover\:fill-border\/0:hover{fill:rgb(var(--border)/0)}.hover\:fill-border\/10:hover{fill:rgb(var(--border)/.1)}.hover\:fill-border\/100:hover{fill:rgb(var(--border)/1)}.hover\:fill-border\/20:hover{fill:rgb(var(--border)/.2)}.hover\:fill-border\/25:hover{fill:rgb(var(--border)/.25)}.hover\:fill-border\/30:hover{fill:rgb(var(--border)/.3)}.hover\:fill-border\/40:hover{fill:rgb(var(--border)/.4)}.hover\:fill-border\/5:hover{fill:rgb(var(--border)/.05)}.hover\:fill-border\/50:hover{fill:rgb(var(--border)/.5)}.hover\:fill-border\/60:hover{fill:rgb(var(--border)/.6)}.hover\:fill-border\/70:hover{fill:rgb(var(--border)/.7)}.hover\:fill-border\/75:hover{fill:rgb(var(--border)/.75)}.hover\:fill-border\/80:hover{fill:rgb(var(--border)/.8)}.hover\:fill-border\/90:hover{fill:rgb(var(--border)/.9)}.hover\:fill-border\/95:hover{fill:rgb(var(--border)/.95)}.hover\:fill-content1:hover{fill:rgb(var(--content1))}.hover\:fill-content1\/0:hover{fill:rgb(var(--content1)/0)}.hover\:fill-content1\/10:hover{fill:rgb(var(--content1)/.1)}.hover\:fill-content1\/100:hover{fill:rgb(var(--content1)/1)}.hover\:fill-content1\/20:hover{fill:rgb(var(--content1)/.2)}.hover\:fill-content1\/25:hover{fill:rgb(var(--content1)/.25)}.hover\:fill-content1\/30:hover{fill:rgb(var(--content1)/.3)}.hover\:fill-content1\/40:hover{fill:rgb(var(--content1)/.4)}.hover\:fill-content1\/5:hover{fill:rgb(var(--content1)/.05)}.hover\:fill-content1\/50:hover{fill:rgb(var(--content1)/.5)}.hover\:fill-content1\/60:hover{fill:rgb(var(--content1)/.6)}.hover\:fill-content1\/70:hover{fill:rgb(var(--content1)/.7)}.hover\:fill-content1\/75:hover{fill:rgb(var(--content1)/.75)}.hover\:fill-content1\/80:hover{fill:rgb(var(--content1)/.8)}.hover\:fill-content1\/90:hover{fill:rgb(var(--content1)/.9)}.hover\:fill-content1\/95:hover{fill:rgb(var(--content1)/.95)}.hover\:fill-content2:hover{fill:rgb(var(--content2))}.hover\:fill-content2\/0:hover{fill:rgb(var(--content2)/0)}.hover\:fill-content2\/10:hover{fill:rgb(var(--content2)/.1)}.hover\:fill-content2\/100:hover{fill:rgb(var(--content2)/1)}.hover\:fill-content2\/20:hover{fill:rgb(var(--content2)/.2)}.hover\:fill-content2\/25:hover{fill:rgb(var(--content2)/.25)}.hover\:fill-content2\/30:hover{fill:rgb(var(--content2)/.3)}.hover\:fill-content2\/40:hover{fill:rgb(var(--content2)/.4)}.hover\:fill-content2\/5:hover{fill:rgb(var(--content2)/.05)}.hover\:fill-content2\/50:hover{fill:rgb(var(--content2)/.5)}.hover\:fill-content2\/60:hover{fill:rgb(var(--content2)/.6)}.hover\:fill-content2\/70:hover{fill:rgb(var(--content2)/.7)}.hover\:fill-content2\/75:hover{fill:rgb(var(--content2)/.75)}.hover\:fill-content2\/80:hover{fill:rgb(var(--content2)/.8)}.hover\:fill-content2\/90:hover{fill:rgb(var(--content2)/.9)}.hover\:fill-content2\/95:hover{fill:rgb(var(--content2)/.95)}.hover\:fill-content3:hover{fill:rgb(var(--content3))}.hover\:fill-content3\/0:hover{fill:rgb(var(--content3)/0)}.hover\:fill-content3\/10:hover{fill:rgb(var(--content3)/.1)}.hover\:fill-content3\/100:hover{fill:rgb(var(--content3)/1)}.hover\:fill-content3\/20:hover{fill:rgb(var(--content3)/.2)}.hover\:fill-content3\/25:hover{fill:rgb(var(--content3)/.25)}.hover\:fill-content3\/30:hover{fill:rgb(var(--content3)/.3)}.hover\:fill-content3\/40:hover{fill:rgb(var(--content3)/.4)}.hover\:fill-content3\/5:hover{fill:rgb(var(--content3)/.05)}.hover\:fill-content3\/50:hover{fill:rgb(var(--content3)/.5)}.hover\:fill-content3\/60:hover{fill:rgb(var(--content3)/.6)}.hover\:fill-content3\/70:hover{fill:rgb(var(--content3)/.7)}.hover\:fill-content3\/75:hover{fill:rgb(var(--content3)/.75)}.hover\:fill-content3\/80:hover{fill:rgb(var(--content3)/.8)}.hover\:fill-content3\/90:hover{fill:rgb(var(--content3)/.9)}.hover\:fill-content3\/95:hover{fill:rgb(var(--content3)/.95)}.hover\:fill-cyan-1\/0:hover{fill:rgb(var(--cyan-1)/0)}.hover\:fill-cyan-1\/10:hover{fill:rgb(var(--cyan-1)/.1)}.hover\:fill-cyan-1\/100:hover{fill:rgb(var(--cyan-1)/1)}.hover\:fill-cyan-1\/20:hover{fill:rgb(var(--cyan-1)/.2)}.hover\:fill-cyan-1\/25:hover{fill:rgb(var(--cyan-1)/.25)}.hover\:fill-cyan-1\/30:hover{fill:rgb(var(--cyan-1)/.3)}.hover\:fill-cyan-1\/40:hover{fill:rgb(var(--cyan-1)/.4)}.hover\:fill-cyan-1\/5:hover{fill:rgb(var(--cyan-1)/.05)}.hover\:fill-cyan-1\/50:hover{fill:rgb(var(--cyan-1)/.5)}.hover\:fill-cyan-1\/60:hover{fill:rgb(var(--cyan-1)/.6)}.hover\:fill-cyan-1\/70:hover{fill:rgb(var(--cyan-1)/.7)}.hover\:fill-cyan-1\/75:hover{fill:rgb(var(--cyan-1)/.75)}.hover\:fill-cyan-1\/80:hover{fill:rgb(var(--cyan-1)/.8)}.hover\:fill-cyan-1\/90:hover{fill:rgb(var(--cyan-1)/.9)}.hover\:fill-cyan-1\/95:hover{fill:rgb(var(--cyan-1)/.95)}.hover\:fill-cyan-10\/0:hover{fill:rgb(var(--cyan-10)/0)}.hover\:fill-cyan-10\/10:hover{fill:rgb(var(--cyan-10)/.1)}.hover\:fill-cyan-10\/100:hover{fill:rgb(var(--cyan-10)/1)}.hover\:fill-cyan-10\/20:hover{fill:rgb(var(--cyan-10)/.2)}.hover\:fill-cyan-10\/25:hover{fill:rgb(var(--cyan-10)/.25)}.hover\:fill-cyan-10\/30:hover{fill:rgb(var(--cyan-10)/.3)}.hover\:fill-cyan-10\/40:hover{fill:rgb(var(--cyan-10)/.4)}.hover\:fill-cyan-10\/5:hover{fill:rgb(var(--cyan-10)/.05)}.hover\:fill-cyan-10\/50:hover{fill:rgb(var(--cyan-10)/.5)}.hover\:fill-cyan-10\/60:hover{fill:rgb(var(--cyan-10)/.6)}.hover\:fill-cyan-10\/70:hover{fill:rgb(var(--cyan-10)/.7)}.hover\:fill-cyan-10\/75:hover{fill:rgb(var(--cyan-10)/.75)}.hover\:fill-cyan-10\/80:hover{fill:rgb(var(--cyan-10)/.8)}.hover\:fill-cyan-10\/90:hover{fill:rgb(var(--cyan-10)/.9)}.hover\:fill-cyan-10\/95:hover{fill:rgb(var(--cyan-10)/.95)}.hover\:fill-cyan-2\/0:hover{fill:rgb(var(--cyan-2)/0)}.hover\:fill-cyan-2\/10:hover{fill:rgb(var(--cyan-2)/.1)}.hover\:fill-cyan-2\/100:hover{fill:rgb(var(--cyan-2)/1)}.hover\:fill-cyan-2\/20:hover{fill:rgb(var(--cyan-2)/.2)}.hover\:fill-cyan-2\/25:hover{fill:rgb(var(--cyan-2)/.25)}.hover\:fill-cyan-2\/30:hover{fill:rgb(var(--cyan-2)/.3)}.hover\:fill-cyan-2\/40:hover{fill:rgb(var(--cyan-2)/.4)}.hover\:fill-cyan-2\/5:hover{fill:rgb(var(--cyan-2)/.05)}.hover\:fill-cyan-2\/50:hover{fill:rgb(var(--cyan-2)/.5)}.hover\:fill-cyan-2\/60:hover{fill:rgb(var(--cyan-2)/.6)}.hover\:fill-cyan-2\/70:hover{fill:rgb(var(--cyan-2)/.7)}.hover\:fill-cyan-2\/75:hover{fill:rgb(var(--cyan-2)/.75)}.hover\:fill-cyan-2\/80:hover{fill:rgb(var(--cyan-2)/.8)}.hover\:fill-cyan-2\/90:hover{fill:rgb(var(--cyan-2)/.9)}.hover\:fill-cyan-2\/95:hover{fill:rgb(var(--cyan-2)/.95)}.hover\:fill-cyan-3\/0:hover{fill:rgb(var(--cyan-3)/0)}.hover\:fill-cyan-3\/10:hover{fill:rgb(var(--cyan-3)/.1)}.hover\:fill-cyan-3\/100:hover{fill:rgb(var(--cyan-3)/1)}.hover\:fill-cyan-3\/20:hover{fill:rgb(var(--cyan-3)/.2)}.hover\:fill-cyan-3\/25:hover{fill:rgb(var(--cyan-3)/.25)}.hover\:fill-cyan-3\/30:hover{fill:rgb(var(--cyan-3)/.3)}.hover\:fill-cyan-3\/40:hover{fill:rgb(var(--cyan-3)/.4)}.hover\:fill-cyan-3\/5:hover{fill:rgb(var(--cyan-3)/.05)}.hover\:fill-cyan-3\/50:hover{fill:rgb(var(--cyan-3)/.5)}.hover\:fill-cyan-3\/60:hover{fill:rgb(var(--cyan-3)/.6)}.hover\:fill-cyan-3\/70:hover{fill:rgb(var(--cyan-3)/.7)}.hover\:fill-cyan-3\/75:hover{fill:rgb(var(--cyan-3)/.75)}.hover\:fill-cyan-3\/80:hover{fill:rgb(var(--cyan-3)/.8)}.hover\:fill-cyan-3\/90:hover{fill:rgb(var(--cyan-3)/.9)}.hover\:fill-cyan-3\/95:hover{fill:rgb(var(--cyan-3)/.95)}.hover\:fill-cyan-4\/0:hover{fill:rgb(var(--cyan-4)/0)}.hover\:fill-cyan-4\/10:hover{fill:rgb(var(--cyan-4)/.1)}.hover\:fill-cyan-4\/100:hover{fill:rgb(var(--cyan-4)/1)}.hover\:fill-cyan-4\/20:hover{fill:rgb(var(--cyan-4)/.2)}.hover\:fill-cyan-4\/25:hover{fill:rgb(var(--cyan-4)/.25)}.hover\:fill-cyan-4\/30:hover{fill:rgb(var(--cyan-4)/.3)}.hover\:fill-cyan-4\/40:hover{fill:rgb(var(--cyan-4)/.4)}.hover\:fill-cyan-4\/5:hover{fill:rgb(var(--cyan-4)/.05)}.hover\:fill-cyan-4\/50:hover{fill:rgb(var(--cyan-4)/.5)}.hover\:fill-cyan-4\/60:hover{fill:rgb(var(--cyan-4)/.6)}.hover\:fill-cyan-4\/70:hover{fill:rgb(var(--cyan-4)/.7)}.hover\:fill-cyan-4\/75:hover{fill:rgb(var(--cyan-4)/.75)}.hover\:fill-cyan-4\/80:hover{fill:rgb(var(--cyan-4)/.8)}.hover\:fill-cyan-4\/90:hover{fill:rgb(var(--cyan-4)/.9)}.hover\:fill-cyan-4\/95:hover{fill:rgb(var(--cyan-4)/.95)}.hover\:fill-cyan-5\/0:hover{fill:rgb(var(--cyan-5)/0)}.hover\:fill-cyan-5\/10:hover{fill:rgb(var(--cyan-5)/.1)}.hover\:fill-cyan-5\/100:hover{fill:rgb(var(--cyan-5)/1)}.hover\:fill-cyan-5\/20:hover{fill:rgb(var(--cyan-5)/.2)}.hover\:fill-cyan-5\/25:hover{fill:rgb(var(--cyan-5)/.25)}.hover\:fill-cyan-5\/30:hover{fill:rgb(var(--cyan-5)/.3)}.hover\:fill-cyan-5\/40:hover{fill:rgb(var(--cyan-5)/.4)}.hover\:fill-cyan-5\/5:hover{fill:rgb(var(--cyan-5)/.05)}.hover\:fill-cyan-5\/50:hover{fill:rgb(var(--cyan-5)/.5)}.hover\:fill-cyan-5\/60:hover{fill:rgb(var(--cyan-5)/.6)}.hover\:fill-cyan-5\/70:hover{fill:rgb(var(--cyan-5)/.7)}.hover\:fill-cyan-5\/75:hover{fill:rgb(var(--cyan-5)/.75)}.hover\:fill-cyan-5\/80:hover{fill:rgb(var(--cyan-5)/.8)}.hover\:fill-cyan-5\/90:hover{fill:rgb(var(--cyan-5)/.9)}.hover\:fill-cyan-5\/95:hover{fill:rgb(var(--cyan-5)/.95)}.hover\:fill-cyan-6\/0:hover{fill:rgb(var(--cyan-6)/0)}.hover\:fill-cyan-6\/10:hover{fill:rgb(var(--cyan-6)/.1)}.hover\:fill-cyan-6\/100:hover{fill:rgb(var(--cyan-6)/1)}.hover\:fill-cyan-6\/20:hover{fill:rgb(var(--cyan-6)/.2)}.hover\:fill-cyan-6\/25:hover{fill:rgb(var(--cyan-6)/.25)}.hover\:fill-cyan-6\/30:hover{fill:rgb(var(--cyan-6)/.3)}.hover\:fill-cyan-6\/40:hover{fill:rgb(var(--cyan-6)/.4)}.hover\:fill-cyan-6\/5:hover{fill:rgb(var(--cyan-6)/.05)}.hover\:fill-cyan-6\/50:hover{fill:rgb(var(--cyan-6)/.5)}.hover\:fill-cyan-6\/60:hover{fill:rgb(var(--cyan-6)/.6)}.hover\:fill-cyan-6\/70:hover{fill:rgb(var(--cyan-6)/.7)}.hover\:fill-cyan-6\/75:hover{fill:rgb(var(--cyan-6)/.75)}.hover\:fill-cyan-6\/80:hover{fill:rgb(var(--cyan-6)/.8)}.hover\:fill-cyan-6\/90:hover{fill:rgb(var(--cyan-6)/.9)}.hover\:fill-cyan-6\/95:hover{fill:rgb(var(--cyan-6)/.95)}.hover\:fill-cyan-7\/0:hover{fill:rgb(var(--cyan-7)/0)}.hover\:fill-cyan-7\/10:hover{fill:rgb(var(--cyan-7)/.1)}.hover\:fill-cyan-7\/100:hover{fill:rgb(var(--cyan-7)/1)}.hover\:fill-cyan-7\/20:hover{fill:rgb(var(--cyan-7)/.2)}.hover\:fill-cyan-7\/25:hover{fill:rgb(var(--cyan-7)/.25)}.hover\:fill-cyan-7\/30:hover{fill:rgb(var(--cyan-7)/.3)}.hover\:fill-cyan-7\/40:hover{fill:rgb(var(--cyan-7)/.4)}.hover\:fill-cyan-7\/5:hover{fill:rgb(var(--cyan-7)/.05)}.hover\:fill-cyan-7\/50:hover{fill:rgb(var(--cyan-7)/.5)}.hover\:fill-cyan-7\/60:hover{fill:rgb(var(--cyan-7)/.6)}.hover\:fill-cyan-7\/70:hover{fill:rgb(var(--cyan-7)/.7)}.hover\:fill-cyan-7\/75:hover{fill:rgb(var(--cyan-7)/.75)}.hover\:fill-cyan-7\/80:hover{fill:rgb(var(--cyan-7)/.8)}.hover\:fill-cyan-7\/90:hover{fill:rgb(var(--cyan-7)/.9)}.hover\:fill-cyan-7\/95:hover{fill:rgb(var(--cyan-7)/.95)}.hover\:fill-cyan-8\/0:hover{fill:rgb(var(--cyan-8)/0)}.hover\:fill-cyan-8\/10:hover{fill:rgb(var(--cyan-8)/.1)}.hover\:fill-cyan-8\/100:hover{fill:rgb(var(--cyan-8)/1)}.hover\:fill-cyan-8\/20:hover{fill:rgb(var(--cyan-8)/.2)}.hover\:fill-cyan-8\/25:hover{fill:rgb(var(--cyan-8)/.25)}.hover\:fill-cyan-8\/30:hover{fill:rgb(var(--cyan-8)/.3)}.hover\:fill-cyan-8\/40:hover{fill:rgb(var(--cyan-8)/.4)}.hover\:fill-cyan-8\/5:hover{fill:rgb(var(--cyan-8)/.05)}.hover\:fill-cyan-8\/50:hover{fill:rgb(var(--cyan-8)/.5)}.hover\:fill-cyan-8\/60:hover{fill:rgb(var(--cyan-8)/.6)}.hover\:fill-cyan-8\/70:hover{fill:rgb(var(--cyan-8)/.7)}.hover\:fill-cyan-8\/75:hover{fill:rgb(var(--cyan-8)/.75)}.hover\:fill-cyan-8\/80:hover{fill:rgb(var(--cyan-8)/.8)}.hover\:fill-cyan-8\/90:hover{fill:rgb(var(--cyan-8)/.9)}.hover\:fill-cyan-8\/95:hover{fill:rgb(var(--cyan-8)/.95)}.hover\:fill-cyan-9\/0:hover{fill:rgb(var(--cyan-9)/0)}.hover\:fill-cyan-9\/10:hover{fill:rgb(var(--cyan-9)/.1)}.hover\:fill-cyan-9\/100:hover{fill:rgb(var(--cyan-9)/1)}.hover\:fill-cyan-9\/20:hover{fill:rgb(var(--cyan-9)/.2)}.hover\:fill-cyan-9\/25:hover{fill:rgb(var(--cyan-9)/.25)}.hover\:fill-cyan-9\/30:hover{fill:rgb(var(--cyan-9)/.3)}.hover\:fill-cyan-9\/40:hover{fill:rgb(var(--cyan-9)/.4)}.hover\:fill-cyan-9\/5:hover{fill:rgb(var(--cyan-9)/.05)}.hover\:fill-cyan-9\/50:hover{fill:rgb(var(--cyan-9)/.5)}.hover\:fill-cyan-9\/60:hover{fill:rgb(var(--cyan-9)/.6)}.hover\:fill-cyan-9\/70:hover{fill:rgb(var(--cyan-9)/.7)}.hover\:fill-cyan-9\/75:hover{fill:rgb(var(--cyan-9)/.75)}.hover\:fill-cyan-9\/80:hover{fill:rgb(var(--cyan-9)/.8)}.hover\:fill-cyan-9\/90:hover{fill:rgb(var(--cyan-9)/.9)}.hover\:fill-cyan-9\/95:hover{fill:rgb(var(--cyan-9)/.95)}.hover\:fill-error:hover{fill:rgb(var(--error))}.hover\:fill-error\/0:hover{fill:rgb(var(--error)/0)}.hover\:fill-error\/10:hover{fill:rgb(var(--error)/.1)}.hover\:fill-error\/100:hover{fill:rgb(var(--error)/1)}.hover\:fill-error\/20:hover{fill:rgb(var(--error)/.2)}.hover\:fill-error\/25:hover{fill:rgb(var(--error)/.25)}.hover\:fill-error\/30:hover{fill:rgb(var(--error)/.3)}.hover\:fill-error\/40:hover{fill:rgb(var(--error)/.4)}.hover\:fill-error\/5:hover{fill:rgb(var(--error)/.05)}.hover\:fill-error\/50:hover{fill:rgb(var(--error)/.5)}.hover\:fill-error\/60:hover{fill:rgb(var(--error)/.6)}.hover\:fill-error\/70:hover{fill:rgb(var(--error)/.7)}.hover\:fill-error\/75:hover{fill:rgb(var(--error)/.75)}.hover\:fill-error\/80:hover{fill:rgb(var(--error)/.8)}.hover\:fill-error\/90:hover{fill:rgb(var(--error)/.9)}.hover\:fill-error\/95:hover{fill:rgb(var(--error)/.95)}.hover\:fill-gray-1\/0:hover{fill:rgb(var(--gray-1)/0)}.hover\:fill-gray-1\/10:hover{fill:rgb(var(--gray-1)/.1)}.hover\:fill-gray-1\/100:hover{fill:rgb(var(--gray-1)/1)}.hover\:fill-gray-1\/20:hover{fill:rgb(var(--gray-1)/.2)}.hover\:fill-gray-1\/25:hover{fill:rgb(var(--gray-1)/.25)}.hover\:fill-gray-1\/30:hover{fill:rgb(var(--gray-1)/.3)}.hover\:fill-gray-1\/40:hover{fill:rgb(var(--gray-1)/.4)}.hover\:fill-gray-1\/5:hover{fill:rgb(var(--gray-1)/.05)}.hover\:fill-gray-1\/50:hover{fill:rgb(var(--gray-1)/.5)}.hover\:fill-gray-1\/60:hover{fill:rgb(var(--gray-1)/.6)}.hover\:fill-gray-1\/70:hover{fill:rgb(var(--gray-1)/.7)}.hover\:fill-gray-1\/75:hover{fill:rgb(var(--gray-1)/.75)}.hover\:fill-gray-1\/80:hover{fill:rgb(var(--gray-1)/.8)}.hover\:fill-gray-1\/90:hover{fill:rgb(var(--gray-1)/.9)}.hover\:fill-gray-1\/95:hover{fill:rgb(var(--gray-1)/.95)}.hover\:fill-gray-10\/0:hover{fill:rgb(var(--gray-10)/0)}.hover\:fill-gray-10\/10:hover{fill:rgb(var(--gray-10)/.1)}.hover\:fill-gray-10\/100:hover{fill:rgb(var(--gray-10)/1)}.hover\:fill-gray-10\/20:hover{fill:rgb(var(--gray-10)/.2)}.hover\:fill-gray-10\/25:hover{fill:rgb(var(--gray-10)/.25)}.hover\:fill-gray-10\/30:hover{fill:rgb(var(--gray-10)/.3)}.hover\:fill-gray-10\/40:hover{fill:rgb(var(--gray-10)/.4)}.hover\:fill-gray-10\/5:hover{fill:rgb(var(--gray-10)/.05)}.hover\:fill-gray-10\/50:hover{fill:rgb(var(--gray-10)/.5)}.hover\:fill-gray-10\/60:hover{fill:rgb(var(--gray-10)/.6)}.hover\:fill-gray-10\/70:hover{fill:rgb(var(--gray-10)/.7)}.hover\:fill-gray-10\/75:hover{fill:rgb(var(--gray-10)/.75)}.hover\:fill-gray-10\/80:hover{fill:rgb(var(--gray-10)/.8)}.hover\:fill-gray-10\/90:hover{fill:rgb(var(--gray-10)/.9)}.hover\:fill-gray-10\/95:hover{fill:rgb(var(--gray-10)/.95)}.hover\:fill-gray-2\/0:hover{fill:rgb(var(--gray-2)/0)}.hover\:fill-gray-2\/10:hover{fill:rgb(var(--gray-2)/.1)}.hover\:fill-gray-2\/100:hover{fill:rgb(var(--gray-2)/1)}.hover\:fill-gray-2\/20:hover{fill:rgb(var(--gray-2)/.2)}.hover\:fill-gray-2\/25:hover{fill:rgb(var(--gray-2)/.25)}.hover\:fill-gray-2\/30:hover{fill:rgb(var(--gray-2)/.3)}.hover\:fill-gray-2\/40:hover{fill:rgb(var(--gray-2)/.4)}.hover\:fill-gray-2\/5:hover{fill:rgb(var(--gray-2)/.05)}.hover\:fill-gray-2\/50:hover{fill:rgb(var(--gray-2)/.5)}.hover\:fill-gray-2\/60:hover{fill:rgb(var(--gray-2)/.6)}.hover\:fill-gray-2\/70:hover{fill:rgb(var(--gray-2)/.7)}.hover\:fill-gray-2\/75:hover{fill:rgb(var(--gray-2)/.75)}.hover\:fill-gray-2\/80:hover{fill:rgb(var(--gray-2)/.8)}.hover\:fill-gray-2\/90:hover{fill:rgb(var(--gray-2)/.9)}.hover\:fill-gray-2\/95:hover{fill:rgb(var(--gray-2)/.95)}.hover\:fill-gray-3\/0:hover{fill:rgb(var(--gray-3)/0)}.hover\:fill-gray-3\/10:hover{fill:rgb(var(--gray-3)/.1)}.hover\:fill-gray-3\/100:hover{fill:rgb(var(--gray-3)/1)}.hover\:fill-gray-3\/20:hover{fill:rgb(var(--gray-3)/.2)}.hover\:fill-gray-3\/25:hover{fill:rgb(var(--gray-3)/.25)}.hover\:fill-gray-3\/30:hover{fill:rgb(var(--gray-3)/.3)}.hover\:fill-gray-3\/40:hover{fill:rgb(var(--gray-3)/.4)}.hover\:fill-gray-3\/5:hover{fill:rgb(var(--gray-3)/.05)}.hover\:fill-gray-3\/50:hover{fill:rgb(var(--gray-3)/.5)}.hover\:fill-gray-3\/60:hover{fill:rgb(var(--gray-3)/.6)}.hover\:fill-gray-3\/70:hover{fill:rgb(var(--gray-3)/.7)}.hover\:fill-gray-3\/75:hover{fill:rgb(var(--gray-3)/.75)}.hover\:fill-gray-3\/80:hover{fill:rgb(var(--gray-3)/.8)}.hover\:fill-gray-3\/90:hover{fill:rgb(var(--gray-3)/.9)}.hover\:fill-gray-3\/95:hover{fill:rgb(var(--gray-3)/.95)}.hover\:fill-gray-4\/0:hover{fill:rgb(var(--gray-4)/0)}.hover\:fill-gray-4\/10:hover{fill:rgb(var(--gray-4)/.1)}.hover\:fill-gray-4\/100:hover{fill:rgb(var(--gray-4)/1)}.hover\:fill-gray-4\/20:hover{fill:rgb(var(--gray-4)/.2)}.hover\:fill-gray-4\/25:hover{fill:rgb(var(--gray-4)/.25)}.hover\:fill-gray-4\/30:hover{fill:rgb(var(--gray-4)/.3)}.hover\:fill-gray-4\/40:hover{fill:rgb(var(--gray-4)/.4)}.hover\:fill-gray-4\/5:hover{fill:rgb(var(--gray-4)/.05)}.hover\:fill-gray-4\/50:hover{fill:rgb(var(--gray-4)/.5)}.hover\:fill-gray-4\/60:hover{fill:rgb(var(--gray-4)/.6)}.hover\:fill-gray-4\/70:hover{fill:rgb(var(--gray-4)/.7)}.hover\:fill-gray-4\/75:hover{fill:rgb(var(--gray-4)/.75)}.hover\:fill-gray-4\/80:hover{fill:rgb(var(--gray-4)/.8)}.hover\:fill-gray-4\/90:hover{fill:rgb(var(--gray-4)/.9)}.hover\:fill-gray-4\/95:hover{fill:rgb(var(--gray-4)/.95)}.hover\:fill-gray-5\/0:hover{fill:rgb(var(--gray-5)/0)}.hover\:fill-gray-5\/10:hover{fill:rgb(var(--gray-5)/.1)}.hover\:fill-gray-5\/100:hover{fill:rgb(var(--gray-5)/1)}.hover\:fill-gray-5\/20:hover{fill:rgb(var(--gray-5)/.2)}.hover\:fill-gray-5\/25:hover{fill:rgb(var(--gray-5)/.25)}.hover\:fill-gray-5\/30:hover{fill:rgb(var(--gray-5)/.3)}.hover\:fill-gray-5\/40:hover{fill:rgb(var(--gray-5)/.4)}.hover\:fill-gray-5\/5:hover{fill:rgb(var(--gray-5)/.05)}.hover\:fill-gray-5\/50:hover{fill:rgb(var(--gray-5)/.5)}.hover\:fill-gray-5\/60:hover{fill:rgb(var(--gray-5)/.6)}.hover\:fill-gray-5\/70:hover{fill:rgb(var(--gray-5)/.7)}.hover\:fill-gray-5\/75:hover{fill:rgb(var(--gray-5)/.75)}.hover\:fill-gray-5\/80:hover{fill:rgb(var(--gray-5)/.8)}.hover\:fill-gray-5\/90:hover{fill:rgb(var(--gray-5)/.9)}.hover\:fill-gray-5\/95:hover{fill:rgb(var(--gray-5)/.95)}.hover\:fill-gray-6\/0:hover{fill:rgb(var(--gray-6)/0)}.hover\:fill-gray-6\/10:hover{fill:rgb(var(--gray-6)/.1)}.hover\:fill-gray-6\/100:hover{fill:rgb(var(--gray-6)/1)}.hover\:fill-gray-6\/20:hover{fill:rgb(var(--gray-6)/.2)}.hover\:fill-gray-6\/25:hover{fill:rgb(var(--gray-6)/.25)}.hover\:fill-gray-6\/30:hover{fill:rgb(var(--gray-6)/.3)}.hover\:fill-gray-6\/40:hover{fill:rgb(var(--gray-6)/.4)}.hover\:fill-gray-6\/5:hover{fill:rgb(var(--gray-6)/.05)}.hover\:fill-gray-6\/50:hover{fill:rgb(var(--gray-6)/.5)}.hover\:fill-gray-6\/60:hover{fill:rgb(var(--gray-6)/.6)}.hover\:fill-gray-6\/70:hover{fill:rgb(var(--gray-6)/.7)}.hover\:fill-gray-6\/75:hover{fill:rgb(var(--gray-6)/.75)}.hover\:fill-gray-6\/80:hover{fill:rgb(var(--gray-6)/.8)}.hover\:fill-gray-6\/90:hover{fill:rgb(var(--gray-6)/.9)}.hover\:fill-gray-6\/95:hover{fill:rgb(var(--gray-6)/.95)}.hover\:fill-gray-7\/0:hover{fill:rgb(var(--gray-7)/0)}.hover\:fill-gray-7\/10:hover{fill:rgb(var(--gray-7)/.1)}.hover\:fill-gray-7\/100:hover{fill:rgb(var(--gray-7)/1)}.hover\:fill-gray-7\/20:hover{fill:rgb(var(--gray-7)/.2)}.hover\:fill-gray-7\/25:hover{fill:rgb(var(--gray-7)/.25)}.hover\:fill-gray-7\/30:hover{fill:rgb(var(--gray-7)/.3)}.hover\:fill-gray-7\/40:hover{fill:rgb(var(--gray-7)/.4)}.hover\:fill-gray-7\/5:hover{fill:rgb(var(--gray-7)/.05)}.hover\:fill-gray-7\/50:hover{fill:rgb(var(--gray-7)/.5)}.hover\:fill-gray-7\/60:hover{fill:rgb(var(--gray-7)/.6)}.hover\:fill-gray-7\/70:hover{fill:rgb(var(--gray-7)/.7)}.hover\:fill-gray-7\/75:hover{fill:rgb(var(--gray-7)/.75)}.hover\:fill-gray-7\/80:hover{fill:rgb(var(--gray-7)/.8)}.hover\:fill-gray-7\/90:hover{fill:rgb(var(--gray-7)/.9)}.hover\:fill-gray-7\/95:hover{fill:rgb(var(--gray-7)/.95)}.hover\:fill-gray-8\/0:hover{fill:rgb(var(--gray-8)/0)}.hover\:fill-gray-8\/10:hover{fill:rgb(var(--gray-8)/.1)}.hover\:fill-gray-8\/100:hover{fill:rgb(var(--gray-8)/1)}.hover\:fill-gray-8\/20:hover{fill:rgb(var(--gray-8)/.2)}.hover\:fill-gray-8\/25:hover{fill:rgb(var(--gray-8)/.25)}.hover\:fill-gray-8\/30:hover{fill:rgb(var(--gray-8)/.3)}.hover\:fill-gray-8\/40:hover{fill:rgb(var(--gray-8)/.4)}.hover\:fill-gray-8\/5:hover{fill:rgb(var(--gray-8)/.05)}.hover\:fill-gray-8\/50:hover{fill:rgb(var(--gray-8)/.5)}.hover\:fill-gray-8\/60:hover{fill:rgb(var(--gray-8)/.6)}.hover\:fill-gray-8\/70:hover{fill:rgb(var(--gray-8)/.7)}.hover\:fill-gray-8\/75:hover{fill:rgb(var(--gray-8)/.75)}.hover\:fill-gray-8\/80:hover{fill:rgb(var(--gray-8)/.8)}.hover\:fill-gray-8\/90:hover{fill:rgb(var(--gray-8)/.9)}.hover\:fill-gray-8\/95:hover{fill:rgb(var(--gray-8)/.95)}.hover\:fill-gray-9\/0:hover{fill:rgb(var(--gray-9)/0)}.hover\:fill-gray-9\/10:hover{fill:rgb(var(--gray-9)/.1)}.hover\:fill-gray-9\/100:hover{fill:rgb(var(--gray-9)/1)}.hover\:fill-gray-9\/20:hover{fill:rgb(var(--gray-9)/.2)}.hover\:fill-gray-9\/25:hover{fill:rgb(var(--gray-9)/.25)}.hover\:fill-gray-9\/30:hover{fill:rgb(var(--gray-9)/.3)}.hover\:fill-gray-9\/40:hover{fill:rgb(var(--gray-9)/.4)}.hover\:fill-gray-9\/5:hover{fill:rgb(var(--gray-9)/.05)}.hover\:fill-gray-9\/50:hover{fill:rgb(var(--gray-9)/.5)}.hover\:fill-gray-9\/60:hover{fill:rgb(var(--gray-9)/.6)}.hover\:fill-gray-9\/70:hover{fill:rgb(var(--gray-9)/.7)}.hover\:fill-gray-9\/75:hover{fill:rgb(var(--gray-9)/.75)}.hover\:fill-gray-9\/80:hover{fill:rgb(var(--gray-9)/.8)}.hover\:fill-gray-9\/90:hover{fill:rgb(var(--gray-9)/.9)}.hover\:fill-gray-9\/95:hover{fill:rgb(var(--gray-9)/.95)}.hover\:fill-green-1\/0:hover{fill:rgb(var(--green-1)/0)}.hover\:fill-green-1\/10:hover{fill:rgb(var(--green-1)/.1)}.hover\:fill-green-1\/100:hover{fill:rgb(var(--green-1)/1)}.hover\:fill-green-1\/20:hover{fill:rgb(var(--green-1)/.2)}.hover\:fill-green-1\/25:hover{fill:rgb(var(--green-1)/.25)}.hover\:fill-green-1\/30:hover{fill:rgb(var(--green-1)/.3)}.hover\:fill-green-1\/40:hover{fill:rgb(var(--green-1)/.4)}.hover\:fill-green-1\/5:hover{fill:rgb(var(--green-1)/.05)}.hover\:fill-green-1\/50:hover{fill:rgb(var(--green-1)/.5)}.hover\:fill-green-1\/60:hover{fill:rgb(var(--green-1)/.6)}.hover\:fill-green-1\/70:hover{fill:rgb(var(--green-1)/.7)}.hover\:fill-green-1\/75:hover{fill:rgb(var(--green-1)/.75)}.hover\:fill-green-1\/80:hover{fill:rgb(var(--green-1)/.8)}.hover\:fill-green-1\/90:hover{fill:rgb(var(--green-1)/.9)}.hover\:fill-green-1\/95:hover{fill:rgb(var(--green-1)/.95)}.hover\:fill-green-10\/0:hover{fill:rgb(var(--green-10)/0)}.hover\:fill-green-10\/10:hover{fill:rgb(var(--green-10)/.1)}.hover\:fill-green-10\/100:hover{fill:rgb(var(--green-10)/1)}.hover\:fill-green-10\/20:hover{fill:rgb(var(--green-10)/.2)}.hover\:fill-green-10\/25:hover{fill:rgb(var(--green-10)/.25)}.hover\:fill-green-10\/30:hover{fill:rgb(var(--green-10)/.3)}.hover\:fill-green-10\/40:hover{fill:rgb(var(--green-10)/.4)}.hover\:fill-green-10\/5:hover{fill:rgb(var(--green-10)/.05)}.hover\:fill-green-10\/50:hover{fill:rgb(var(--green-10)/.5)}.hover\:fill-green-10\/60:hover{fill:rgb(var(--green-10)/.6)}.hover\:fill-green-10\/70:hover{fill:rgb(var(--green-10)/.7)}.hover\:fill-green-10\/75:hover{fill:rgb(var(--green-10)/.75)}.hover\:fill-green-10\/80:hover{fill:rgb(var(--green-10)/.8)}.hover\:fill-green-10\/90:hover{fill:rgb(var(--green-10)/.9)}.hover\:fill-green-10\/95:hover{fill:rgb(var(--green-10)/.95)}.hover\:fill-green-2\/0:hover{fill:rgb(var(--green-2)/0)}.hover\:fill-green-2\/10:hover{fill:rgb(var(--green-2)/.1)}.hover\:fill-green-2\/100:hover{fill:rgb(var(--green-2)/1)}.hover\:fill-green-2\/20:hover{fill:rgb(var(--green-2)/.2)}.hover\:fill-green-2\/25:hover{fill:rgb(var(--green-2)/.25)}.hover\:fill-green-2\/30:hover{fill:rgb(var(--green-2)/.3)}.hover\:fill-green-2\/40:hover{fill:rgb(var(--green-2)/.4)}.hover\:fill-green-2\/5:hover{fill:rgb(var(--green-2)/.05)}.hover\:fill-green-2\/50:hover{fill:rgb(var(--green-2)/.5)}.hover\:fill-green-2\/60:hover{fill:rgb(var(--green-2)/.6)}.hover\:fill-green-2\/70:hover{fill:rgb(var(--green-2)/.7)}.hover\:fill-green-2\/75:hover{fill:rgb(var(--green-2)/.75)}.hover\:fill-green-2\/80:hover{fill:rgb(var(--green-2)/.8)}.hover\:fill-green-2\/90:hover{fill:rgb(var(--green-2)/.9)}.hover\:fill-green-2\/95:hover{fill:rgb(var(--green-2)/.95)}.hover\:fill-green-3\/0:hover{fill:rgb(var(--green-3)/0)}.hover\:fill-green-3\/10:hover{fill:rgb(var(--green-3)/.1)}.hover\:fill-green-3\/100:hover{fill:rgb(var(--green-3)/1)}.hover\:fill-green-3\/20:hover{fill:rgb(var(--green-3)/.2)}.hover\:fill-green-3\/25:hover{fill:rgb(var(--green-3)/.25)}.hover\:fill-green-3\/30:hover{fill:rgb(var(--green-3)/.3)}.hover\:fill-green-3\/40:hover{fill:rgb(var(--green-3)/.4)}.hover\:fill-green-3\/5:hover{fill:rgb(var(--green-3)/.05)}.hover\:fill-green-3\/50:hover{fill:rgb(var(--green-3)/.5)}.hover\:fill-green-3\/60:hover{fill:rgb(var(--green-3)/.6)}.hover\:fill-green-3\/70:hover{fill:rgb(var(--green-3)/.7)}.hover\:fill-green-3\/75:hover{fill:rgb(var(--green-3)/.75)}.hover\:fill-green-3\/80:hover{fill:rgb(var(--green-3)/.8)}.hover\:fill-green-3\/90:hover{fill:rgb(var(--green-3)/.9)}.hover\:fill-green-3\/95:hover{fill:rgb(var(--green-3)/.95)}.hover\:fill-green-4\/0:hover{fill:rgb(var(--green-4)/0)}.hover\:fill-green-4\/10:hover{fill:rgb(var(--green-4)/.1)}.hover\:fill-green-4\/100:hover{fill:rgb(var(--green-4)/1)}.hover\:fill-green-4\/20:hover{fill:rgb(var(--green-4)/.2)}.hover\:fill-green-4\/25:hover{fill:rgb(var(--green-4)/.25)}.hover\:fill-green-4\/30:hover{fill:rgb(var(--green-4)/.3)}.hover\:fill-green-4\/40:hover{fill:rgb(var(--green-4)/.4)}.hover\:fill-green-4\/5:hover{fill:rgb(var(--green-4)/.05)}.hover\:fill-green-4\/50:hover{fill:rgb(var(--green-4)/.5)}.hover\:fill-green-4\/60:hover{fill:rgb(var(--green-4)/.6)}.hover\:fill-green-4\/70:hover{fill:rgb(var(--green-4)/.7)}.hover\:fill-green-4\/75:hover{fill:rgb(var(--green-4)/.75)}.hover\:fill-green-4\/80:hover{fill:rgb(var(--green-4)/.8)}.hover\:fill-green-4\/90:hover{fill:rgb(var(--green-4)/.9)}.hover\:fill-green-4\/95:hover{fill:rgb(var(--green-4)/.95)}.hover\:fill-green-5\/0:hover{fill:rgb(var(--green-5)/0)}.hover\:fill-green-5\/10:hover{fill:rgb(var(--green-5)/.1)}.hover\:fill-green-5\/100:hover{fill:rgb(var(--green-5)/1)}.hover\:fill-green-5\/20:hover{fill:rgb(var(--green-5)/.2)}.hover\:fill-green-5\/25:hover{fill:rgb(var(--green-5)/.25)}.hover\:fill-green-5\/30:hover{fill:rgb(var(--green-5)/.3)}.hover\:fill-green-5\/40:hover{fill:rgb(var(--green-5)/.4)}.hover\:fill-green-5\/5:hover{fill:rgb(var(--green-5)/.05)}.hover\:fill-green-5\/50:hover{fill:rgb(var(--green-5)/.5)}.hover\:fill-green-5\/60:hover{fill:rgb(var(--green-5)/.6)}.hover\:fill-green-5\/70:hover{fill:rgb(var(--green-5)/.7)}.hover\:fill-green-5\/75:hover{fill:rgb(var(--green-5)/.75)}.hover\:fill-green-5\/80:hover{fill:rgb(var(--green-5)/.8)}.hover\:fill-green-5\/90:hover{fill:rgb(var(--green-5)/.9)}.hover\:fill-green-5\/95:hover{fill:rgb(var(--green-5)/.95)}.hover\:fill-green-6\/0:hover{fill:rgb(var(--green-6)/0)}.hover\:fill-green-6\/10:hover{fill:rgb(var(--green-6)/.1)}.hover\:fill-green-6\/100:hover{fill:rgb(var(--green-6)/1)}.hover\:fill-green-6\/20:hover{fill:rgb(var(--green-6)/.2)}.hover\:fill-green-6\/25:hover{fill:rgb(var(--green-6)/.25)}.hover\:fill-green-6\/30:hover{fill:rgb(var(--green-6)/.3)}.hover\:fill-green-6\/40:hover{fill:rgb(var(--green-6)/.4)}.hover\:fill-green-6\/5:hover{fill:rgb(var(--green-6)/.05)}.hover\:fill-green-6\/50:hover{fill:rgb(var(--green-6)/.5)}.hover\:fill-green-6\/60:hover{fill:rgb(var(--green-6)/.6)}.hover\:fill-green-6\/70:hover{fill:rgb(var(--green-6)/.7)}.hover\:fill-green-6\/75:hover{fill:rgb(var(--green-6)/.75)}.hover\:fill-green-6\/80:hover{fill:rgb(var(--green-6)/.8)}.hover\:fill-green-6\/90:hover{fill:rgb(var(--green-6)/.9)}.hover\:fill-green-6\/95:hover{fill:rgb(var(--green-6)/.95)}.hover\:fill-green-7\/0:hover{fill:rgb(var(--green-7)/0)}.hover\:fill-green-7\/10:hover{fill:rgb(var(--green-7)/.1)}.hover\:fill-green-7\/100:hover{fill:rgb(var(--green-7)/1)}.hover\:fill-green-7\/20:hover{fill:rgb(var(--green-7)/.2)}.hover\:fill-green-7\/25:hover{fill:rgb(var(--green-7)/.25)}.hover\:fill-green-7\/30:hover{fill:rgb(var(--green-7)/.3)}.hover\:fill-green-7\/40:hover{fill:rgb(var(--green-7)/.4)}.hover\:fill-green-7\/5:hover{fill:rgb(var(--green-7)/.05)}.hover\:fill-green-7\/50:hover{fill:rgb(var(--green-7)/.5)}.hover\:fill-green-7\/60:hover{fill:rgb(var(--green-7)/.6)}.hover\:fill-green-7\/70:hover{fill:rgb(var(--green-7)/.7)}.hover\:fill-green-7\/75:hover{fill:rgb(var(--green-7)/.75)}.hover\:fill-green-7\/80:hover{fill:rgb(var(--green-7)/.8)}.hover\:fill-green-7\/90:hover{fill:rgb(var(--green-7)/.9)}.hover\:fill-green-7\/95:hover{fill:rgb(var(--green-7)/.95)}.hover\:fill-green-8\/0:hover{fill:rgb(var(--green-8)/0)}.hover\:fill-green-8\/10:hover{fill:rgb(var(--green-8)/.1)}.hover\:fill-green-8\/100:hover{fill:rgb(var(--green-8)/1)}.hover\:fill-green-8\/20:hover{fill:rgb(var(--green-8)/.2)}.hover\:fill-green-8\/25:hover{fill:rgb(var(--green-8)/.25)}.hover\:fill-green-8\/30:hover{fill:rgb(var(--green-8)/.3)}.hover\:fill-green-8\/40:hover{fill:rgb(var(--green-8)/.4)}.hover\:fill-green-8\/5:hover{fill:rgb(var(--green-8)/.05)}.hover\:fill-green-8\/50:hover{fill:rgb(var(--green-8)/.5)}.hover\:fill-green-8\/60:hover{fill:rgb(var(--green-8)/.6)}.hover\:fill-green-8\/70:hover{fill:rgb(var(--green-8)/.7)}.hover\:fill-green-8\/75:hover{fill:rgb(var(--green-8)/.75)}.hover\:fill-green-8\/80:hover{fill:rgb(var(--green-8)/.8)}.hover\:fill-green-8\/90:hover{fill:rgb(var(--green-8)/.9)}.hover\:fill-green-8\/95:hover{fill:rgb(var(--green-8)/.95)}.hover\:fill-green-9\/0:hover{fill:rgb(var(--green-9)/0)}.hover\:fill-green-9\/10:hover{fill:rgb(var(--green-9)/.1)}.hover\:fill-green-9\/100:hover{fill:rgb(var(--green-9)/1)}.hover\:fill-green-9\/20:hover{fill:rgb(var(--green-9)/.2)}.hover\:fill-green-9\/25:hover{fill:rgb(var(--green-9)/.25)}.hover\:fill-green-9\/30:hover{fill:rgb(var(--green-9)/.3)}.hover\:fill-green-9\/40:hover{fill:rgb(var(--green-9)/.4)}.hover\:fill-green-9\/5:hover{fill:rgb(var(--green-9)/.05)}.hover\:fill-green-9\/50:hover{fill:rgb(var(--green-9)/.5)}.hover\:fill-green-9\/60:hover{fill:rgb(var(--green-9)/.6)}.hover\:fill-green-9\/70:hover{fill:rgb(var(--green-9)/.7)}.hover\:fill-green-9\/75:hover{fill:rgb(var(--green-9)/.75)}.hover\:fill-green-9\/80:hover{fill:rgb(var(--green-9)/.8)}.hover\:fill-green-9\/90:hover{fill:rgb(var(--green-9)/.9)}.hover\:fill-green-9\/95:hover{fill:rgb(var(--green-9)/.95)}.hover\:fill-pink-1\/0:hover{fill:rgb(var(--pink-1)/0)}.hover\:fill-pink-1\/10:hover{fill:rgb(var(--pink-1)/.1)}.hover\:fill-pink-1\/100:hover{fill:rgb(var(--pink-1)/1)}.hover\:fill-pink-1\/20:hover{fill:rgb(var(--pink-1)/.2)}.hover\:fill-pink-1\/25:hover{fill:rgb(var(--pink-1)/.25)}.hover\:fill-pink-1\/30:hover{fill:rgb(var(--pink-1)/.3)}.hover\:fill-pink-1\/40:hover{fill:rgb(var(--pink-1)/.4)}.hover\:fill-pink-1\/5:hover{fill:rgb(var(--pink-1)/.05)}.hover\:fill-pink-1\/50:hover{fill:rgb(var(--pink-1)/.5)}.hover\:fill-pink-1\/60:hover{fill:rgb(var(--pink-1)/.6)}.hover\:fill-pink-1\/70:hover{fill:rgb(var(--pink-1)/.7)}.hover\:fill-pink-1\/75:hover{fill:rgb(var(--pink-1)/.75)}.hover\:fill-pink-1\/80:hover{fill:rgb(var(--pink-1)/.8)}.hover\:fill-pink-1\/90:hover{fill:rgb(var(--pink-1)/.9)}.hover\:fill-pink-1\/95:hover{fill:rgb(var(--pink-1)/.95)}.hover\:fill-pink-10\/0:hover{fill:rgb(var(--pink-10)/0)}.hover\:fill-pink-10\/10:hover{fill:rgb(var(--pink-10)/.1)}.hover\:fill-pink-10\/100:hover{fill:rgb(var(--pink-10)/1)}.hover\:fill-pink-10\/20:hover{fill:rgb(var(--pink-10)/.2)}.hover\:fill-pink-10\/25:hover{fill:rgb(var(--pink-10)/.25)}.hover\:fill-pink-10\/30:hover{fill:rgb(var(--pink-10)/.3)}.hover\:fill-pink-10\/40:hover{fill:rgb(var(--pink-10)/.4)}.hover\:fill-pink-10\/5:hover{fill:rgb(var(--pink-10)/.05)}.hover\:fill-pink-10\/50:hover{fill:rgb(var(--pink-10)/.5)}.hover\:fill-pink-10\/60:hover{fill:rgb(var(--pink-10)/.6)}.hover\:fill-pink-10\/70:hover{fill:rgb(var(--pink-10)/.7)}.hover\:fill-pink-10\/75:hover{fill:rgb(var(--pink-10)/.75)}.hover\:fill-pink-10\/80:hover{fill:rgb(var(--pink-10)/.8)}.hover\:fill-pink-10\/90:hover{fill:rgb(var(--pink-10)/.9)}.hover\:fill-pink-10\/95:hover{fill:rgb(var(--pink-10)/.95)}.hover\:fill-pink-2\/0:hover{fill:rgb(var(--pink-2)/0)}.hover\:fill-pink-2\/10:hover{fill:rgb(var(--pink-2)/.1)}.hover\:fill-pink-2\/100:hover{fill:rgb(var(--pink-2)/1)}.hover\:fill-pink-2\/20:hover{fill:rgb(var(--pink-2)/.2)}.hover\:fill-pink-2\/25:hover{fill:rgb(var(--pink-2)/.25)}.hover\:fill-pink-2\/30:hover{fill:rgb(var(--pink-2)/.3)}.hover\:fill-pink-2\/40:hover{fill:rgb(var(--pink-2)/.4)}.hover\:fill-pink-2\/5:hover{fill:rgb(var(--pink-2)/.05)}.hover\:fill-pink-2\/50:hover{fill:rgb(var(--pink-2)/.5)}.hover\:fill-pink-2\/60:hover{fill:rgb(var(--pink-2)/.6)}.hover\:fill-pink-2\/70:hover{fill:rgb(var(--pink-2)/.7)}.hover\:fill-pink-2\/75:hover{fill:rgb(var(--pink-2)/.75)}.hover\:fill-pink-2\/80:hover{fill:rgb(var(--pink-2)/.8)}.hover\:fill-pink-2\/90:hover{fill:rgb(var(--pink-2)/.9)}.hover\:fill-pink-2\/95:hover{fill:rgb(var(--pink-2)/.95)}.hover\:fill-pink-3\/0:hover{fill:rgb(var(--pink-3)/0)}.hover\:fill-pink-3\/10:hover{fill:rgb(var(--pink-3)/.1)}.hover\:fill-pink-3\/100:hover{fill:rgb(var(--pink-3)/1)}.hover\:fill-pink-3\/20:hover{fill:rgb(var(--pink-3)/.2)}.hover\:fill-pink-3\/25:hover{fill:rgb(var(--pink-3)/.25)}.hover\:fill-pink-3\/30:hover{fill:rgb(var(--pink-3)/.3)}.hover\:fill-pink-3\/40:hover{fill:rgb(var(--pink-3)/.4)}.hover\:fill-pink-3\/5:hover{fill:rgb(var(--pink-3)/.05)}.hover\:fill-pink-3\/50:hover{fill:rgb(var(--pink-3)/.5)}.hover\:fill-pink-3\/60:hover{fill:rgb(var(--pink-3)/.6)}.hover\:fill-pink-3\/70:hover{fill:rgb(var(--pink-3)/.7)}.hover\:fill-pink-3\/75:hover{fill:rgb(var(--pink-3)/.75)}.hover\:fill-pink-3\/80:hover{fill:rgb(var(--pink-3)/.8)}.hover\:fill-pink-3\/90:hover{fill:rgb(var(--pink-3)/.9)}.hover\:fill-pink-3\/95:hover{fill:rgb(var(--pink-3)/.95)}.hover\:fill-pink-4\/0:hover{fill:rgb(var(--pink-4)/0)}.hover\:fill-pink-4\/10:hover{fill:rgb(var(--pink-4)/.1)}.hover\:fill-pink-4\/100:hover{fill:rgb(var(--pink-4)/1)}.hover\:fill-pink-4\/20:hover{fill:rgb(var(--pink-4)/.2)}.hover\:fill-pink-4\/25:hover{fill:rgb(var(--pink-4)/.25)}.hover\:fill-pink-4\/30:hover{fill:rgb(var(--pink-4)/.3)}.hover\:fill-pink-4\/40:hover{fill:rgb(var(--pink-4)/.4)}.hover\:fill-pink-4\/5:hover{fill:rgb(var(--pink-4)/.05)}.hover\:fill-pink-4\/50:hover{fill:rgb(var(--pink-4)/.5)}.hover\:fill-pink-4\/60:hover{fill:rgb(var(--pink-4)/.6)}.hover\:fill-pink-4\/70:hover{fill:rgb(var(--pink-4)/.7)}.hover\:fill-pink-4\/75:hover{fill:rgb(var(--pink-4)/.75)}.hover\:fill-pink-4\/80:hover{fill:rgb(var(--pink-4)/.8)}.hover\:fill-pink-4\/90:hover{fill:rgb(var(--pink-4)/.9)}.hover\:fill-pink-4\/95:hover{fill:rgb(var(--pink-4)/.95)}.hover\:fill-pink-5\/0:hover{fill:rgb(var(--pink-5)/0)}.hover\:fill-pink-5\/10:hover{fill:rgb(var(--pink-5)/.1)}.hover\:fill-pink-5\/100:hover{fill:rgb(var(--pink-5)/1)}.hover\:fill-pink-5\/20:hover{fill:rgb(var(--pink-5)/.2)}.hover\:fill-pink-5\/25:hover{fill:rgb(var(--pink-5)/.25)}.hover\:fill-pink-5\/30:hover{fill:rgb(var(--pink-5)/.3)}.hover\:fill-pink-5\/40:hover{fill:rgb(var(--pink-5)/.4)}.hover\:fill-pink-5\/5:hover{fill:rgb(var(--pink-5)/.05)}.hover\:fill-pink-5\/50:hover{fill:rgb(var(--pink-5)/.5)}.hover\:fill-pink-5\/60:hover{fill:rgb(var(--pink-5)/.6)}.hover\:fill-pink-5\/70:hover{fill:rgb(var(--pink-5)/.7)}.hover\:fill-pink-5\/75:hover{fill:rgb(var(--pink-5)/.75)}.hover\:fill-pink-5\/80:hover{fill:rgb(var(--pink-5)/.8)}.hover\:fill-pink-5\/90:hover{fill:rgb(var(--pink-5)/.9)}.hover\:fill-pink-5\/95:hover{fill:rgb(var(--pink-5)/.95)}.hover\:fill-pink-6\/0:hover{fill:rgb(var(--pink-6)/0)}.hover\:fill-pink-6\/10:hover{fill:rgb(var(--pink-6)/.1)}.hover\:fill-pink-6\/100:hover{fill:rgb(var(--pink-6)/1)}.hover\:fill-pink-6\/20:hover{fill:rgb(var(--pink-6)/.2)}.hover\:fill-pink-6\/25:hover{fill:rgb(var(--pink-6)/.25)}.hover\:fill-pink-6\/30:hover{fill:rgb(var(--pink-6)/.3)}.hover\:fill-pink-6\/40:hover{fill:rgb(var(--pink-6)/.4)}.hover\:fill-pink-6\/5:hover{fill:rgb(var(--pink-6)/.05)}.hover\:fill-pink-6\/50:hover{fill:rgb(var(--pink-6)/.5)}.hover\:fill-pink-6\/60:hover{fill:rgb(var(--pink-6)/.6)}.hover\:fill-pink-6\/70:hover{fill:rgb(var(--pink-6)/.7)}.hover\:fill-pink-6\/75:hover{fill:rgb(var(--pink-6)/.75)}.hover\:fill-pink-6\/80:hover{fill:rgb(var(--pink-6)/.8)}.hover\:fill-pink-6\/90:hover{fill:rgb(var(--pink-6)/.9)}.hover\:fill-pink-6\/95:hover{fill:rgb(var(--pink-6)/.95)}.hover\:fill-pink-7\/0:hover{fill:rgb(var(--pink-7)/0)}.hover\:fill-pink-7\/10:hover{fill:rgb(var(--pink-7)/.1)}.hover\:fill-pink-7\/100:hover{fill:rgb(var(--pink-7)/1)}.hover\:fill-pink-7\/20:hover{fill:rgb(var(--pink-7)/.2)}.hover\:fill-pink-7\/25:hover{fill:rgb(var(--pink-7)/.25)}.hover\:fill-pink-7\/30:hover{fill:rgb(var(--pink-7)/.3)}.hover\:fill-pink-7\/40:hover{fill:rgb(var(--pink-7)/.4)}.hover\:fill-pink-7\/5:hover{fill:rgb(var(--pink-7)/.05)}.hover\:fill-pink-7\/50:hover{fill:rgb(var(--pink-7)/.5)}.hover\:fill-pink-7\/60:hover{fill:rgb(var(--pink-7)/.6)}.hover\:fill-pink-7\/70:hover{fill:rgb(var(--pink-7)/.7)}.hover\:fill-pink-7\/75:hover{fill:rgb(var(--pink-7)/.75)}.hover\:fill-pink-7\/80:hover{fill:rgb(var(--pink-7)/.8)}.hover\:fill-pink-7\/90:hover{fill:rgb(var(--pink-7)/.9)}.hover\:fill-pink-7\/95:hover{fill:rgb(var(--pink-7)/.95)}.hover\:fill-pink-8\/0:hover{fill:rgb(var(--pink-8)/0)}.hover\:fill-pink-8\/10:hover{fill:rgb(var(--pink-8)/.1)}.hover\:fill-pink-8\/100:hover{fill:rgb(var(--pink-8)/1)}.hover\:fill-pink-8\/20:hover{fill:rgb(var(--pink-8)/.2)}.hover\:fill-pink-8\/25:hover{fill:rgb(var(--pink-8)/.25)}.hover\:fill-pink-8\/30:hover{fill:rgb(var(--pink-8)/.3)}.hover\:fill-pink-8\/40:hover{fill:rgb(var(--pink-8)/.4)}.hover\:fill-pink-8\/5:hover{fill:rgb(var(--pink-8)/.05)}.hover\:fill-pink-8\/50:hover{fill:rgb(var(--pink-8)/.5)}.hover\:fill-pink-8\/60:hover{fill:rgb(var(--pink-8)/.6)}.hover\:fill-pink-8\/70:hover{fill:rgb(var(--pink-8)/.7)}.hover\:fill-pink-8\/75:hover{fill:rgb(var(--pink-8)/.75)}.hover\:fill-pink-8\/80:hover{fill:rgb(var(--pink-8)/.8)}.hover\:fill-pink-8\/90:hover{fill:rgb(var(--pink-8)/.9)}.hover\:fill-pink-8\/95:hover{fill:rgb(var(--pink-8)/.95)}.hover\:fill-pink-9\/0:hover{fill:rgb(var(--pink-9)/0)}.hover\:fill-pink-9\/10:hover{fill:rgb(var(--pink-9)/.1)}.hover\:fill-pink-9\/100:hover{fill:rgb(var(--pink-9)/1)}.hover\:fill-pink-9\/20:hover{fill:rgb(var(--pink-9)/.2)}.hover\:fill-pink-9\/25:hover{fill:rgb(var(--pink-9)/.25)}.hover\:fill-pink-9\/30:hover{fill:rgb(var(--pink-9)/.3)}.hover\:fill-pink-9\/40:hover{fill:rgb(var(--pink-9)/.4)}.hover\:fill-pink-9\/5:hover{fill:rgb(var(--pink-9)/.05)}.hover\:fill-pink-9\/50:hover{fill:rgb(var(--pink-9)/.5)}.hover\:fill-pink-9\/60:hover{fill:rgb(var(--pink-9)/.6)}.hover\:fill-pink-9\/70:hover{fill:rgb(var(--pink-9)/.7)}.hover\:fill-pink-9\/75:hover{fill:rgb(var(--pink-9)/.75)}.hover\:fill-pink-9\/80:hover{fill:rgb(var(--pink-9)/.8)}.hover\:fill-pink-9\/90:hover{fill:rgb(var(--pink-9)/.9)}.hover\:fill-pink-9\/95:hover{fill:rgb(var(--pink-9)/.95)}.hover\:fill-primary:hover{fill:rgb(var(--primary))}.hover\:fill-primary\/0:hover{fill:rgb(var(--primary)/0)}.hover\:fill-primary\/10:hover{fill:rgb(var(--primary)/.1)}.hover\:fill-primary\/100:hover{fill:rgb(var(--primary)/1)}.hover\:fill-primary\/20:hover{fill:rgb(var(--primary)/.2)}.hover\:fill-primary\/25:hover{fill:rgb(var(--primary)/.25)}.hover\:fill-primary\/30:hover{fill:rgb(var(--primary)/.3)}.hover\:fill-primary\/40:hover{fill:rgb(var(--primary)/.4)}.hover\:fill-primary\/5:hover{fill:rgb(var(--primary)/.05)}.hover\:fill-primary\/50:hover{fill:rgb(var(--primary)/.5)}.hover\:fill-primary\/60:hover{fill:rgb(var(--primary)/.6)}.hover\:fill-primary\/70:hover{fill:rgb(var(--primary)/.7)}.hover\:fill-primary\/75:hover{fill:rgb(var(--primary)/.75)}.hover\:fill-primary\/80:hover{fill:rgb(var(--primary)/.8)}.hover\:fill-primary\/90:hover{fill:rgb(var(--primary)/.9)}.hover\:fill-primary\/95:hover{fill:rgb(var(--primary)/.95)}.hover\:fill-purple-1\/0:hover{fill:rgb(var(--purple-1)/0)}.hover\:fill-purple-1\/10:hover{fill:rgb(var(--purple-1)/.1)}.hover\:fill-purple-1\/100:hover{fill:rgb(var(--purple-1)/1)}.hover\:fill-purple-1\/20:hover{fill:rgb(var(--purple-1)/.2)}.hover\:fill-purple-1\/25:hover{fill:rgb(var(--purple-1)/.25)}.hover\:fill-purple-1\/30:hover{fill:rgb(var(--purple-1)/.3)}.hover\:fill-purple-1\/40:hover{fill:rgb(var(--purple-1)/.4)}.hover\:fill-purple-1\/5:hover{fill:rgb(var(--purple-1)/.05)}.hover\:fill-purple-1\/50:hover{fill:rgb(var(--purple-1)/.5)}.hover\:fill-purple-1\/60:hover{fill:rgb(var(--purple-1)/.6)}.hover\:fill-purple-1\/70:hover{fill:rgb(var(--purple-1)/.7)}.hover\:fill-purple-1\/75:hover{fill:rgb(var(--purple-1)/.75)}.hover\:fill-purple-1\/80:hover{fill:rgb(var(--purple-1)/.8)}.hover\:fill-purple-1\/90:hover{fill:rgb(var(--purple-1)/.9)}.hover\:fill-purple-1\/95:hover{fill:rgb(var(--purple-1)/.95)}.hover\:fill-purple-10\/0:hover{fill:rgb(var(--purple-10)/0)}.hover\:fill-purple-10\/10:hover{fill:rgb(var(--purple-10)/.1)}.hover\:fill-purple-10\/100:hover{fill:rgb(var(--purple-10)/1)}.hover\:fill-purple-10\/20:hover{fill:rgb(var(--purple-10)/.2)}.hover\:fill-purple-10\/25:hover{fill:rgb(var(--purple-10)/.25)}.hover\:fill-purple-10\/30:hover{fill:rgb(var(--purple-10)/.3)}.hover\:fill-purple-10\/40:hover{fill:rgb(var(--purple-10)/.4)}.hover\:fill-purple-10\/5:hover{fill:rgb(var(--purple-10)/.05)}.hover\:fill-purple-10\/50:hover{fill:rgb(var(--purple-10)/.5)}.hover\:fill-purple-10\/60:hover{fill:rgb(var(--purple-10)/.6)}.hover\:fill-purple-10\/70:hover{fill:rgb(var(--purple-10)/.7)}.hover\:fill-purple-10\/75:hover{fill:rgb(var(--purple-10)/.75)}.hover\:fill-purple-10\/80:hover{fill:rgb(var(--purple-10)/.8)}.hover\:fill-purple-10\/90:hover{fill:rgb(var(--purple-10)/.9)}.hover\:fill-purple-10\/95:hover{fill:rgb(var(--purple-10)/.95)}.hover\:fill-purple-2\/0:hover{fill:rgb(var(--purple-2)/0)}.hover\:fill-purple-2\/10:hover{fill:rgb(var(--purple-2)/.1)}.hover\:fill-purple-2\/100:hover{fill:rgb(var(--purple-2)/1)}.hover\:fill-purple-2\/20:hover{fill:rgb(var(--purple-2)/.2)}.hover\:fill-purple-2\/25:hover{fill:rgb(var(--purple-2)/.25)}.hover\:fill-purple-2\/30:hover{fill:rgb(var(--purple-2)/.3)}.hover\:fill-purple-2\/40:hover{fill:rgb(var(--purple-2)/.4)}.hover\:fill-purple-2\/5:hover{fill:rgb(var(--purple-2)/.05)}.hover\:fill-purple-2\/50:hover{fill:rgb(var(--purple-2)/.5)}.hover\:fill-purple-2\/60:hover{fill:rgb(var(--purple-2)/.6)}.hover\:fill-purple-2\/70:hover{fill:rgb(var(--purple-2)/.7)}.hover\:fill-purple-2\/75:hover{fill:rgb(var(--purple-2)/.75)}.hover\:fill-purple-2\/80:hover{fill:rgb(var(--purple-2)/.8)}.hover\:fill-purple-2\/90:hover{fill:rgb(var(--purple-2)/.9)}.hover\:fill-purple-2\/95:hover{fill:rgb(var(--purple-2)/.95)}.hover\:fill-purple-3\/0:hover{fill:rgb(var(--purple-3)/0)}.hover\:fill-purple-3\/10:hover{fill:rgb(var(--purple-3)/.1)}.hover\:fill-purple-3\/100:hover{fill:rgb(var(--purple-3)/1)}.hover\:fill-purple-3\/20:hover{fill:rgb(var(--purple-3)/.2)}.hover\:fill-purple-3\/25:hover{fill:rgb(var(--purple-3)/.25)}.hover\:fill-purple-3\/30:hover{fill:rgb(var(--purple-3)/.3)}.hover\:fill-purple-3\/40:hover{fill:rgb(var(--purple-3)/.4)}.hover\:fill-purple-3\/5:hover{fill:rgb(var(--purple-3)/.05)}.hover\:fill-purple-3\/50:hover{fill:rgb(var(--purple-3)/.5)}.hover\:fill-purple-3\/60:hover{fill:rgb(var(--purple-3)/.6)}.hover\:fill-purple-3\/70:hover{fill:rgb(var(--purple-3)/.7)}.hover\:fill-purple-3\/75:hover{fill:rgb(var(--purple-3)/.75)}.hover\:fill-purple-3\/80:hover{fill:rgb(var(--purple-3)/.8)}.hover\:fill-purple-3\/90:hover{fill:rgb(var(--purple-3)/.9)}.hover\:fill-purple-3\/95:hover{fill:rgb(var(--purple-3)/.95)}.hover\:fill-purple-4\/0:hover{fill:rgb(var(--purple-4)/0)}.hover\:fill-purple-4\/10:hover{fill:rgb(var(--purple-4)/.1)}.hover\:fill-purple-4\/100:hover{fill:rgb(var(--purple-4)/1)}.hover\:fill-purple-4\/20:hover{fill:rgb(var(--purple-4)/.2)}.hover\:fill-purple-4\/25:hover{fill:rgb(var(--purple-4)/.25)}.hover\:fill-purple-4\/30:hover{fill:rgb(var(--purple-4)/.3)}.hover\:fill-purple-4\/40:hover{fill:rgb(var(--purple-4)/.4)}.hover\:fill-purple-4\/5:hover{fill:rgb(var(--purple-4)/.05)}.hover\:fill-purple-4\/50:hover{fill:rgb(var(--purple-4)/.5)}.hover\:fill-purple-4\/60:hover{fill:rgb(var(--purple-4)/.6)}.hover\:fill-purple-4\/70:hover{fill:rgb(var(--purple-4)/.7)}.hover\:fill-purple-4\/75:hover{fill:rgb(var(--purple-4)/.75)}.hover\:fill-purple-4\/80:hover{fill:rgb(var(--purple-4)/.8)}.hover\:fill-purple-4\/90:hover{fill:rgb(var(--purple-4)/.9)}.hover\:fill-purple-4\/95:hover{fill:rgb(var(--purple-4)/.95)}.hover\:fill-purple-5\/0:hover{fill:rgb(var(--purple-5)/0)}.hover\:fill-purple-5\/10:hover{fill:rgb(var(--purple-5)/.1)}.hover\:fill-purple-5\/100:hover{fill:rgb(var(--purple-5)/1)}.hover\:fill-purple-5\/20:hover{fill:rgb(var(--purple-5)/.2)}.hover\:fill-purple-5\/25:hover{fill:rgb(var(--purple-5)/.25)}.hover\:fill-purple-5\/30:hover{fill:rgb(var(--purple-5)/.3)}.hover\:fill-purple-5\/40:hover{fill:rgb(var(--purple-5)/.4)}.hover\:fill-purple-5\/5:hover{fill:rgb(var(--purple-5)/.05)}.hover\:fill-purple-5\/50:hover{fill:rgb(var(--purple-5)/.5)}.hover\:fill-purple-5\/60:hover{fill:rgb(var(--purple-5)/.6)}.hover\:fill-purple-5\/70:hover{fill:rgb(var(--purple-5)/.7)}.hover\:fill-purple-5\/75:hover{fill:rgb(var(--purple-5)/.75)}.hover\:fill-purple-5\/80:hover{fill:rgb(var(--purple-5)/.8)}.hover\:fill-purple-5\/90:hover{fill:rgb(var(--purple-5)/.9)}.hover\:fill-purple-5\/95:hover{fill:rgb(var(--purple-5)/.95)}.hover\:fill-purple-6\/0:hover{fill:rgb(var(--purple-6)/0)}.hover\:fill-purple-6\/10:hover{fill:rgb(var(--purple-6)/.1)}.hover\:fill-purple-6\/100:hover{fill:rgb(var(--purple-6)/1)}.hover\:fill-purple-6\/20:hover{fill:rgb(var(--purple-6)/.2)}.hover\:fill-purple-6\/25:hover{fill:rgb(var(--purple-6)/.25)}.hover\:fill-purple-6\/30:hover{fill:rgb(var(--purple-6)/.3)}.hover\:fill-purple-6\/40:hover{fill:rgb(var(--purple-6)/.4)}.hover\:fill-purple-6\/5:hover{fill:rgb(var(--purple-6)/.05)}.hover\:fill-purple-6\/50:hover{fill:rgb(var(--purple-6)/.5)}.hover\:fill-purple-6\/60:hover{fill:rgb(var(--purple-6)/.6)}.hover\:fill-purple-6\/70:hover{fill:rgb(var(--purple-6)/.7)}.hover\:fill-purple-6\/75:hover{fill:rgb(var(--purple-6)/.75)}.hover\:fill-purple-6\/80:hover{fill:rgb(var(--purple-6)/.8)}.hover\:fill-purple-6\/90:hover{fill:rgb(var(--purple-6)/.9)}.hover\:fill-purple-6\/95:hover{fill:rgb(var(--purple-6)/.95)}.hover\:fill-purple-7\/0:hover{fill:rgb(var(--purple-7)/0)}.hover\:fill-purple-7\/10:hover{fill:rgb(var(--purple-7)/.1)}.hover\:fill-purple-7\/100:hover{fill:rgb(var(--purple-7)/1)}.hover\:fill-purple-7\/20:hover{fill:rgb(var(--purple-7)/.2)}.hover\:fill-purple-7\/25:hover{fill:rgb(var(--purple-7)/.25)}.hover\:fill-purple-7\/30:hover{fill:rgb(var(--purple-7)/.3)}.hover\:fill-purple-7\/40:hover{fill:rgb(var(--purple-7)/.4)}.hover\:fill-purple-7\/5:hover{fill:rgb(var(--purple-7)/.05)}.hover\:fill-purple-7\/50:hover{fill:rgb(var(--purple-7)/.5)}.hover\:fill-purple-7\/60:hover{fill:rgb(var(--purple-7)/.6)}.hover\:fill-purple-7\/70:hover{fill:rgb(var(--purple-7)/.7)}.hover\:fill-purple-7\/75:hover{fill:rgb(var(--purple-7)/.75)}.hover\:fill-purple-7\/80:hover{fill:rgb(var(--purple-7)/.8)}.hover\:fill-purple-7\/90:hover{fill:rgb(var(--purple-7)/.9)}.hover\:fill-purple-7\/95:hover{fill:rgb(var(--purple-7)/.95)}.hover\:fill-purple-8\/0:hover{fill:rgb(var(--purple-8)/0)}.hover\:fill-purple-8\/10:hover{fill:rgb(var(--purple-8)/.1)}.hover\:fill-purple-8\/100:hover{fill:rgb(var(--purple-8)/1)}.hover\:fill-purple-8\/20:hover{fill:rgb(var(--purple-8)/.2)}.hover\:fill-purple-8\/25:hover{fill:rgb(var(--purple-8)/.25)}.hover\:fill-purple-8\/30:hover{fill:rgb(var(--purple-8)/.3)}.hover\:fill-purple-8\/40:hover{fill:rgb(var(--purple-8)/.4)}.hover\:fill-purple-8\/5:hover{fill:rgb(var(--purple-8)/.05)}.hover\:fill-purple-8\/50:hover{fill:rgb(var(--purple-8)/.5)}.hover\:fill-purple-8\/60:hover{fill:rgb(var(--purple-8)/.6)}.hover\:fill-purple-8\/70:hover{fill:rgb(var(--purple-8)/.7)}.hover\:fill-purple-8\/75:hover{fill:rgb(var(--purple-8)/.75)}.hover\:fill-purple-8\/80:hover{fill:rgb(var(--purple-8)/.8)}.hover\:fill-purple-8\/90:hover{fill:rgb(var(--purple-8)/.9)}.hover\:fill-purple-8\/95:hover{fill:rgb(var(--purple-8)/.95)}.hover\:fill-purple-9\/0:hover{fill:rgb(var(--purple-9)/0)}.hover\:fill-purple-9\/10:hover{fill:rgb(var(--purple-9)/.1)}.hover\:fill-purple-9\/100:hover{fill:rgb(var(--purple-9)/1)}.hover\:fill-purple-9\/20:hover{fill:rgb(var(--purple-9)/.2)}.hover\:fill-purple-9\/25:hover{fill:rgb(var(--purple-9)/.25)}.hover\:fill-purple-9\/30:hover{fill:rgb(var(--purple-9)/.3)}.hover\:fill-purple-9\/40:hover{fill:rgb(var(--purple-9)/.4)}.hover\:fill-purple-9\/5:hover{fill:rgb(var(--purple-9)/.05)}.hover\:fill-purple-9\/50:hover{fill:rgb(var(--purple-9)/.5)}.hover\:fill-purple-9\/60:hover{fill:rgb(var(--purple-9)/.6)}.hover\:fill-purple-9\/70:hover{fill:rgb(var(--purple-9)/.7)}.hover\:fill-purple-9\/75:hover{fill:rgb(var(--purple-9)/.75)}.hover\:fill-purple-9\/80:hover{fill:rgb(var(--purple-9)/.8)}.hover\:fill-purple-9\/90:hover{fill:rgb(var(--purple-9)/.9)}.hover\:fill-purple-9\/95:hover{fill:rgb(var(--purple-9)/.95)}.hover\:fill-red-1\/0:hover{fill:rgb(var(--red-1)/0)}.hover\:fill-red-1\/10:hover{fill:rgb(var(--red-1)/.1)}.hover\:fill-red-1\/100:hover{fill:rgb(var(--red-1)/1)}.hover\:fill-red-1\/20:hover{fill:rgb(var(--red-1)/.2)}.hover\:fill-red-1\/25:hover{fill:rgb(var(--red-1)/.25)}.hover\:fill-red-1\/30:hover{fill:rgb(var(--red-1)/.3)}.hover\:fill-red-1\/40:hover{fill:rgb(var(--red-1)/.4)}.hover\:fill-red-1\/5:hover{fill:rgb(var(--red-1)/.05)}.hover\:fill-red-1\/50:hover{fill:rgb(var(--red-1)/.5)}.hover\:fill-red-1\/60:hover{fill:rgb(var(--red-1)/.6)}.hover\:fill-red-1\/70:hover{fill:rgb(var(--red-1)/.7)}.hover\:fill-red-1\/75:hover{fill:rgb(var(--red-1)/.75)}.hover\:fill-red-1\/80:hover{fill:rgb(var(--red-1)/.8)}.hover\:fill-red-1\/90:hover{fill:rgb(var(--red-1)/.9)}.hover\:fill-red-1\/95:hover{fill:rgb(var(--red-1)/.95)}.hover\:fill-red-10\/0:hover{fill:rgb(var(--red-10)/0)}.hover\:fill-red-10\/10:hover{fill:rgb(var(--red-10)/.1)}.hover\:fill-red-10\/100:hover{fill:rgb(var(--red-10)/1)}.hover\:fill-red-10\/20:hover{fill:rgb(var(--red-10)/.2)}.hover\:fill-red-10\/25:hover{fill:rgb(var(--red-10)/.25)}.hover\:fill-red-10\/30:hover{fill:rgb(var(--red-10)/.3)}.hover\:fill-red-10\/40:hover{fill:rgb(var(--red-10)/.4)}.hover\:fill-red-10\/5:hover{fill:rgb(var(--red-10)/.05)}.hover\:fill-red-10\/50:hover{fill:rgb(var(--red-10)/.5)}.hover\:fill-red-10\/60:hover{fill:rgb(var(--red-10)/.6)}.hover\:fill-red-10\/70:hover{fill:rgb(var(--red-10)/.7)}.hover\:fill-red-10\/75:hover{fill:rgb(var(--red-10)/.75)}.hover\:fill-red-10\/80:hover{fill:rgb(var(--red-10)/.8)}.hover\:fill-red-10\/90:hover{fill:rgb(var(--red-10)/.9)}.hover\:fill-red-10\/95:hover{fill:rgb(var(--red-10)/.95)}.hover\:fill-red-2\/0:hover{fill:rgb(var(--red-2)/0)}.hover\:fill-red-2\/10:hover{fill:rgb(var(--red-2)/.1)}.hover\:fill-red-2\/100:hover{fill:rgb(var(--red-2)/1)}.hover\:fill-red-2\/20:hover{fill:rgb(var(--red-2)/.2)}.hover\:fill-red-2\/25:hover{fill:rgb(var(--red-2)/.25)}.hover\:fill-red-2\/30:hover{fill:rgb(var(--red-2)/.3)}.hover\:fill-red-2\/40:hover{fill:rgb(var(--red-2)/.4)}.hover\:fill-red-2\/5:hover{fill:rgb(var(--red-2)/.05)}.hover\:fill-red-2\/50:hover{fill:rgb(var(--red-2)/.5)}.hover\:fill-red-2\/60:hover{fill:rgb(var(--red-2)/.6)}.hover\:fill-red-2\/70:hover{fill:rgb(var(--red-2)/.7)}.hover\:fill-red-2\/75:hover{fill:rgb(var(--red-2)/.75)}.hover\:fill-red-2\/80:hover{fill:rgb(var(--red-2)/.8)}.hover\:fill-red-2\/90:hover{fill:rgb(var(--red-2)/.9)}.hover\:fill-red-2\/95:hover{fill:rgb(var(--red-2)/.95)}.hover\:fill-red-3\/0:hover{fill:rgb(var(--red-3)/0)}.hover\:fill-red-3\/10:hover{fill:rgb(var(--red-3)/.1)}.hover\:fill-red-3\/100:hover{fill:rgb(var(--red-3)/1)}.hover\:fill-red-3\/20:hover{fill:rgb(var(--red-3)/.2)}.hover\:fill-red-3\/25:hover{fill:rgb(var(--red-3)/.25)}.hover\:fill-red-3\/30:hover{fill:rgb(var(--red-3)/.3)}.hover\:fill-red-3\/40:hover{fill:rgb(var(--red-3)/.4)}.hover\:fill-red-3\/5:hover{fill:rgb(var(--red-3)/.05)}.hover\:fill-red-3\/50:hover{fill:rgb(var(--red-3)/.5)}.hover\:fill-red-3\/60:hover{fill:rgb(var(--red-3)/.6)}.hover\:fill-red-3\/70:hover{fill:rgb(var(--red-3)/.7)}.hover\:fill-red-3\/75:hover{fill:rgb(var(--red-3)/.75)}.hover\:fill-red-3\/80:hover{fill:rgb(var(--red-3)/.8)}.hover\:fill-red-3\/90:hover{fill:rgb(var(--red-3)/.9)}.hover\:fill-red-3\/95:hover{fill:rgb(var(--red-3)/.95)}.hover\:fill-red-4\/0:hover{fill:rgb(var(--red-4)/0)}.hover\:fill-red-4\/10:hover{fill:rgb(var(--red-4)/.1)}.hover\:fill-red-4\/100:hover{fill:rgb(var(--red-4)/1)}.hover\:fill-red-4\/20:hover{fill:rgb(var(--red-4)/.2)}.hover\:fill-red-4\/25:hover{fill:rgb(var(--red-4)/.25)}.hover\:fill-red-4\/30:hover{fill:rgb(var(--red-4)/.3)}.hover\:fill-red-4\/40:hover{fill:rgb(var(--red-4)/.4)}.hover\:fill-red-4\/5:hover{fill:rgb(var(--red-4)/.05)}.hover\:fill-red-4\/50:hover{fill:rgb(var(--red-4)/.5)}.hover\:fill-red-4\/60:hover{fill:rgb(var(--red-4)/.6)}.hover\:fill-red-4\/70:hover{fill:rgb(var(--red-4)/.7)}.hover\:fill-red-4\/75:hover{fill:rgb(var(--red-4)/.75)}.hover\:fill-red-4\/80:hover{fill:rgb(var(--red-4)/.8)}.hover\:fill-red-4\/90:hover{fill:rgb(var(--red-4)/.9)}.hover\:fill-red-4\/95:hover{fill:rgb(var(--red-4)/.95)}.hover\:fill-red-5\/0:hover{fill:rgb(var(--red-5)/0)}.hover\:fill-red-5\/10:hover{fill:rgb(var(--red-5)/.1)}.hover\:fill-red-5\/100:hover{fill:rgb(var(--red-5)/1)}.hover\:fill-red-5\/20:hover{fill:rgb(var(--red-5)/.2)}.hover\:fill-red-5\/25:hover{fill:rgb(var(--red-5)/.25)}.hover\:fill-red-5\/30:hover{fill:rgb(var(--red-5)/.3)}.hover\:fill-red-5\/40:hover{fill:rgb(var(--red-5)/.4)}.hover\:fill-red-5\/5:hover{fill:rgb(var(--red-5)/.05)}.hover\:fill-red-5\/50:hover{fill:rgb(var(--red-5)/.5)}.hover\:fill-red-5\/60:hover{fill:rgb(var(--red-5)/.6)}.hover\:fill-red-5\/70:hover{fill:rgb(var(--red-5)/.7)}.hover\:fill-red-5\/75:hover{fill:rgb(var(--red-5)/.75)}.hover\:fill-red-5\/80:hover{fill:rgb(var(--red-5)/.8)}.hover\:fill-red-5\/90:hover{fill:rgb(var(--red-5)/.9)}.hover\:fill-red-5\/95:hover{fill:rgb(var(--red-5)/.95)}.hover\:fill-red-6\/0:hover{fill:rgb(var(--red-6)/0)}.hover\:fill-red-6\/10:hover{fill:rgb(var(--red-6)/.1)}.hover\:fill-red-6\/100:hover{fill:rgb(var(--red-6)/1)}.hover\:fill-red-6\/20:hover{fill:rgb(var(--red-6)/.2)}.hover\:fill-red-6\/25:hover{fill:rgb(var(--red-6)/.25)}.hover\:fill-red-6\/30:hover{fill:rgb(var(--red-6)/.3)}.hover\:fill-red-6\/40:hover{fill:rgb(var(--red-6)/.4)}.hover\:fill-red-6\/5:hover{fill:rgb(var(--red-6)/.05)}.hover\:fill-red-6\/50:hover{fill:rgb(var(--red-6)/.5)}.hover\:fill-red-6\/60:hover{fill:rgb(var(--red-6)/.6)}.hover\:fill-red-6\/70:hover{fill:rgb(var(--red-6)/.7)}.hover\:fill-red-6\/75:hover{fill:rgb(var(--red-6)/.75)}.hover\:fill-red-6\/80:hover{fill:rgb(var(--red-6)/.8)}.hover\:fill-red-6\/90:hover{fill:rgb(var(--red-6)/.9)}.hover\:fill-red-6\/95:hover{fill:rgb(var(--red-6)/.95)}.hover\:fill-red-7\/0:hover{fill:rgb(var(--red-7)/0)}.hover\:fill-red-7\/10:hover{fill:rgb(var(--red-7)/.1)}.hover\:fill-red-7\/100:hover{fill:rgb(var(--red-7)/1)}.hover\:fill-red-7\/20:hover{fill:rgb(var(--red-7)/.2)}.hover\:fill-red-7\/25:hover{fill:rgb(var(--red-7)/.25)}.hover\:fill-red-7\/30:hover{fill:rgb(var(--red-7)/.3)}.hover\:fill-red-7\/40:hover{fill:rgb(var(--red-7)/.4)}.hover\:fill-red-7\/5:hover{fill:rgb(var(--red-7)/.05)}.hover\:fill-red-7\/50:hover{fill:rgb(var(--red-7)/.5)}.hover\:fill-red-7\/60:hover{fill:rgb(var(--red-7)/.6)}.hover\:fill-red-7\/70:hover{fill:rgb(var(--red-7)/.7)}.hover\:fill-red-7\/75:hover{fill:rgb(var(--red-7)/.75)}.hover\:fill-red-7\/80:hover{fill:rgb(var(--red-7)/.8)}.hover\:fill-red-7\/90:hover{fill:rgb(var(--red-7)/.9)}.hover\:fill-red-7\/95:hover{fill:rgb(var(--red-7)/.95)}.hover\:fill-red-8\/0:hover{fill:rgb(var(--red-8)/0)}.hover\:fill-red-8\/10:hover{fill:rgb(var(--red-8)/.1)}.hover\:fill-red-8\/100:hover{fill:rgb(var(--red-8)/1)}.hover\:fill-red-8\/20:hover{fill:rgb(var(--red-8)/.2)}.hover\:fill-red-8\/25:hover{fill:rgb(var(--red-8)/.25)}.hover\:fill-red-8\/30:hover{fill:rgb(var(--red-8)/.3)}.hover\:fill-red-8\/40:hover{fill:rgb(var(--red-8)/.4)}.hover\:fill-red-8\/5:hover{fill:rgb(var(--red-8)/.05)}.hover\:fill-red-8\/50:hover{fill:rgb(var(--red-8)/.5)}.hover\:fill-red-8\/60:hover{fill:rgb(var(--red-8)/.6)}.hover\:fill-red-8\/70:hover{fill:rgb(var(--red-8)/.7)}.hover\:fill-red-8\/75:hover{fill:rgb(var(--red-8)/.75)}.hover\:fill-red-8\/80:hover{fill:rgb(var(--red-8)/.8)}.hover\:fill-red-8\/90:hover{fill:rgb(var(--red-8)/.9)}.hover\:fill-red-8\/95:hover{fill:rgb(var(--red-8)/.95)}.hover\:fill-red-9\/0:hover{fill:rgb(var(--red-9)/0)}.hover\:fill-red-9\/10:hover{fill:rgb(var(--red-9)/.1)}.hover\:fill-red-9\/100:hover{fill:rgb(var(--red-9)/1)}.hover\:fill-red-9\/20:hover{fill:rgb(var(--red-9)/.2)}.hover\:fill-red-9\/25:hover{fill:rgb(var(--red-9)/.25)}.hover\:fill-red-9\/30:hover{fill:rgb(var(--red-9)/.3)}.hover\:fill-red-9\/40:hover{fill:rgb(var(--red-9)/.4)}.hover\:fill-red-9\/5:hover{fill:rgb(var(--red-9)/.05)}.hover\:fill-red-9\/50:hover{fill:rgb(var(--red-9)/.5)}.hover\:fill-red-9\/60:hover{fill:rgb(var(--red-9)/.6)}.hover\:fill-red-9\/70:hover{fill:rgb(var(--red-9)/.7)}.hover\:fill-red-9\/75:hover{fill:rgb(var(--red-9)/.75)}.hover\:fill-red-9\/80:hover{fill:rgb(var(--red-9)/.8)}.hover\:fill-red-9\/90:hover{fill:rgb(var(--red-9)/.9)}.hover\:fill-red-9\/95:hover{fill:rgb(var(--red-9)/.95)}.hover\:fill-secondary:hover{fill:rgb(var(--secondary))}.hover\:fill-secondary\/0:hover{fill:rgb(var(--secondary)/0)}.hover\:fill-secondary\/10:hover{fill:rgb(var(--secondary)/.1)}.hover\:fill-secondary\/100:hover{fill:rgb(var(--secondary)/1)}.hover\:fill-secondary\/20:hover{fill:rgb(var(--secondary)/.2)}.hover\:fill-secondary\/25:hover{fill:rgb(var(--secondary)/.25)}.hover\:fill-secondary\/30:hover{fill:rgb(var(--secondary)/.3)}.hover\:fill-secondary\/40:hover{fill:rgb(var(--secondary)/.4)}.hover\:fill-secondary\/5:hover{fill:rgb(var(--secondary)/.05)}.hover\:fill-secondary\/50:hover{fill:rgb(var(--secondary)/.5)}.hover\:fill-secondary\/60:hover{fill:rgb(var(--secondary)/.6)}.hover\:fill-secondary\/70:hover{fill:rgb(var(--secondary)/.7)}.hover\:fill-secondary\/75:hover{fill:rgb(var(--secondary)/.75)}.hover\:fill-secondary\/80:hover{fill:rgb(var(--secondary)/.8)}.hover\:fill-secondary\/90:hover{fill:rgb(var(--secondary)/.9)}.hover\:fill-secondary\/95:hover{fill:rgb(var(--secondary)/.95)}.hover\:fill-slate-1\/0:hover{fill:rgb(var(--slate-1)/0)}.hover\:fill-slate-1\/10:hover{fill:rgb(var(--slate-1)/.1)}.hover\:fill-slate-1\/100:hover{fill:rgb(var(--slate-1)/1)}.hover\:fill-slate-1\/20:hover{fill:rgb(var(--slate-1)/.2)}.hover\:fill-slate-1\/25:hover{fill:rgb(var(--slate-1)/.25)}.hover\:fill-slate-1\/30:hover{fill:rgb(var(--slate-1)/.3)}.hover\:fill-slate-1\/40:hover{fill:rgb(var(--slate-1)/.4)}.hover\:fill-slate-1\/5:hover{fill:rgb(var(--slate-1)/.05)}.hover\:fill-slate-1\/50:hover{fill:rgb(var(--slate-1)/.5)}.hover\:fill-slate-1\/60:hover{fill:rgb(var(--slate-1)/.6)}.hover\:fill-slate-1\/70:hover{fill:rgb(var(--slate-1)/.7)}.hover\:fill-slate-1\/75:hover{fill:rgb(var(--slate-1)/.75)}.hover\:fill-slate-1\/80:hover{fill:rgb(var(--slate-1)/.8)}.hover\:fill-slate-1\/90:hover{fill:rgb(var(--slate-1)/.9)}.hover\:fill-slate-1\/95:hover{fill:rgb(var(--slate-1)/.95)}.hover\:fill-slate-10\/0:hover{fill:rgb(var(--slate-10)/0)}.hover\:fill-slate-10\/10:hover{fill:rgb(var(--slate-10)/.1)}.hover\:fill-slate-10\/100:hover{fill:rgb(var(--slate-10)/1)}.hover\:fill-slate-10\/20:hover{fill:rgb(var(--slate-10)/.2)}.hover\:fill-slate-10\/25:hover{fill:rgb(var(--slate-10)/.25)}.hover\:fill-slate-10\/30:hover{fill:rgb(var(--slate-10)/.3)}.hover\:fill-slate-10\/40:hover{fill:rgb(var(--slate-10)/.4)}.hover\:fill-slate-10\/5:hover{fill:rgb(var(--slate-10)/.05)}.hover\:fill-slate-10\/50:hover{fill:rgb(var(--slate-10)/.5)}.hover\:fill-slate-10\/60:hover{fill:rgb(var(--slate-10)/.6)}.hover\:fill-slate-10\/70:hover{fill:rgb(var(--slate-10)/.7)}.hover\:fill-slate-10\/75:hover{fill:rgb(var(--slate-10)/.75)}.hover\:fill-slate-10\/80:hover{fill:rgb(var(--slate-10)/.8)}.hover\:fill-slate-10\/90:hover{fill:rgb(var(--slate-10)/.9)}.hover\:fill-slate-10\/95:hover{fill:rgb(var(--slate-10)/.95)}.hover\:fill-slate-2\/0:hover{fill:rgb(var(--slate-2)/0)}.hover\:fill-slate-2\/10:hover{fill:rgb(var(--slate-2)/.1)}.hover\:fill-slate-2\/100:hover{fill:rgb(var(--slate-2)/1)}.hover\:fill-slate-2\/20:hover{fill:rgb(var(--slate-2)/.2)}.hover\:fill-slate-2\/25:hover{fill:rgb(var(--slate-2)/.25)}.hover\:fill-slate-2\/30:hover{fill:rgb(var(--slate-2)/.3)}.hover\:fill-slate-2\/40:hover{fill:rgb(var(--slate-2)/.4)}.hover\:fill-slate-2\/5:hover{fill:rgb(var(--slate-2)/.05)}.hover\:fill-slate-2\/50:hover{fill:rgb(var(--slate-2)/.5)}.hover\:fill-slate-2\/60:hover{fill:rgb(var(--slate-2)/.6)}.hover\:fill-slate-2\/70:hover{fill:rgb(var(--slate-2)/.7)}.hover\:fill-slate-2\/75:hover{fill:rgb(var(--slate-2)/.75)}.hover\:fill-slate-2\/80:hover{fill:rgb(var(--slate-2)/.8)}.hover\:fill-slate-2\/90:hover{fill:rgb(var(--slate-2)/.9)}.hover\:fill-slate-2\/95:hover{fill:rgb(var(--slate-2)/.95)}.hover\:fill-slate-3\/0:hover{fill:rgb(var(--slate-3)/0)}.hover\:fill-slate-3\/10:hover{fill:rgb(var(--slate-3)/.1)}.hover\:fill-slate-3\/100:hover{fill:rgb(var(--slate-3)/1)}.hover\:fill-slate-3\/20:hover{fill:rgb(var(--slate-3)/.2)}.hover\:fill-slate-3\/25:hover{fill:rgb(var(--slate-3)/.25)}.hover\:fill-slate-3\/30:hover{fill:rgb(var(--slate-3)/.3)}.hover\:fill-slate-3\/40:hover{fill:rgb(var(--slate-3)/.4)}.hover\:fill-slate-3\/5:hover{fill:rgb(var(--slate-3)/.05)}.hover\:fill-slate-3\/50:hover{fill:rgb(var(--slate-3)/.5)}.hover\:fill-slate-3\/60:hover{fill:rgb(var(--slate-3)/.6)}.hover\:fill-slate-3\/70:hover{fill:rgb(var(--slate-3)/.7)}.hover\:fill-slate-3\/75:hover{fill:rgb(var(--slate-3)/.75)}.hover\:fill-slate-3\/80:hover{fill:rgb(var(--slate-3)/.8)}.hover\:fill-slate-3\/90:hover{fill:rgb(var(--slate-3)/.9)}.hover\:fill-slate-3\/95:hover{fill:rgb(var(--slate-3)/.95)}.hover\:fill-slate-4\/0:hover{fill:rgb(var(--slate-4)/0)}.hover\:fill-slate-4\/10:hover{fill:rgb(var(--slate-4)/.1)}.hover\:fill-slate-4\/100:hover{fill:rgb(var(--slate-4)/1)}.hover\:fill-slate-4\/20:hover{fill:rgb(var(--slate-4)/.2)}.hover\:fill-slate-4\/25:hover{fill:rgb(var(--slate-4)/.25)}.hover\:fill-slate-4\/30:hover{fill:rgb(var(--slate-4)/.3)}.hover\:fill-slate-4\/40:hover{fill:rgb(var(--slate-4)/.4)}.hover\:fill-slate-4\/5:hover{fill:rgb(var(--slate-4)/.05)}.hover\:fill-slate-4\/50:hover{fill:rgb(var(--slate-4)/.5)}.hover\:fill-slate-4\/60:hover{fill:rgb(var(--slate-4)/.6)}.hover\:fill-slate-4\/70:hover{fill:rgb(var(--slate-4)/.7)}.hover\:fill-slate-4\/75:hover{fill:rgb(var(--slate-4)/.75)}.hover\:fill-slate-4\/80:hover{fill:rgb(var(--slate-4)/.8)}.hover\:fill-slate-4\/90:hover{fill:rgb(var(--slate-4)/.9)}.hover\:fill-slate-4\/95:hover{fill:rgb(var(--slate-4)/.95)}.hover\:fill-slate-5\/0:hover{fill:rgb(var(--slate-5)/0)}.hover\:fill-slate-5\/10:hover{fill:rgb(var(--slate-5)/.1)}.hover\:fill-slate-5\/100:hover{fill:rgb(var(--slate-5)/1)}.hover\:fill-slate-5\/20:hover{fill:rgb(var(--slate-5)/.2)}.hover\:fill-slate-5\/25:hover{fill:rgb(var(--slate-5)/.25)}.hover\:fill-slate-5\/30:hover{fill:rgb(var(--slate-5)/.3)}.hover\:fill-slate-5\/40:hover{fill:rgb(var(--slate-5)/.4)}.hover\:fill-slate-5\/5:hover{fill:rgb(var(--slate-5)/.05)}.hover\:fill-slate-5\/50:hover{fill:rgb(var(--slate-5)/.5)}.hover\:fill-slate-5\/60:hover{fill:rgb(var(--slate-5)/.6)}.hover\:fill-slate-5\/70:hover{fill:rgb(var(--slate-5)/.7)}.hover\:fill-slate-5\/75:hover{fill:rgb(var(--slate-5)/.75)}.hover\:fill-slate-5\/80:hover{fill:rgb(var(--slate-5)/.8)}.hover\:fill-slate-5\/90:hover{fill:rgb(var(--slate-5)/.9)}.hover\:fill-slate-5\/95:hover{fill:rgb(var(--slate-5)/.95)}.hover\:fill-slate-6\/0:hover{fill:rgb(var(--slate-6)/0)}.hover\:fill-slate-6\/10:hover{fill:rgb(var(--slate-6)/.1)}.hover\:fill-slate-6\/100:hover{fill:rgb(var(--slate-6)/1)}.hover\:fill-slate-6\/20:hover{fill:rgb(var(--slate-6)/.2)}.hover\:fill-slate-6\/25:hover{fill:rgb(var(--slate-6)/.25)}.hover\:fill-slate-6\/30:hover{fill:rgb(var(--slate-6)/.3)}.hover\:fill-slate-6\/40:hover{fill:rgb(var(--slate-6)/.4)}.hover\:fill-slate-6\/5:hover{fill:rgb(var(--slate-6)/.05)}.hover\:fill-slate-6\/50:hover{fill:rgb(var(--slate-6)/.5)}.hover\:fill-slate-6\/60:hover{fill:rgb(var(--slate-6)/.6)}.hover\:fill-slate-6\/70:hover{fill:rgb(var(--slate-6)/.7)}.hover\:fill-slate-6\/75:hover{fill:rgb(var(--slate-6)/.75)}.hover\:fill-slate-6\/80:hover{fill:rgb(var(--slate-6)/.8)}.hover\:fill-slate-6\/90:hover{fill:rgb(var(--slate-6)/.9)}.hover\:fill-slate-6\/95:hover{fill:rgb(var(--slate-6)/.95)}.hover\:fill-slate-7\/0:hover{fill:rgb(var(--slate-7)/0)}.hover\:fill-slate-7\/10:hover{fill:rgb(var(--slate-7)/.1)}.hover\:fill-slate-7\/100:hover{fill:rgb(var(--slate-7)/1)}.hover\:fill-slate-7\/20:hover{fill:rgb(var(--slate-7)/.2)}.hover\:fill-slate-7\/25:hover{fill:rgb(var(--slate-7)/.25)}.hover\:fill-slate-7\/30:hover{fill:rgb(var(--slate-7)/.3)}.hover\:fill-slate-7\/40:hover{fill:rgb(var(--slate-7)/.4)}.hover\:fill-slate-7\/5:hover{fill:rgb(var(--slate-7)/.05)}.hover\:fill-slate-7\/50:hover{fill:rgb(var(--slate-7)/.5)}.hover\:fill-slate-7\/60:hover{fill:rgb(var(--slate-7)/.6)}.hover\:fill-slate-7\/70:hover{fill:rgb(var(--slate-7)/.7)}.hover\:fill-slate-7\/75:hover{fill:rgb(var(--slate-7)/.75)}.hover\:fill-slate-7\/80:hover{fill:rgb(var(--slate-7)/.8)}.hover\:fill-slate-7\/90:hover{fill:rgb(var(--slate-7)/.9)}.hover\:fill-slate-7\/95:hover{fill:rgb(var(--slate-7)/.95)}.hover\:fill-slate-8\/0:hover{fill:rgb(var(--slate-8)/0)}.hover\:fill-slate-8\/10:hover{fill:rgb(var(--slate-8)/.1)}.hover\:fill-slate-8\/100:hover{fill:rgb(var(--slate-8)/1)}.hover\:fill-slate-8\/20:hover{fill:rgb(var(--slate-8)/.2)}.hover\:fill-slate-8\/25:hover{fill:rgb(var(--slate-8)/.25)}.hover\:fill-slate-8\/30:hover{fill:rgb(var(--slate-8)/.3)}.hover\:fill-slate-8\/40:hover{fill:rgb(var(--slate-8)/.4)}.hover\:fill-slate-8\/5:hover{fill:rgb(var(--slate-8)/.05)}.hover\:fill-slate-8\/50:hover{fill:rgb(var(--slate-8)/.5)}.hover\:fill-slate-8\/60:hover{fill:rgb(var(--slate-8)/.6)}.hover\:fill-slate-8\/70:hover{fill:rgb(var(--slate-8)/.7)}.hover\:fill-slate-8\/75:hover{fill:rgb(var(--slate-8)/.75)}.hover\:fill-slate-8\/80:hover{fill:rgb(var(--slate-8)/.8)}.hover\:fill-slate-8\/90:hover{fill:rgb(var(--slate-8)/.9)}.hover\:fill-slate-8\/95:hover{fill:rgb(var(--slate-8)/.95)}.hover\:fill-slate-9\/0:hover{fill:rgb(var(--slate-9)/0)}.hover\:fill-slate-9\/10:hover{fill:rgb(var(--slate-9)/.1)}.hover\:fill-slate-9\/100:hover{fill:rgb(var(--slate-9)/1)}.hover\:fill-slate-9\/20:hover{fill:rgb(var(--slate-9)/.2)}.hover\:fill-slate-9\/25:hover{fill:rgb(var(--slate-9)/.25)}.hover\:fill-slate-9\/30:hover{fill:rgb(var(--slate-9)/.3)}.hover\:fill-slate-9\/40:hover{fill:rgb(var(--slate-9)/.4)}.hover\:fill-slate-9\/5:hover{fill:rgb(var(--slate-9)/.05)}.hover\:fill-slate-9\/50:hover{fill:rgb(var(--slate-9)/.5)}.hover\:fill-slate-9\/60:hover{fill:rgb(var(--slate-9)/.6)}.hover\:fill-slate-9\/70:hover{fill:rgb(var(--slate-9)/.7)}.hover\:fill-slate-9\/75:hover{fill:rgb(var(--slate-9)/.75)}.hover\:fill-slate-9\/80:hover{fill:rgb(var(--slate-9)/.8)}.hover\:fill-slate-9\/90:hover{fill:rgb(var(--slate-9)/.9)}.hover\:fill-slate-9\/95:hover{fill:rgb(var(--slate-9)/.95)}.hover\:fill-success:hover{fill:rgb(var(--success))}.hover\:fill-success\/0:hover{fill:rgb(var(--success)/0)}.hover\:fill-success\/10:hover{fill:rgb(var(--success)/.1)}.hover\:fill-success\/100:hover{fill:rgb(var(--success)/1)}.hover\:fill-success\/20:hover{fill:rgb(var(--success)/.2)}.hover\:fill-success\/25:hover{fill:rgb(var(--success)/.25)}.hover\:fill-success\/30:hover{fill:rgb(var(--success)/.3)}.hover\:fill-success\/40:hover{fill:rgb(var(--success)/.4)}.hover\:fill-success\/5:hover{fill:rgb(var(--success)/.05)}.hover\:fill-success\/50:hover{fill:rgb(var(--success)/.5)}.hover\:fill-success\/60:hover{fill:rgb(var(--success)/.6)}.hover\:fill-success\/70:hover{fill:rgb(var(--success)/.7)}.hover\:fill-success\/75:hover{fill:rgb(var(--success)/.75)}.hover\:fill-success\/80:hover{fill:rgb(var(--success)/.8)}.hover\:fill-success\/90:hover{fill:rgb(var(--success)/.9)}.hover\:fill-success\/95:hover{fill:rgb(var(--success)/.95)}.hover\:fill-warning:hover{fill:rgb(var(--warning))}.hover\:fill-warning\/0:hover{fill:rgb(var(--warning)/0)}.hover\:fill-warning\/10:hover{fill:rgb(var(--warning)/.1)}.hover\:fill-warning\/100:hover{fill:rgb(var(--warning)/1)}.hover\:fill-warning\/20:hover{fill:rgb(var(--warning)/.2)}.hover\:fill-warning\/25:hover{fill:rgb(var(--warning)/.25)}.hover\:fill-warning\/30:hover{fill:rgb(var(--warning)/.3)}.hover\:fill-warning\/40:hover{fill:rgb(var(--warning)/.4)}.hover\:fill-warning\/5:hover{fill:rgb(var(--warning)/.05)}.hover\:fill-warning\/50:hover{fill:rgb(var(--warning)/.5)}.hover\:fill-warning\/60:hover{fill:rgb(var(--warning)/.6)}.hover\:fill-warning\/70:hover{fill:rgb(var(--warning)/.7)}.hover\:fill-warning\/75:hover{fill:rgb(var(--warning)/.75)}.hover\:fill-warning\/80:hover{fill:rgb(var(--warning)/.8)}.hover\:fill-warning\/90:hover{fill:rgb(var(--warning)/.9)}.hover\:fill-warning\/95:hover{fill:rgb(var(--warning)/.95)}.hover\:fill-white:hover{fill:#fff}.hover\:fill-white\/0:hover{fill:hsla(0,0%,100%,0)}.hover\:fill-white\/10:hover{fill:hsla(0,0%,100%,.1)}.hover\:fill-white\/100:hover{fill:#fff}.hover\:fill-white\/20:hover{fill:hsla(0,0%,100%,.2)}.hover\:fill-white\/25:hover{fill:hsla(0,0%,100%,.25)}.hover\:fill-white\/30:hover{fill:hsla(0,0%,100%,.3)}.hover\:fill-white\/40:hover{fill:hsla(0,0%,100%,.4)}.hover\:fill-white\/5:hover{fill:hsla(0,0%,100%,.05)}.hover\:fill-white\/50:hover{fill:hsla(0,0%,100%,.5)}.hover\:fill-white\/60:hover{fill:hsla(0,0%,100%,.6)}.hover\:fill-white\/70:hover{fill:hsla(0,0%,100%,.7)}.hover\:fill-white\/75:hover{fill:hsla(0,0%,100%,.75)}.hover\:fill-white\/80:hover{fill:hsla(0,0%,100%,.8)}.hover\:fill-white\/90:hover{fill:hsla(0,0%,100%,.9)}.hover\:fill-white\/95:hover{fill:hsla(0,0%,100%,.95)}.hover\:fill-whiteInverted:hover{fill:rgb(var(--whiteInverted))}.hover\:fill-whiteInverted\/0:hover{fill:rgb(var(--whiteInverted)/0)}.hover\:fill-whiteInverted\/10:hover{fill:rgb(var(--whiteInverted)/.1)}.hover\:fill-whiteInverted\/100:hover{fill:rgb(var(--whiteInverted)/1)}.hover\:fill-whiteInverted\/20:hover{fill:rgb(var(--whiteInverted)/.2)}.hover\:fill-whiteInverted\/25:hover{fill:rgb(var(--whiteInverted)/.25)}.hover\:fill-whiteInverted\/30:hover{fill:rgb(var(--whiteInverted)/.3)}.hover\:fill-whiteInverted\/40:hover{fill:rgb(var(--whiteInverted)/.4)}.hover\:fill-whiteInverted\/5:hover{fill:rgb(var(--whiteInverted)/.05)}.hover\:fill-whiteInverted\/50:hover{fill:rgb(var(--whiteInverted)/.5)}.hover\:fill-whiteInverted\/60:hover{fill:rgb(var(--whiteInverted)/.6)}.hover\:fill-whiteInverted\/70:hover{fill:rgb(var(--whiteInverted)/.7)}.hover\:fill-whiteInverted\/75:hover{fill:rgb(var(--whiteInverted)/.75)}.hover\:fill-whiteInverted\/80:hover{fill:rgb(var(--whiteInverted)/.8)}.hover\:fill-whiteInverted\/90:hover{fill:rgb(var(--whiteInverted)/.9)}.hover\:fill-whiteInverted\/95:hover{fill:rgb(var(--whiteInverted)/.95)}.hover\:stroke-backgroundPrimary:hover{stroke:rgb(var(--backgroundPrimary))}.hover\:stroke-backgroundPrimary\/0:hover{stroke:rgb(var(--backgroundPrimary)/0)}.hover\:stroke-backgroundPrimary\/10:hover{stroke:rgb(var(--backgroundPrimary)/.1)}.hover\:stroke-backgroundPrimary\/100:hover{stroke:rgb(var(--backgroundPrimary)/1)}.hover\:stroke-backgroundPrimary\/20:hover{stroke:rgb(var(--backgroundPrimary)/.2)}.hover\:stroke-backgroundPrimary\/25:hover{stroke:rgb(var(--backgroundPrimary)/.25)}.hover\:stroke-backgroundPrimary\/30:hover{stroke:rgb(var(--backgroundPrimary)/.3)}.hover\:stroke-backgroundPrimary\/40:hover{stroke:rgb(var(--backgroundPrimary)/.4)}.hover\:stroke-backgroundPrimary\/5:hover{stroke:rgb(var(--backgroundPrimary)/.05)}.hover\:stroke-backgroundPrimary\/50:hover{stroke:rgb(var(--backgroundPrimary)/.5)}.hover\:stroke-backgroundPrimary\/60:hover{stroke:rgb(var(--backgroundPrimary)/.6)}.hover\:stroke-backgroundPrimary\/70:hover{stroke:rgb(var(--backgroundPrimary)/.7)}.hover\:stroke-backgroundPrimary\/75:hover{stroke:rgb(var(--backgroundPrimary)/.75)}.hover\:stroke-backgroundPrimary\/80:hover{stroke:rgb(var(--backgroundPrimary)/.8)}.hover\:stroke-backgroundPrimary\/90:hover{stroke:rgb(var(--backgroundPrimary)/.9)}.hover\:stroke-backgroundPrimary\/95:hover{stroke:rgb(var(--backgroundPrimary)/.95)}.hover\:stroke-backgroundSecondary:hover{stroke:rgb(var(--backgroundSecondary))}.hover\:stroke-backgroundSecondary\/0:hover{stroke:rgb(var(--backgroundSecondary)/0)}.hover\:stroke-backgroundSecondary\/10:hover{stroke:rgb(var(--backgroundSecondary)/.1)}.hover\:stroke-backgroundSecondary\/100:hover{stroke:rgb(var(--backgroundSecondary)/1)}.hover\:stroke-backgroundSecondary\/20:hover{stroke:rgb(var(--backgroundSecondary)/.2)}.hover\:stroke-backgroundSecondary\/25:hover{stroke:rgb(var(--backgroundSecondary)/.25)}.hover\:stroke-backgroundSecondary\/30:hover{stroke:rgb(var(--backgroundSecondary)/.3)}.hover\:stroke-backgroundSecondary\/40:hover{stroke:rgb(var(--backgroundSecondary)/.4)}.hover\:stroke-backgroundSecondary\/5:hover{stroke:rgb(var(--backgroundSecondary)/.05)}.hover\:stroke-backgroundSecondary\/50:hover{stroke:rgb(var(--backgroundSecondary)/.5)}.hover\:stroke-backgroundSecondary\/60:hover{stroke:rgb(var(--backgroundSecondary)/.6)}.hover\:stroke-backgroundSecondary\/70:hover{stroke:rgb(var(--backgroundSecondary)/.7)}.hover\:stroke-backgroundSecondary\/75:hover{stroke:rgb(var(--backgroundSecondary)/.75)}.hover\:stroke-backgroundSecondary\/80:hover{stroke:rgb(var(--backgroundSecondary)/.8)}.hover\:stroke-backgroundSecondary\/90:hover{stroke:rgb(var(--backgroundSecondary)/.9)}.hover\:stroke-backgroundSecondary\/95:hover{stroke:rgb(var(--backgroundSecondary)/.95)}.hover\:stroke-black:hover{stroke:#000}.hover\:stroke-black\/0:hover{stroke:transparent}.hover\:stroke-black\/10:hover{stroke:rgba(0,0,0,.1)}.hover\:stroke-black\/100:hover{stroke:#000}.hover\:stroke-black\/20:hover{stroke:rgba(0,0,0,.2)}.hover\:stroke-black\/25:hover{stroke:rgba(0,0,0,.25)}.hover\:stroke-black\/30:hover{stroke:rgba(0,0,0,.3)}.hover\:stroke-black\/40:hover{stroke:rgba(0,0,0,.4)}.hover\:stroke-black\/5:hover{stroke:rgba(0,0,0,.05)}.hover\:stroke-black\/50:hover{stroke:rgba(0,0,0,.5)}.hover\:stroke-black\/60:hover{stroke:rgba(0,0,0,.6)}.hover\:stroke-black\/70:hover{stroke:rgba(0,0,0,.7)}.hover\:stroke-black\/75:hover{stroke:rgba(0,0,0,.75)}.hover\:stroke-black\/80:hover{stroke:rgba(0,0,0,.8)}.hover\:stroke-black\/90:hover{stroke:rgba(0,0,0,.9)}.hover\:stroke-black\/95:hover{stroke:rgba(0,0,0,.95)}.hover\:stroke-blackInverted:hover{stroke:rgb(var(--blackInverted))}.hover\:stroke-blackInverted\/0:hover{stroke:rgb(var(--blackInverted)/0)}.hover\:stroke-blackInverted\/10:hover{stroke:rgb(var(--blackInverted)/.1)}.hover\:stroke-blackInverted\/100:hover{stroke:rgb(var(--blackInverted)/1)}.hover\:stroke-blackInverted\/20:hover{stroke:rgb(var(--blackInverted)/.2)}.hover\:stroke-blackInverted\/25:hover{stroke:rgb(var(--blackInverted)/.25)}.hover\:stroke-blackInverted\/30:hover{stroke:rgb(var(--blackInverted)/.3)}.hover\:stroke-blackInverted\/40:hover{stroke:rgb(var(--blackInverted)/.4)}.hover\:stroke-blackInverted\/5:hover{stroke:rgb(var(--blackInverted)/.05)}.hover\:stroke-blackInverted\/50:hover{stroke:rgb(var(--blackInverted)/.5)}.hover\:stroke-blackInverted\/60:hover{stroke:rgb(var(--blackInverted)/.6)}.hover\:stroke-blackInverted\/70:hover{stroke:rgb(var(--blackInverted)/.7)}.hover\:stroke-blackInverted\/75:hover{stroke:rgb(var(--blackInverted)/.75)}.hover\:stroke-blackInverted\/80:hover{stroke:rgb(var(--blackInverted)/.8)}.hover\:stroke-blackInverted\/90:hover{stroke:rgb(var(--blackInverted)/.9)}.hover\:stroke-blackInverted\/95:hover{stroke:rgb(var(--blackInverted)/.95)}.hover\:stroke-blue-1\/0:hover{stroke:rgb(var(--blue-1)/0)}.hover\:stroke-blue-1\/10:hover{stroke:rgb(var(--blue-1)/.1)}.hover\:stroke-blue-1\/100:hover{stroke:rgb(var(--blue-1)/1)}.hover\:stroke-blue-1\/20:hover{stroke:rgb(var(--blue-1)/.2)}.hover\:stroke-blue-1\/25:hover{stroke:rgb(var(--blue-1)/.25)}.hover\:stroke-blue-1\/30:hover{stroke:rgb(var(--blue-1)/.3)}.hover\:stroke-blue-1\/40:hover{stroke:rgb(var(--blue-1)/.4)}.hover\:stroke-blue-1\/5:hover{stroke:rgb(var(--blue-1)/.05)}.hover\:stroke-blue-1\/50:hover{stroke:rgb(var(--blue-1)/.5)}.hover\:stroke-blue-1\/60:hover{stroke:rgb(var(--blue-1)/.6)}.hover\:stroke-blue-1\/70:hover{stroke:rgb(var(--blue-1)/.7)}.hover\:stroke-blue-1\/75:hover{stroke:rgb(var(--blue-1)/.75)}.hover\:stroke-blue-1\/80:hover{stroke:rgb(var(--blue-1)/.8)}.hover\:stroke-blue-1\/90:hover{stroke:rgb(var(--blue-1)/.9)}.hover\:stroke-blue-1\/95:hover{stroke:rgb(var(--blue-1)/.95)}.hover\:stroke-blue-10\/0:hover{stroke:rgb(var(--blue-10)/0)}.hover\:stroke-blue-10\/10:hover{stroke:rgb(var(--blue-10)/.1)}.hover\:stroke-blue-10\/100:hover{stroke:rgb(var(--blue-10)/1)}.hover\:stroke-blue-10\/20:hover{stroke:rgb(var(--blue-10)/.2)}.hover\:stroke-blue-10\/25:hover{stroke:rgb(var(--blue-10)/.25)}.hover\:stroke-blue-10\/30:hover{stroke:rgb(var(--blue-10)/.3)}.hover\:stroke-blue-10\/40:hover{stroke:rgb(var(--blue-10)/.4)}.hover\:stroke-blue-10\/5:hover{stroke:rgb(var(--blue-10)/.05)}.hover\:stroke-blue-10\/50:hover{stroke:rgb(var(--blue-10)/.5)}.hover\:stroke-blue-10\/60:hover{stroke:rgb(var(--blue-10)/.6)}.hover\:stroke-blue-10\/70:hover{stroke:rgb(var(--blue-10)/.7)}.hover\:stroke-blue-10\/75:hover{stroke:rgb(var(--blue-10)/.75)}.hover\:stroke-blue-10\/80:hover{stroke:rgb(var(--blue-10)/.8)}.hover\:stroke-blue-10\/90:hover{stroke:rgb(var(--blue-10)/.9)}.hover\:stroke-blue-10\/95:hover{stroke:rgb(var(--blue-10)/.95)}.hover\:stroke-blue-2\/0:hover{stroke:rgb(var(--blue-2)/0)}.hover\:stroke-blue-2\/10:hover{stroke:rgb(var(--blue-2)/.1)}.hover\:stroke-blue-2\/100:hover{stroke:rgb(var(--blue-2)/1)}.hover\:stroke-blue-2\/20:hover{stroke:rgb(var(--blue-2)/.2)}.hover\:stroke-blue-2\/25:hover{stroke:rgb(var(--blue-2)/.25)}.hover\:stroke-blue-2\/30:hover{stroke:rgb(var(--blue-2)/.3)}.hover\:stroke-blue-2\/40:hover{stroke:rgb(var(--blue-2)/.4)}.hover\:stroke-blue-2\/5:hover{stroke:rgb(var(--blue-2)/.05)}.hover\:stroke-blue-2\/50:hover{stroke:rgb(var(--blue-2)/.5)}.hover\:stroke-blue-2\/60:hover{stroke:rgb(var(--blue-2)/.6)}.hover\:stroke-blue-2\/70:hover{stroke:rgb(var(--blue-2)/.7)}.hover\:stroke-blue-2\/75:hover{stroke:rgb(var(--blue-2)/.75)}.hover\:stroke-blue-2\/80:hover{stroke:rgb(var(--blue-2)/.8)}.hover\:stroke-blue-2\/90:hover{stroke:rgb(var(--blue-2)/.9)}.hover\:stroke-blue-2\/95:hover{stroke:rgb(var(--blue-2)/.95)}.hover\:stroke-blue-3\/0:hover{stroke:rgb(var(--blue-3)/0)}.hover\:stroke-blue-3\/10:hover{stroke:rgb(var(--blue-3)/.1)}.hover\:stroke-blue-3\/100:hover{stroke:rgb(var(--blue-3)/1)}.hover\:stroke-blue-3\/20:hover{stroke:rgb(var(--blue-3)/.2)}.hover\:stroke-blue-3\/25:hover{stroke:rgb(var(--blue-3)/.25)}.hover\:stroke-blue-3\/30:hover{stroke:rgb(var(--blue-3)/.3)}.hover\:stroke-blue-3\/40:hover{stroke:rgb(var(--blue-3)/.4)}.hover\:stroke-blue-3\/5:hover{stroke:rgb(var(--blue-3)/.05)}.hover\:stroke-blue-3\/50:hover{stroke:rgb(var(--blue-3)/.5)}.hover\:stroke-blue-3\/60:hover{stroke:rgb(var(--blue-3)/.6)}.hover\:stroke-blue-3\/70:hover{stroke:rgb(var(--blue-3)/.7)}.hover\:stroke-blue-3\/75:hover{stroke:rgb(var(--blue-3)/.75)}.hover\:stroke-blue-3\/80:hover{stroke:rgb(var(--blue-3)/.8)}.hover\:stroke-blue-3\/90:hover{stroke:rgb(var(--blue-3)/.9)}.hover\:stroke-blue-3\/95:hover{stroke:rgb(var(--blue-3)/.95)}.hover\:stroke-blue-4\/0:hover{stroke:rgb(var(--blue-4)/0)}.hover\:stroke-blue-4\/10:hover{stroke:rgb(var(--blue-4)/.1)}.hover\:stroke-blue-4\/100:hover{stroke:rgb(var(--blue-4)/1)}.hover\:stroke-blue-4\/20:hover{stroke:rgb(var(--blue-4)/.2)}.hover\:stroke-blue-4\/25:hover{stroke:rgb(var(--blue-4)/.25)}.hover\:stroke-blue-4\/30:hover{stroke:rgb(var(--blue-4)/.3)}.hover\:stroke-blue-4\/40:hover{stroke:rgb(var(--blue-4)/.4)}.hover\:stroke-blue-4\/5:hover{stroke:rgb(var(--blue-4)/.05)}.hover\:stroke-blue-4\/50:hover{stroke:rgb(var(--blue-4)/.5)}.hover\:stroke-blue-4\/60:hover{stroke:rgb(var(--blue-4)/.6)}.hover\:stroke-blue-4\/70:hover{stroke:rgb(var(--blue-4)/.7)}.hover\:stroke-blue-4\/75:hover{stroke:rgb(var(--blue-4)/.75)}.hover\:stroke-blue-4\/80:hover{stroke:rgb(var(--blue-4)/.8)}.hover\:stroke-blue-4\/90:hover{stroke:rgb(var(--blue-4)/.9)}.hover\:stroke-blue-4\/95:hover{stroke:rgb(var(--blue-4)/.95)}.hover\:stroke-blue-5\/0:hover{stroke:rgb(var(--blue-5)/0)}.hover\:stroke-blue-5\/10:hover{stroke:rgb(var(--blue-5)/.1)}.hover\:stroke-blue-5\/100:hover{stroke:rgb(var(--blue-5)/1)}.hover\:stroke-blue-5\/20:hover{stroke:rgb(var(--blue-5)/.2)}.hover\:stroke-blue-5\/25:hover{stroke:rgb(var(--blue-5)/.25)}.hover\:stroke-blue-5\/30:hover{stroke:rgb(var(--blue-5)/.3)}.hover\:stroke-blue-5\/40:hover{stroke:rgb(var(--blue-5)/.4)}.hover\:stroke-blue-5\/5:hover{stroke:rgb(var(--blue-5)/.05)}.hover\:stroke-blue-5\/50:hover{stroke:rgb(var(--blue-5)/.5)}.hover\:stroke-blue-5\/60:hover{stroke:rgb(var(--blue-5)/.6)}.hover\:stroke-blue-5\/70:hover{stroke:rgb(var(--blue-5)/.7)}.hover\:stroke-blue-5\/75:hover{stroke:rgb(var(--blue-5)/.75)}.hover\:stroke-blue-5\/80:hover{stroke:rgb(var(--blue-5)/.8)}.hover\:stroke-blue-5\/90:hover{stroke:rgb(var(--blue-5)/.9)}.hover\:stroke-blue-5\/95:hover{stroke:rgb(var(--blue-5)/.95)}.hover\:stroke-blue-6\/0:hover{stroke:rgb(var(--blue-6)/0)}.hover\:stroke-blue-6\/10:hover{stroke:rgb(var(--blue-6)/.1)}.hover\:stroke-blue-6\/100:hover{stroke:rgb(var(--blue-6)/1)}.hover\:stroke-blue-6\/20:hover{stroke:rgb(var(--blue-6)/.2)}.hover\:stroke-blue-6\/25:hover{stroke:rgb(var(--blue-6)/.25)}.hover\:stroke-blue-6\/30:hover{stroke:rgb(var(--blue-6)/.3)}.hover\:stroke-blue-6\/40:hover{stroke:rgb(var(--blue-6)/.4)}.hover\:stroke-blue-6\/5:hover{stroke:rgb(var(--blue-6)/.05)}.hover\:stroke-blue-6\/50:hover{stroke:rgb(var(--blue-6)/.5)}.hover\:stroke-blue-6\/60:hover{stroke:rgb(var(--blue-6)/.6)}.hover\:stroke-blue-6\/70:hover{stroke:rgb(var(--blue-6)/.7)}.hover\:stroke-blue-6\/75:hover{stroke:rgb(var(--blue-6)/.75)}.hover\:stroke-blue-6\/80:hover{stroke:rgb(var(--blue-6)/.8)}.hover\:stroke-blue-6\/90:hover{stroke:rgb(var(--blue-6)/.9)}.hover\:stroke-blue-6\/95:hover{stroke:rgb(var(--blue-6)/.95)}.hover\:stroke-blue-7\/0:hover{stroke:rgb(var(--blue-7)/0)}.hover\:stroke-blue-7\/10:hover{stroke:rgb(var(--blue-7)/.1)}.hover\:stroke-blue-7\/100:hover{stroke:rgb(var(--blue-7)/1)}.hover\:stroke-blue-7\/20:hover{stroke:rgb(var(--blue-7)/.2)}.hover\:stroke-blue-7\/25:hover{stroke:rgb(var(--blue-7)/.25)}.hover\:stroke-blue-7\/30:hover{stroke:rgb(var(--blue-7)/.3)}.hover\:stroke-blue-7\/40:hover{stroke:rgb(var(--blue-7)/.4)}.hover\:stroke-blue-7\/5:hover{stroke:rgb(var(--blue-7)/.05)}.hover\:stroke-blue-7\/50:hover{stroke:rgb(var(--blue-7)/.5)}.hover\:stroke-blue-7\/60:hover{stroke:rgb(var(--blue-7)/.6)}.hover\:stroke-blue-7\/70:hover{stroke:rgb(var(--blue-7)/.7)}.hover\:stroke-blue-7\/75:hover{stroke:rgb(var(--blue-7)/.75)}.hover\:stroke-blue-7\/80:hover{stroke:rgb(var(--blue-7)/.8)}.hover\:stroke-blue-7\/90:hover{stroke:rgb(var(--blue-7)/.9)}.hover\:stroke-blue-7\/95:hover{stroke:rgb(var(--blue-7)/.95)}.hover\:stroke-blue-8\/0:hover{stroke:rgb(var(--blue-8)/0)}.hover\:stroke-blue-8\/10:hover{stroke:rgb(var(--blue-8)/.1)}.hover\:stroke-blue-8\/100:hover{stroke:rgb(var(--blue-8)/1)}.hover\:stroke-blue-8\/20:hover{stroke:rgb(var(--blue-8)/.2)}.hover\:stroke-blue-8\/25:hover{stroke:rgb(var(--blue-8)/.25)}.hover\:stroke-blue-8\/30:hover{stroke:rgb(var(--blue-8)/.3)}.hover\:stroke-blue-8\/40:hover{stroke:rgb(var(--blue-8)/.4)}.hover\:stroke-blue-8\/5:hover{stroke:rgb(var(--blue-8)/.05)}.hover\:stroke-blue-8\/50:hover{stroke:rgb(var(--blue-8)/.5)}.hover\:stroke-blue-8\/60:hover{stroke:rgb(var(--blue-8)/.6)}.hover\:stroke-blue-8\/70:hover{stroke:rgb(var(--blue-8)/.7)}.hover\:stroke-blue-8\/75:hover{stroke:rgb(var(--blue-8)/.75)}.hover\:stroke-blue-8\/80:hover{stroke:rgb(var(--blue-8)/.8)}.hover\:stroke-blue-8\/90:hover{stroke:rgb(var(--blue-8)/.9)}.hover\:stroke-blue-8\/95:hover{stroke:rgb(var(--blue-8)/.95)}.hover\:stroke-blue-9\/0:hover{stroke:rgb(var(--blue-9)/0)}.hover\:stroke-blue-9\/10:hover{stroke:rgb(var(--blue-9)/.1)}.hover\:stroke-blue-9\/100:hover{stroke:rgb(var(--blue-9)/1)}.hover\:stroke-blue-9\/20:hover{stroke:rgb(var(--blue-9)/.2)}.hover\:stroke-blue-9\/25:hover{stroke:rgb(var(--blue-9)/.25)}.hover\:stroke-blue-9\/30:hover{stroke:rgb(var(--blue-9)/.3)}.hover\:stroke-blue-9\/40:hover{stroke:rgb(var(--blue-9)/.4)}.hover\:stroke-blue-9\/5:hover{stroke:rgb(var(--blue-9)/.05)}.hover\:stroke-blue-9\/50:hover{stroke:rgb(var(--blue-9)/.5)}.hover\:stroke-blue-9\/60:hover{stroke:rgb(var(--blue-9)/.6)}.hover\:stroke-blue-9\/70:hover{stroke:rgb(var(--blue-9)/.7)}.hover\:stroke-blue-9\/75:hover{stroke:rgb(var(--blue-9)/.75)}.hover\:stroke-blue-9\/80:hover{stroke:rgb(var(--blue-9)/.8)}.hover\:stroke-blue-9\/90:hover{stroke:rgb(var(--blue-9)/.9)}.hover\:stroke-blue-9\/95:hover{stroke:rgb(var(--blue-9)/.95)}.hover\:stroke-border:hover{stroke:rgb(var(--border))}.hover\:stroke-border\/0:hover{stroke:rgb(var(--border)/0)}.hover\:stroke-border\/10:hover{stroke:rgb(var(--border)/.1)}.hover\:stroke-border\/100:hover{stroke:rgb(var(--border)/1)}.hover\:stroke-border\/20:hover{stroke:rgb(var(--border)/.2)}.hover\:stroke-border\/25:hover{stroke:rgb(var(--border)/.25)}.hover\:stroke-border\/30:hover{stroke:rgb(var(--border)/.3)}.hover\:stroke-border\/40:hover{stroke:rgb(var(--border)/.4)}.hover\:stroke-border\/5:hover{stroke:rgb(var(--border)/.05)}.hover\:stroke-border\/50:hover{stroke:rgb(var(--border)/.5)}.hover\:stroke-border\/60:hover{stroke:rgb(var(--border)/.6)}.hover\:stroke-border\/70:hover{stroke:rgb(var(--border)/.7)}.hover\:stroke-border\/75:hover{stroke:rgb(var(--border)/.75)}.hover\:stroke-border\/80:hover{stroke:rgb(var(--border)/.8)}.hover\:stroke-border\/90:hover{stroke:rgb(var(--border)/.9)}.hover\:stroke-border\/95:hover{stroke:rgb(var(--border)/.95)}.hover\:stroke-content1:hover{stroke:rgb(var(--content1))}.hover\:stroke-content1\/0:hover{stroke:rgb(var(--content1)/0)}.hover\:stroke-content1\/10:hover{stroke:rgb(var(--content1)/.1)}.hover\:stroke-content1\/100:hover{stroke:rgb(var(--content1)/1)}.hover\:stroke-content1\/20:hover{stroke:rgb(var(--content1)/.2)}.hover\:stroke-content1\/25:hover{stroke:rgb(var(--content1)/.25)}.hover\:stroke-content1\/30:hover{stroke:rgb(var(--content1)/.3)}.hover\:stroke-content1\/40:hover{stroke:rgb(var(--content1)/.4)}.hover\:stroke-content1\/5:hover{stroke:rgb(var(--content1)/.05)}.hover\:stroke-content1\/50:hover{stroke:rgb(var(--content1)/.5)}.hover\:stroke-content1\/60:hover{stroke:rgb(var(--content1)/.6)}.hover\:stroke-content1\/70:hover{stroke:rgb(var(--content1)/.7)}.hover\:stroke-content1\/75:hover{stroke:rgb(var(--content1)/.75)}.hover\:stroke-content1\/80:hover{stroke:rgb(var(--content1)/.8)}.hover\:stroke-content1\/90:hover{stroke:rgb(var(--content1)/.9)}.hover\:stroke-content1\/95:hover{stroke:rgb(var(--content1)/.95)}.hover\:stroke-content2:hover{stroke:rgb(var(--content2))}.hover\:stroke-content2\/0:hover{stroke:rgb(var(--content2)/0)}.hover\:stroke-content2\/10:hover{stroke:rgb(var(--content2)/.1)}.hover\:stroke-content2\/100:hover{stroke:rgb(var(--content2)/1)}.hover\:stroke-content2\/20:hover{stroke:rgb(var(--content2)/.2)}.hover\:stroke-content2\/25:hover{stroke:rgb(var(--content2)/.25)}.hover\:stroke-content2\/30:hover{stroke:rgb(var(--content2)/.3)}.hover\:stroke-content2\/40:hover{stroke:rgb(var(--content2)/.4)}.hover\:stroke-content2\/5:hover{stroke:rgb(var(--content2)/.05)}.hover\:stroke-content2\/50:hover{stroke:rgb(var(--content2)/.5)}.hover\:stroke-content2\/60:hover{stroke:rgb(var(--content2)/.6)}.hover\:stroke-content2\/70:hover{stroke:rgb(var(--content2)/.7)}.hover\:stroke-content2\/75:hover{stroke:rgb(var(--content2)/.75)}.hover\:stroke-content2\/80:hover{stroke:rgb(var(--content2)/.8)}.hover\:stroke-content2\/90:hover{stroke:rgb(var(--content2)/.9)}.hover\:stroke-content2\/95:hover{stroke:rgb(var(--content2)/.95)}.hover\:stroke-content3:hover{stroke:rgb(var(--content3))}.hover\:stroke-content3\/0:hover{stroke:rgb(var(--content3)/0)}.hover\:stroke-content3\/10:hover{stroke:rgb(var(--content3)/.1)}.hover\:stroke-content3\/100:hover{stroke:rgb(var(--content3)/1)}.hover\:stroke-content3\/20:hover{stroke:rgb(var(--content3)/.2)}.hover\:stroke-content3\/25:hover{stroke:rgb(var(--content3)/.25)}.hover\:stroke-content3\/30:hover{stroke:rgb(var(--content3)/.3)}.hover\:stroke-content3\/40:hover{stroke:rgb(var(--content3)/.4)}.hover\:stroke-content3\/5:hover{stroke:rgb(var(--content3)/.05)}.hover\:stroke-content3\/50:hover{stroke:rgb(var(--content3)/.5)}.hover\:stroke-content3\/60:hover{stroke:rgb(var(--content3)/.6)}.hover\:stroke-content3\/70:hover{stroke:rgb(var(--content3)/.7)}.hover\:stroke-content3\/75:hover{stroke:rgb(var(--content3)/.75)}.hover\:stroke-content3\/80:hover{stroke:rgb(var(--content3)/.8)}.hover\:stroke-content3\/90:hover{stroke:rgb(var(--content3)/.9)}.hover\:stroke-content3\/95:hover{stroke:rgb(var(--content3)/.95)}.hover\:stroke-cyan-1\/0:hover{stroke:rgb(var(--cyan-1)/0)}.hover\:stroke-cyan-1\/10:hover{stroke:rgb(var(--cyan-1)/.1)}.hover\:stroke-cyan-1\/100:hover{stroke:rgb(var(--cyan-1)/1)}.hover\:stroke-cyan-1\/20:hover{stroke:rgb(var(--cyan-1)/.2)}.hover\:stroke-cyan-1\/25:hover{stroke:rgb(var(--cyan-1)/.25)}.hover\:stroke-cyan-1\/30:hover{stroke:rgb(var(--cyan-1)/.3)}.hover\:stroke-cyan-1\/40:hover{stroke:rgb(var(--cyan-1)/.4)}.hover\:stroke-cyan-1\/5:hover{stroke:rgb(var(--cyan-1)/.05)}.hover\:stroke-cyan-1\/50:hover{stroke:rgb(var(--cyan-1)/.5)}.hover\:stroke-cyan-1\/60:hover{stroke:rgb(var(--cyan-1)/.6)}.hover\:stroke-cyan-1\/70:hover{stroke:rgb(var(--cyan-1)/.7)}.hover\:stroke-cyan-1\/75:hover{stroke:rgb(var(--cyan-1)/.75)}.hover\:stroke-cyan-1\/80:hover{stroke:rgb(var(--cyan-1)/.8)}.hover\:stroke-cyan-1\/90:hover{stroke:rgb(var(--cyan-1)/.9)}.hover\:stroke-cyan-1\/95:hover{stroke:rgb(var(--cyan-1)/.95)}.hover\:stroke-cyan-10\/0:hover{stroke:rgb(var(--cyan-10)/0)}.hover\:stroke-cyan-10\/10:hover{stroke:rgb(var(--cyan-10)/.1)}.hover\:stroke-cyan-10\/100:hover{stroke:rgb(var(--cyan-10)/1)}.hover\:stroke-cyan-10\/20:hover{stroke:rgb(var(--cyan-10)/.2)}.hover\:stroke-cyan-10\/25:hover{stroke:rgb(var(--cyan-10)/.25)}.hover\:stroke-cyan-10\/30:hover{stroke:rgb(var(--cyan-10)/.3)}.hover\:stroke-cyan-10\/40:hover{stroke:rgb(var(--cyan-10)/.4)}.hover\:stroke-cyan-10\/5:hover{stroke:rgb(var(--cyan-10)/.05)}.hover\:stroke-cyan-10\/50:hover{stroke:rgb(var(--cyan-10)/.5)}.hover\:stroke-cyan-10\/60:hover{stroke:rgb(var(--cyan-10)/.6)}.hover\:stroke-cyan-10\/70:hover{stroke:rgb(var(--cyan-10)/.7)}.hover\:stroke-cyan-10\/75:hover{stroke:rgb(var(--cyan-10)/.75)}.hover\:stroke-cyan-10\/80:hover{stroke:rgb(var(--cyan-10)/.8)}.hover\:stroke-cyan-10\/90:hover{stroke:rgb(var(--cyan-10)/.9)}.hover\:stroke-cyan-10\/95:hover{stroke:rgb(var(--cyan-10)/.95)}.hover\:stroke-cyan-2\/0:hover{stroke:rgb(var(--cyan-2)/0)}.hover\:stroke-cyan-2\/10:hover{stroke:rgb(var(--cyan-2)/.1)}.hover\:stroke-cyan-2\/100:hover{stroke:rgb(var(--cyan-2)/1)}.hover\:stroke-cyan-2\/20:hover{stroke:rgb(var(--cyan-2)/.2)}.hover\:stroke-cyan-2\/25:hover{stroke:rgb(var(--cyan-2)/.25)}.hover\:stroke-cyan-2\/30:hover{stroke:rgb(var(--cyan-2)/.3)}.hover\:stroke-cyan-2\/40:hover{stroke:rgb(var(--cyan-2)/.4)}.hover\:stroke-cyan-2\/5:hover{stroke:rgb(var(--cyan-2)/.05)}.hover\:stroke-cyan-2\/50:hover{stroke:rgb(var(--cyan-2)/.5)}.hover\:stroke-cyan-2\/60:hover{stroke:rgb(var(--cyan-2)/.6)}.hover\:stroke-cyan-2\/70:hover{stroke:rgb(var(--cyan-2)/.7)}.hover\:stroke-cyan-2\/75:hover{stroke:rgb(var(--cyan-2)/.75)}.hover\:stroke-cyan-2\/80:hover{stroke:rgb(var(--cyan-2)/.8)}.hover\:stroke-cyan-2\/90:hover{stroke:rgb(var(--cyan-2)/.9)}.hover\:stroke-cyan-2\/95:hover{stroke:rgb(var(--cyan-2)/.95)}.hover\:stroke-cyan-3\/0:hover{stroke:rgb(var(--cyan-3)/0)}.hover\:stroke-cyan-3\/10:hover{stroke:rgb(var(--cyan-3)/.1)}.hover\:stroke-cyan-3\/100:hover{stroke:rgb(var(--cyan-3)/1)}.hover\:stroke-cyan-3\/20:hover{stroke:rgb(var(--cyan-3)/.2)}.hover\:stroke-cyan-3\/25:hover{stroke:rgb(var(--cyan-3)/.25)}.hover\:stroke-cyan-3\/30:hover{stroke:rgb(var(--cyan-3)/.3)}.hover\:stroke-cyan-3\/40:hover{stroke:rgb(var(--cyan-3)/.4)}.hover\:stroke-cyan-3\/5:hover{stroke:rgb(var(--cyan-3)/.05)}.hover\:stroke-cyan-3\/50:hover{stroke:rgb(var(--cyan-3)/.5)}.hover\:stroke-cyan-3\/60:hover{stroke:rgb(var(--cyan-3)/.6)}.hover\:stroke-cyan-3\/70:hover{stroke:rgb(var(--cyan-3)/.7)}.hover\:stroke-cyan-3\/75:hover{stroke:rgb(var(--cyan-3)/.75)}.hover\:stroke-cyan-3\/80:hover{stroke:rgb(var(--cyan-3)/.8)}.hover\:stroke-cyan-3\/90:hover{stroke:rgb(var(--cyan-3)/.9)}.hover\:stroke-cyan-3\/95:hover{stroke:rgb(var(--cyan-3)/.95)}.hover\:stroke-cyan-4\/0:hover{stroke:rgb(var(--cyan-4)/0)}.hover\:stroke-cyan-4\/10:hover{stroke:rgb(var(--cyan-4)/.1)}.hover\:stroke-cyan-4\/100:hover{stroke:rgb(var(--cyan-4)/1)}.hover\:stroke-cyan-4\/20:hover{stroke:rgb(var(--cyan-4)/.2)}.hover\:stroke-cyan-4\/25:hover{stroke:rgb(var(--cyan-4)/.25)}.hover\:stroke-cyan-4\/30:hover{stroke:rgb(var(--cyan-4)/.3)}.hover\:stroke-cyan-4\/40:hover{stroke:rgb(var(--cyan-4)/.4)}.hover\:stroke-cyan-4\/5:hover{stroke:rgb(var(--cyan-4)/.05)}.hover\:stroke-cyan-4\/50:hover{stroke:rgb(var(--cyan-4)/.5)}.hover\:stroke-cyan-4\/60:hover{stroke:rgb(var(--cyan-4)/.6)}.hover\:stroke-cyan-4\/70:hover{stroke:rgb(var(--cyan-4)/.7)}.hover\:stroke-cyan-4\/75:hover{stroke:rgb(var(--cyan-4)/.75)}.hover\:stroke-cyan-4\/80:hover{stroke:rgb(var(--cyan-4)/.8)}.hover\:stroke-cyan-4\/90:hover{stroke:rgb(var(--cyan-4)/.9)}.hover\:stroke-cyan-4\/95:hover{stroke:rgb(var(--cyan-4)/.95)}.hover\:stroke-cyan-5\/0:hover{stroke:rgb(var(--cyan-5)/0)}.hover\:stroke-cyan-5\/10:hover{stroke:rgb(var(--cyan-5)/.1)}.hover\:stroke-cyan-5\/100:hover{stroke:rgb(var(--cyan-5)/1)}.hover\:stroke-cyan-5\/20:hover{stroke:rgb(var(--cyan-5)/.2)}.hover\:stroke-cyan-5\/25:hover{stroke:rgb(var(--cyan-5)/.25)}.hover\:stroke-cyan-5\/30:hover{stroke:rgb(var(--cyan-5)/.3)}.hover\:stroke-cyan-5\/40:hover{stroke:rgb(var(--cyan-5)/.4)}.hover\:stroke-cyan-5\/5:hover{stroke:rgb(var(--cyan-5)/.05)}.hover\:stroke-cyan-5\/50:hover{stroke:rgb(var(--cyan-5)/.5)}.hover\:stroke-cyan-5\/60:hover{stroke:rgb(var(--cyan-5)/.6)}.hover\:stroke-cyan-5\/70:hover{stroke:rgb(var(--cyan-5)/.7)}.hover\:stroke-cyan-5\/75:hover{stroke:rgb(var(--cyan-5)/.75)}.hover\:stroke-cyan-5\/80:hover{stroke:rgb(var(--cyan-5)/.8)}.hover\:stroke-cyan-5\/90:hover{stroke:rgb(var(--cyan-5)/.9)}.hover\:stroke-cyan-5\/95:hover{stroke:rgb(var(--cyan-5)/.95)}.hover\:stroke-cyan-6\/0:hover{stroke:rgb(var(--cyan-6)/0)}.hover\:stroke-cyan-6\/10:hover{stroke:rgb(var(--cyan-6)/.1)}.hover\:stroke-cyan-6\/100:hover{stroke:rgb(var(--cyan-6)/1)}.hover\:stroke-cyan-6\/20:hover{stroke:rgb(var(--cyan-6)/.2)}.hover\:stroke-cyan-6\/25:hover{stroke:rgb(var(--cyan-6)/.25)}.hover\:stroke-cyan-6\/30:hover{stroke:rgb(var(--cyan-6)/.3)}.hover\:stroke-cyan-6\/40:hover{stroke:rgb(var(--cyan-6)/.4)}.hover\:stroke-cyan-6\/5:hover{stroke:rgb(var(--cyan-6)/.05)}.hover\:stroke-cyan-6\/50:hover{stroke:rgb(var(--cyan-6)/.5)}.hover\:stroke-cyan-6\/60:hover{stroke:rgb(var(--cyan-6)/.6)}.hover\:stroke-cyan-6\/70:hover{stroke:rgb(var(--cyan-6)/.7)}.hover\:stroke-cyan-6\/75:hover{stroke:rgb(var(--cyan-6)/.75)}.hover\:stroke-cyan-6\/80:hover{stroke:rgb(var(--cyan-6)/.8)}.hover\:stroke-cyan-6\/90:hover{stroke:rgb(var(--cyan-6)/.9)}.hover\:stroke-cyan-6\/95:hover{stroke:rgb(var(--cyan-6)/.95)}.hover\:stroke-cyan-7\/0:hover{stroke:rgb(var(--cyan-7)/0)}.hover\:stroke-cyan-7\/10:hover{stroke:rgb(var(--cyan-7)/.1)}.hover\:stroke-cyan-7\/100:hover{stroke:rgb(var(--cyan-7)/1)}.hover\:stroke-cyan-7\/20:hover{stroke:rgb(var(--cyan-7)/.2)}.hover\:stroke-cyan-7\/25:hover{stroke:rgb(var(--cyan-7)/.25)}.hover\:stroke-cyan-7\/30:hover{stroke:rgb(var(--cyan-7)/.3)}.hover\:stroke-cyan-7\/40:hover{stroke:rgb(var(--cyan-7)/.4)}.hover\:stroke-cyan-7\/5:hover{stroke:rgb(var(--cyan-7)/.05)}.hover\:stroke-cyan-7\/50:hover{stroke:rgb(var(--cyan-7)/.5)}.hover\:stroke-cyan-7\/60:hover{stroke:rgb(var(--cyan-7)/.6)}.hover\:stroke-cyan-7\/70:hover{stroke:rgb(var(--cyan-7)/.7)}.hover\:stroke-cyan-7\/75:hover{stroke:rgb(var(--cyan-7)/.75)}.hover\:stroke-cyan-7\/80:hover{stroke:rgb(var(--cyan-7)/.8)}.hover\:stroke-cyan-7\/90:hover{stroke:rgb(var(--cyan-7)/.9)}.hover\:stroke-cyan-7\/95:hover{stroke:rgb(var(--cyan-7)/.95)}.hover\:stroke-cyan-8\/0:hover{stroke:rgb(var(--cyan-8)/0)}.hover\:stroke-cyan-8\/10:hover{stroke:rgb(var(--cyan-8)/.1)}.hover\:stroke-cyan-8\/100:hover{stroke:rgb(var(--cyan-8)/1)}.hover\:stroke-cyan-8\/20:hover{stroke:rgb(var(--cyan-8)/.2)}.hover\:stroke-cyan-8\/25:hover{stroke:rgb(var(--cyan-8)/.25)}.hover\:stroke-cyan-8\/30:hover{stroke:rgb(var(--cyan-8)/.3)}.hover\:stroke-cyan-8\/40:hover{stroke:rgb(var(--cyan-8)/.4)}.hover\:stroke-cyan-8\/5:hover{stroke:rgb(var(--cyan-8)/.05)}.hover\:stroke-cyan-8\/50:hover{stroke:rgb(var(--cyan-8)/.5)}.hover\:stroke-cyan-8\/60:hover{stroke:rgb(var(--cyan-8)/.6)}.hover\:stroke-cyan-8\/70:hover{stroke:rgb(var(--cyan-8)/.7)}.hover\:stroke-cyan-8\/75:hover{stroke:rgb(var(--cyan-8)/.75)}.hover\:stroke-cyan-8\/80:hover{stroke:rgb(var(--cyan-8)/.8)}.hover\:stroke-cyan-8\/90:hover{stroke:rgb(var(--cyan-8)/.9)}.hover\:stroke-cyan-8\/95:hover{stroke:rgb(var(--cyan-8)/.95)}.hover\:stroke-cyan-9\/0:hover{stroke:rgb(var(--cyan-9)/0)}.hover\:stroke-cyan-9\/10:hover{stroke:rgb(var(--cyan-9)/.1)}.hover\:stroke-cyan-9\/100:hover{stroke:rgb(var(--cyan-9)/1)}.hover\:stroke-cyan-9\/20:hover{stroke:rgb(var(--cyan-9)/.2)}.hover\:stroke-cyan-9\/25:hover{stroke:rgb(var(--cyan-9)/.25)}.hover\:stroke-cyan-9\/30:hover{stroke:rgb(var(--cyan-9)/.3)}.hover\:stroke-cyan-9\/40:hover{stroke:rgb(var(--cyan-9)/.4)}.hover\:stroke-cyan-9\/5:hover{stroke:rgb(var(--cyan-9)/.05)}.hover\:stroke-cyan-9\/50:hover{stroke:rgb(var(--cyan-9)/.5)}.hover\:stroke-cyan-9\/60:hover{stroke:rgb(var(--cyan-9)/.6)}.hover\:stroke-cyan-9\/70:hover{stroke:rgb(var(--cyan-9)/.7)}.hover\:stroke-cyan-9\/75:hover{stroke:rgb(var(--cyan-9)/.75)}.hover\:stroke-cyan-9\/80:hover{stroke:rgb(var(--cyan-9)/.8)}.hover\:stroke-cyan-9\/90:hover{stroke:rgb(var(--cyan-9)/.9)}.hover\:stroke-cyan-9\/95:hover{stroke:rgb(var(--cyan-9)/.95)}.hover\:stroke-error:hover{stroke:rgb(var(--error))}.hover\:stroke-error\/0:hover{stroke:rgb(var(--error)/0)}.hover\:stroke-error\/10:hover{stroke:rgb(var(--error)/.1)}.hover\:stroke-error\/100:hover{stroke:rgb(var(--error)/1)}.hover\:stroke-error\/20:hover{stroke:rgb(var(--error)/.2)}.hover\:stroke-error\/25:hover{stroke:rgb(var(--error)/.25)}.hover\:stroke-error\/30:hover{stroke:rgb(var(--error)/.3)}.hover\:stroke-error\/40:hover{stroke:rgb(var(--error)/.4)}.hover\:stroke-error\/5:hover{stroke:rgb(var(--error)/.05)}.hover\:stroke-error\/50:hover{stroke:rgb(var(--error)/.5)}.hover\:stroke-error\/60:hover{stroke:rgb(var(--error)/.6)}.hover\:stroke-error\/70:hover{stroke:rgb(var(--error)/.7)}.hover\:stroke-error\/75:hover{stroke:rgb(var(--error)/.75)}.hover\:stroke-error\/80:hover{stroke:rgb(var(--error)/.8)}.hover\:stroke-error\/90:hover{stroke:rgb(var(--error)/.9)}.hover\:stroke-error\/95:hover{stroke:rgb(var(--error)/.95)}.hover\:stroke-gray-1\/0:hover{stroke:rgb(var(--gray-1)/0)}.hover\:stroke-gray-1\/10:hover{stroke:rgb(var(--gray-1)/.1)}.hover\:stroke-gray-1\/100:hover{stroke:rgb(var(--gray-1)/1)}.hover\:stroke-gray-1\/20:hover{stroke:rgb(var(--gray-1)/.2)}.hover\:stroke-gray-1\/25:hover{stroke:rgb(var(--gray-1)/.25)}.hover\:stroke-gray-1\/30:hover{stroke:rgb(var(--gray-1)/.3)}.hover\:stroke-gray-1\/40:hover{stroke:rgb(var(--gray-1)/.4)}.hover\:stroke-gray-1\/5:hover{stroke:rgb(var(--gray-1)/.05)}.hover\:stroke-gray-1\/50:hover{stroke:rgb(var(--gray-1)/.5)}.hover\:stroke-gray-1\/60:hover{stroke:rgb(var(--gray-1)/.6)}.hover\:stroke-gray-1\/70:hover{stroke:rgb(var(--gray-1)/.7)}.hover\:stroke-gray-1\/75:hover{stroke:rgb(var(--gray-1)/.75)}.hover\:stroke-gray-1\/80:hover{stroke:rgb(var(--gray-1)/.8)}.hover\:stroke-gray-1\/90:hover{stroke:rgb(var(--gray-1)/.9)}.hover\:stroke-gray-1\/95:hover{stroke:rgb(var(--gray-1)/.95)}.hover\:stroke-gray-10\/0:hover{stroke:rgb(var(--gray-10)/0)}.hover\:stroke-gray-10\/10:hover{stroke:rgb(var(--gray-10)/.1)}.hover\:stroke-gray-10\/100:hover{stroke:rgb(var(--gray-10)/1)}.hover\:stroke-gray-10\/20:hover{stroke:rgb(var(--gray-10)/.2)}.hover\:stroke-gray-10\/25:hover{stroke:rgb(var(--gray-10)/.25)}.hover\:stroke-gray-10\/30:hover{stroke:rgb(var(--gray-10)/.3)}.hover\:stroke-gray-10\/40:hover{stroke:rgb(var(--gray-10)/.4)}.hover\:stroke-gray-10\/5:hover{stroke:rgb(var(--gray-10)/.05)}.hover\:stroke-gray-10\/50:hover{stroke:rgb(var(--gray-10)/.5)}.hover\:stroke-gray-10\/60:hover{stroke:rgb(var(--gray-10)/.6)}.hover\:stroke-gray-10\/70:hover{stroke:rgb(var(--gray-10)/.7)}.hover\:stroke-gray-10\/75:hover{stroke:rgb(var(--gray-10)/.75)}.hover\:stroke-gray-10\/80:hover{stroke:rgb(var(--gray-10)/.8)}.hover\:stroke-gray-10\/90:hover{stroke:rgb(var(--gray-10)/.9)}.hover\:stroke-gray-10\/95:hover{stroke:rgb(var(--gray-10)/.95)}.hover\:stroke-gray-2\/0:hover{stroke:rgb(var(--gray-2)/0)}.hover\:stroke-gray-2\/10:hover{stroke:rgb(var(--gray-2)/.1)}.hover\:stroke-gray-2\/100:hover{stroke:rgb(var(--gray-2)/1)}.hover\:stroke-gray-2\/20:hover{stroke:rgb(var(--gray-2)/.2)}.hover\:stroke-gray-2\/25:hover{stroke:rgb(var(--gray-2)/.25)}.hover\:stroke-gray-2\/30:hover{stroke:rgb(var(--gray-2)/.3)}.hover\:stroke-gray-2\/40:hover{stroke:rgb(var(--gray-2)/.4)}.hover\:stroke-gray-2\/5:hover{stroke:rgb(var(--gray-2)/.05)}.hover\:stroke-gray-2\/50:hover{stroke:rgb(var(--gray-2)/.5)}.hover\:stroke-gray-2\/60:hover{stroke:rgb(var(--gray-2)/.6)}.hover\:stroke-gray-2\/70:hover{stroke:rgb(var(--gray-2)/.7)}.hover\:stroke-gray-2\/75:hover{stroke:rgb(var(--gray-2)/.75)}.hover\:stroke-gray-2\/80:hover{stroke:rgb(var(--gray-2)/.8)}.hover\:stroke-gray-2\/90:hover{stroke:rgb(var(--gray-2)/.9)}.hover\:stroke-gray-2\/95:hover{stroke:rgb(var(--gray-2)/.95)}.hover\:stroke-gray-3\/0:hover{stroke:rgb(var(--gray-3)/0)}.hover\:stroke-gray-3\/10:hover{stroke:rgb(var(--gray-3)/.1)}.hover\:stroke-gray-3\/100:hover{stroke:rgb(var(--gray-3)/1)}.hover\:stroke-gray-3\/20:hover{stroke:rgb(var(--gray-3)/.2)}.hover\:stroke-gray-3\/25:hover{stroke:rgb(var(--gray-3)/.25)}.hover\:stroke-gray-3\/30:hover{stroke:rgb(var(--gray-3)/.3)}.hover\:stroke-gray-3\/40:hover{stroke:rgb(var(--gray-3)/.4)}.hover\:stroke-gray-3\/5:hover{stroke:rgb(var(--gray-3)/.05)}.hover\:stroke-gray-3\/50:hover{stroke:rgb(var(--gray-3)/.5)}.hover\:stroke-gray-3\/60:hover{stroke:rgb(var(--gray-3)/.6)}.hover\:stroke-gray-3\/70:hover{stroke:rgb(var(--gray-3)/.7)}.hover\:stroke-gray-3\/75:hover{stroke:rgb(var(--gray-3)/.75)}.hover\:stroke-gray-3\/80:hover{stroke:rgb(var(--gray-3)/.8)}.hover\:stroke-gray-3\/90:hover{stroke:rgb(var(--gray-3)/.9)}.hover\:stroke-gray-3\/95:hover{stroke:rgb(var(--gray-3)/.95)}.hover\:stroke-gray-4\/0:hover{stroke:rgb(var(--gray-4)/0)}.hover\:stroke-gray-4\/10:hover{stroke:rgb(var(--gray-4)/.1)}.hover\:stroke-gray-4\/100:hover{stroke:rgb(var(--gray-4)/1)}.hover\:stroke-gray-4\/20:hover{stroke:rgb(var(--gray-4)/.2)}.hover\:stroke-gray-4\/25:hover{stroke:rgb(var(--gray-4)/.25)}.hover\:stroke-gray-4\/30:hover{stroke:rgb(var(--gray-4)/.3)}.hover\:stroke-gray-4\/40:hover{stroke:rgb(var(--gray-4)/.4)}.hover\:stroke-gray-4\/5:hover{stroke:rgb(var(--gray-4)/.05)}.hover\:stroke-gray-4\/50:hover{stroke:rgb(var(--gray-4)/.5)}.hover\:stroke-gray-4\/60:hover{stroke:rgb(var(--gray-4)/.6)}.hover\:stroke-gray-4\/70:hover{stroke:rgb(var(--gray-4)/.7)}.hover\:stroke-gray-4\/75:hover{stroke:rgb(var(--gray-4)/.75)}.hover\:stroke-gray-4\/80:hover{stroke:rgb(var(--gray-4)/.8)}.hover\:stroke-gray-4\/90:hover{stroke:rgb(var(--gray-4)/.9)}.hover\:stroke-gray-4\/95:hover{stroke:rgb(var(--gray-4)/.95)}.hover\:stroke-gray-5\/0:hover{stroke:rgb(var(--gray-5)/0)}.hover\:stroke-gray-5\/10:hover{stroke:rgb(var(--gray-5)/.1)}.hover\:stroke-gray-5\/100:hover{stroke:rgb(var(--gray-5)/1)}.hover\:stroke-gray-5\/20:hover{stroke:rgb(var(--gray-5)/.2)}.hover\:stroke-gray-5\/25:hover{stroke:rgb(var(--gray-5)/.25)}.hover\:stroke-gray-5\/30:hover{stroke:rgb(var(--gray-5)/.3)}.hover\:stroke-gray-5\/40:hover{stroke:rgb(var(--gray-5)/.4)}.hover\:stroke-gray-5\/5:hover{stroke:rgb(var(--gray-5)/.05)}.hover\:stroke-gray-5\/50:hover{stroke:rgb(var(--gray-5)/.5)}.hover\:stroke-gray-5\/60:hover{stroke:rgb(var(--gray-5)/.6)}.hover\:stroke-gray-5\/70:hover{stroke:rgb(var(--gray-5)/.7)}.hover\:stroke-gray-5\/75:hover{stroke:rgb(var(--gray-5)/.75)}.hover\:stroke-gray-5\/80:hover{stroke:rgb(var(--gray-5)/.8)}.hover\:stroke-gray-5\/90:hover{stroke:rgb(var(--gray-5)/.9)}.hover\:stroke-gray-5\/95:hover{stroke:rgb(var(--gray-5)/.95)}.hover\:stroke-gray-6\/0:hover{stroke:rgb(var(--gray-6)/0)}.hover\:stroke-gray-6\/10:hover{stroke:rgb(var(--gray-6)/.1)}.hover\:stroke-gray-6\/100:hover{stroke:rgb(var(--gray-6)/1)}.hover\:stroke-gray-6\/20:hover{stroke:rgb(var(--gray-6)/.2)}.hover\:stroke-gray-6\/25:hover{stroke:rgb(var(--gray-6)/.25)}.hover\:stroke-gray-6\/30:hover{stroke:rgb(var(--gray-6)/.3)}.hover\:stroke-gray-6\/40:hover{stroke:rgb(var(--gray-6)/.4)}.hover\:stroke-gray-6\/5:hover{stroke:rgb(var(--gray-6)/.05)}.hover\:stroke-gray-6\/50:hover{stroke:rgb(var(--gray-6)/.5)}.hover\:stroke-gray-6\/60:hover{stroke:rgb(var(--gray-6)/.6)}.hover\:stroke-gray-6\/70:hover{stroke:rgb(var(--gray-6)/.7)}.hover\:stroke-gray-6\/75:hover{stroke:rgb(var(--gray-6)/.75)}.hover\:stroke-gray-6\/80:hover{stroke:rgb(var(--gray-6)/.8)}.hover\:stroke-gray-6\/90:hover{stroke:rgb(var(--gray-6)/.9)}.hover\:stroke-gray-6\/95:hover{stroke:rgb(var(--gray-6)/.95)}.hover\:stroke-gray-7\/0:hover{stroke:rgb(var(--gray-7)/0)}.hover\:stroke-gray-7\/10:hover{stroke:rgb(var(--gray-7)/.1)}.hover\:stroke-gray-7\/100:hover{stroke:rgb(var(--gray-7)/1)}.hover\:stroke-gray-7\/20:hover{stroke:rgb(var(--gray-7)/.2)}.hover\:stroke-gray-7\/25:hover{stroke:rgb(var(--gray-7)/.25)}.hover\:stroke-gray-7\/30:hover{stroke:rgb(var(--gray-7)/.3)}.hover\:stroke-gray-7\/40:hover{stroke:rgb(var(--gray-7)/.4)}.hover\:stroke-gray-7\/5:hover{stroke:rgb(var(--gray-7)/.05)}.hover\:stroke-gray-7\/50:hover{stroke:rgb(var(--gray-7)/.5)}.hover\:stroke-gray-7\/60:hover{stroke:rgb(var(--gray-7)/.6)}.hover\:stroke-gray-7\/70:hover{stroke:rgb(var(--gray-7)/.7)}.hover\:stroke-gray-7\/75:hover{stroke:rgb(var(--gray-7)/.75)}.hover\:stroke-gray-7\/80:hover{stroke:rgb(var(--gray-7)/.8)}.hover\:stroke-gray-7\/90:hover{stroke:rgb(var(--gray-7)/.9)}.hover\:stroke-gray-7\/95:hover{stroke:rgb(var(--gray-7)/.95)}.hover\:stroke-gray-8\/0:hover{stroke:rgb(var(--gray-8)/0)}.hover\:stroke-gray-8\/10:hover{stroke:rgb(var(--gray-8)/.1)}.hover\:stroke-gray-8\/100:hover{stroke:rgb(var(--gray-8)/1)}.hover\:stroke-gray-8\/20:hover{stroke:rgb(var(--gray-8)/.2)}.hover\:stroke-gray-8\/25:hover{stroke:rgb(var(--gray-8)/.25)}.hover\:stroke-gray-8\/30:hover{stroke:rgb(var(--gray-8)/.3)}.hover\:stroke-gray-8\/40:hover{stroke:rgb(var(--gray-8)/.4)}.hover\:stroke-gray-8\/5:hover{stroke:rgb(var(--gray-8)/.05)}.hover\:stroke-gray-8\/50:hover{stroke:rgb(var(--gray-8)/.5)}.hover\:stroke-gray-8\/60:hover{stroke:rgb(var(--gray-8)/.6)}.hover\:stroke-gray-8\/70:hover{stroke:rgb(var(--gray-8)/.7)}.hover\:stroke-gray-8\/75:hover{stroke:rgb(var(--gray-8)/.75)}.hover\:stroke-gray-8\/80:hover{stroke:rgb(var(--gray-8)/.8)}.hover\:stroke-gray-8\/90:hover{stroke:rgb(var(--gray-8)/.9)}.hover\:stroke-gray-8\/95:hover{stroke:rgb(var(--gray-8)/.95)}.hover\:stroke-gray-9\/0:hover{stroke:rgb(var(--gray-9)/0)}.hover\:stroke-gray-9\/10:hover{stroke:rgb(var(--gray-9)/.1)}.hover\:stroke-gray-9\/100:hover{stroke:rgb(var(--gray-9)/1)}.hover\:stroke-gray-9\/20:hover{stroke:rgb(var(--gray-9)/.2)}.hover\:stroke-gray-9\/25:hover{stroke:rgb(var(--gray-9)/.25)}.hover\:stroke-gray-9\/30:hover{stroke:rgb(var(--gray-9)/.3)}.hover\:stroke-gray-9\/40:hover{stroke:rgb(var(--gray-9)/.4)}.hover\:stroke-gray-9\/5:hover{stroke:rgb(var(--gray-9)/.05)}.hover\:stroke-gray-9\/50:hover{stroke:rgb(var(--gray-9)/.5)}.hover\:stroke-gray-9\/60:hover{stroke:rgb(var(--gray-9)/.6)}.hover\:stroke-gray-9\/70:hover{stroke:rgb(var(--gray-9)/.7)}.hover\:stroke-gray-9\/75:hover{stroke:rgb(var(--gray-9)/.75)}.hover\:stroke-gray-9\/80:hover{stroke:rgb(var(--gray-9)/.8)}.hover\:stroke-gray-9\/90:hover{stroke:rgb(var(--gray-9)/.9)}.hover\:stroke-gray-9\/95:hover{stroke:rgb(var(--gray-9)/.95)}.hover\:stroke-green-1\/0:hover{stroke:rgb(var(--green-1)/0)}.hover\:stroke-green-1\/10:hover{stroke:rgb(var(--green-1)/.1)}.hover\:stroke-green-1\/100:hover{stroke:rgb(var(--green-1)/1)}.hover\:stroke-green-1\/20:hover{stroke:rgb(var(--green-1)/.2)}.hover\:stroke-green-1\/25:hover{stroke:rgb(var(--green-1)/.25)}.hover\:stroke-green-1\/30:hover{stroke:rgb(var(--green-1)/.3)}.hover\:stroke-green-1\/40:hover{stroke:rgb(var(--green-1)/.4)}.hover\:stroke-green-1\/5:hover{stroke:rgb(var(--green-1)/.05)}.hover\:stroke-green-1\/50:hover{stroke:rgb(var(--green-1)/.5)}.hover\:stroke-green-1\/60:hover{stroke:rgb(var(--green-1)/.6)}.hover\:stroke-green-1\/70:hover{stroke:rgb(var(--green-1)/.7)}.hover\:stroke-green-1\/75:hover{stroke:rgb(var(--green-1)/.75)}.hover\:stroke-green-1\/80:hover{stroke:rgb(var(--green-1)/.8)}.hover\:stroke-green-1\/90:hover{stroke:rgb(var(--green-1)/.9)}.hover\:stroke-green-1\/95:hover{stroke:rgb(var(--green-1)/.95)}.hover\:stroke-green-10\/0:hover{stroke:rgb(var(--green-10)/0)}.hover\:stroke-green-10\/10:hover{stroke:rgb(var(--green-10)/.1)}.hover\:stroke-green-10\/100:hover{stroke:rgb(var(--green-10)/1)}.hover\:stroke-green-10\/20:hover{stroke:rgb(var(--green-10)/.2)}.hover\:stroke-green-10\/25:hover{stroke:rgb(var(--green-10)/.25)}.hover\:stroke-green-10\/30:hover{stroke:rgb(var(--green-10)/.3)}.hover\:stroke-green-10\/40:hover{stroke:rgb(var(--green-10)/.4)}.hover\:stroke-green-10\/5:hover{stroke:rgb(var(--green-10)/.05)}.hover\:stroke-green-10\/50:hover{stroke:rgb(var(--green-10)/.5)}.hover\:stroke-green-10\/60:hover{stroke:rgb(var(--green-10)/.6)}.hover\:stroke-green-10\/70:hover{stroke:rgb(var(--green-10)/.7)}.hover\:stroke-green-10\/75:hover{stroke:rgb(var(--green-10)/.75)}.hover\:stroke-green-10\/80:hover{stroke:rgb(var(--green-10)/.8)}.hover\:stroke-green-10\/90:hover{stroke:rgb(var(--green-10)/.9)}.hover\:stroke-green-10\/95:hover{stroke:rgb(var(--green-10)/.95)}.hover\:stroke-green-2\/0:hover{stroke:rgb(var(--green-2)/0)}.hover\:stroke-green-2\/10:hover{stroke:rgb(var(--green-2)/.1)}.hover\:stroke-green-2\/100:hover{stroke:rgb(var(--green-2)/1)}.hover\:stroke-green-2\/20:hover{stroke:rgb(var(--green-2)/.2)}.hover\:stroke-green-2\/25:hover{stroke:rgb(var(--green-2)/.25)}.hover\:stroke-green-2\/30:hover{stroke:rgb(var(--green-2)/.3)}.hover\:stroke-green-2\/40:hover{stroke:rgb(var(--green-2)/.4)}.hover\:stroke-green-2\/5:hover{stroke:rgb(var(--green-2)/.05)}.hover\:stroke-green-2\/50:hover{stroke:rgb(var(--green-2)/.5)}.hover\:stroke-green-2\/60:hover{stroke:rgb(var(--green-2)/.6)}.hover\:stroke-green-2\/70:hover{stroke:rgb(var(--green-2)/.7)}.hover\:stroke-green-2\/75:hover{stroke:rgb(var(--green-2)/.75)}.hover\:stroke-green-2\/80:hover{stroke:rgb(var(--green-2)/.8)}.hover\:stroke-green-2\/90:hover{stroke:rgb(var(--green-2)/.9)}.hover\:stroke-green-2\/95:hover{stroke:rgb(var(--green-2)/.95)}.hover\:stroke-green-3\/0:hover{stroke:rgb(var(--green-3)/0)}.hover\:stroke-green-3\/10:hover{stroke:rgb(var(--green-3)/.1)}.hover\:stroke-green-3\/100:hover{stroke:rgb(var(--green-3)/1)}.hover\:stroke-green-3\/20:hover{stroke:rgb(var(--green-3)/.2)}.hover\:stroke-green-3\/25:hover{stroke:rgb(var(--green-3)/.25)}.hover\:stroke-green-3\/30:hover{stroke:rgb(var(--green-3)/.3)}.hover\:stroke-green-3\/40:hover{stroke:rgb(var(--green-3)/.4)}.hover\:stroke-green-3\/5:hover{stroke:rgb(var(--green-3)/.05)}.hover\:stroke-green-3\/50:hover{stroke:rgb(var(--green-3)/.5)}.hover\:stroke-green-3\/60:hover{stroke:rgb(var(--green-3)/.6)}.hover\:stroke-green-3\/70:hover{stroke:rgb(var(--green-3)/.7)}.hover\:stroke-green-3\/75:hover{stroke:rgb(var(--green-3)/.75)}.hover\:stroke-green-3\/80:hover{stroke:rgb(var(--green-3)/.8)}.hover\:stroke-green-3\/90:hover{stroke:rgb(var(--green-3)/.9)}.hover\:stroke-green-3\/95:hover{stroke:rgb(var(--green-3)/.95)}.hover\:stroke-green-4\/0:hover{stroke:rgb(var(--green-4)/0)}.hover\:stroke-green-4\/10:hover{stroke:rgb(var(--green-4)/.1)}.hover\:stroke-green-4\/100:hover{stroke:rgb(var(--green-4)/1)}.hover\:stroke-green-4\/20:hover{stroke:rgb(var(--green-4)/.2)}.hover\:stroke-green-4\/25:hover{stroke:rgb(var(--green-4)/.25)}.hover\:stroke-green-4\/30:hover{stroke:rgb(var(--green-4)/.3)}.hover\:stroke-green-4\/40:hover{stroke:rgb(var(--green-4)/.4)}.hover\:stroke-green-4\/5:hover{stroke:rgb(var(--green-4)/.05)}.hover\:stroke-green-4\/50:hover{stroke:rgb(var(--green-4)/.5)}.hover\:stroke-green-4\/60:hover{stroke:rgb(var(--green-4)/.6)}.hover\:stroke-green-4\/70:hover{stroke:rgb(var(--green-4)/.7)}.hover\:stroke-green-4\/75:hover{stroke:rgb(var(--green-4)/.75)}.hover\:stroke-green-4\/80:hover{stroke:rgb(var(--green-4)/.8)}.hover\:stroke-green-4\/90:hover{stroke:rgb(var(--green-4)/.9)}.hover\:stroke-green-4\/95:hover{stroke:rgb(var(--green-4)/.95)}.hover\:stroke-green-5\/0:hover{stroke:rgb(var(--green-5)/0)}.hover\:stroke-green-5\/10:hover{stroke:rgb(var(--green-5)/.1)}.hover\:stroke-green-5\/100:hover{stroke:rgb(var(--green-5)/1)}.hover\:stroke-green-5\/20:hover{stroke:rgb(var(--green-5)/.2)}.hover\:stroke-green-5\/25:hover{stroke:rgb(var(--green-5)/.25)}.hover\:stroke-green-5\/30:hover{stroke:rgb(var(--green-5)/.3)}.hover\:stroke-green-5\/40:hover{stroke:rgb(var(--green-5)/.4)}.hover\:stroke-green-5\/5:hover{stroke:rgb(var(--green-5)/.05)}.hover\:stroke-green-5\/50:hover{stroke:rgb(var(--green-5)/.5)}.hover\:stroke-green-5\/60:hover{stroke:rgb(var(--green-5)/.6)}.hover\:stroke-green-5\/70:hover{stroke:rgb(var(--green-5)/.7)}.hover\:stroke-green-5\/75:hover{stroke:rgb(var(--green-5)/.75)}.hover\:stroke-green-5\/80:hover{stroke:rgb(var(--green-5)/.8)}.hover\:stroke-green-5\/90:hover{stroke:rgb(var(--green-5)/.9)}.hover\:stroke-green-5\/95:hover{stroke:rgb(var(--green-5)/.95)}.hover\:stroke-green-6\/0:hover{stroke:rgb(var(--green-6)/0)}.hover\:stroke-green-6\/10:hover{stroke:rgb(var(--green-6)/.1)}.hover\:stroke-green-6\/100:hover{stroke:rgb(var(--green-6)/1)}.hover\:stroke-green-6\/20:hover{stroke:rgb(var(--green-6)/.2)}.hover\:stroke-green-6\/25:hover{stroke:rgb(var(--green-6)/.25)}.hover\:stroke-green-6\/30:hover{stroke:rgb(var(--green-6)/.3)}.hover\:stroke-green-6\/40:hover{stroke:rgb(var(--green-6)/.4)}.hover\:stroke-green-6\/5:hover{stroke:rgb(var(--green-6)/.05)}.hover\:stroke-green-6\/50:hover{stroke:rgb(var(--green-6)/.5)}.hover\:stroke-green-6\/60:hover{stroke:rgb(var(--green-6)/.6)}.hover\:stroke-green-6\/70:hover{stroke:rgb(var(--green-6)/.7)}.hover\:stroke-green-6\/75:hover{stroke:rgb(var(--green-6)/.75)}.hover\:stroke-green-6\/80:hover{stroke:rgb(var(--green-6)/.8)}.hover\:stroke-green-6\/90:hover{stroke:rgb(var(--green-6)/.9)}.hover\:stroke-green-6\/95:hover{stroke:rgb(var(--green-6)/.95)}.hover\:stroke-green-7\/0:hover{stroke:rgb(var(--green-7)/0)}.hover\:stroke-green-7\/10:hover{stroke:rgb(var(--green-7)/.1)}.hover\:stroke-green-7\/100:hover{stroke:rgb(var(--green-7)/1)}.hover\:stroke-green-7\/20:hover{stroke:rgb(var(--green-7)/.2)}.hover\:stroke-green-7\/25:hover{stroke:rgb(var(--green-7)/.25)}.hover\:stroke-green-7\/30:hover{stroke:rgb(var(--green-7)/.3)}.hover\:stroke-green-7\/40:hover{stroke:rgb(var(--green-7)/.4)}.hover\:stroke-green-7\/5:hover{stroke:rgb(var(--green-7)/.05)}.hover\:stroke-green-7\/50:hover{stroke:rgb(var(--green-7)/.5)}.hover\:stroke-green-7\/60:hover{stroke:rgb(var(--green-7)/.6)}.hover\:stroke-green-7\/70:hover{stroke:rgb(var(--green-7)/.7)}.hover\:stroke-green-7\/75:hover{stroke:rgb(var(--green-7)/.75)}.hover\:stroke-green-7\/80:hover{stroke:rgb(var(--green-7)/.8)}.hover\:stroke-green-7\/90:hover{stroke:rgb(var(--green-7)/.9)}.hover\:stroke-green-7\/95:hover{stroke:rgb(var(--green-7)/.95)}.hover\:stroke-green-8\/0:hover{stroke:rgb(var(--green-8)/0)}.hover\:stroke-green-8\/10:hover{stroke:rgb(var(--green-8)/.1)}.hover\:stroke-green-8\/100:hover{stroke:rgb(var(--green-8)/1)}.hover\:stroke-green-8\/20:hover{stroke:rgb(var(--green-8)/.2)}.hover\:stroke-green-8\/25:hover{stroke:rgb(var(--green-8)/.25)}.hover\:stroke-green-8\/30:hover{stroke:rgb(var(--green-8)/.3)}.hover\:stroke-green-8\/40:hover{stroke:rgb(var(--green-8)/.4)}.hover\:stroke-green-8\/5:hover{stroke:rgb(var(--green-8)/.05)}.hover\:stroke-green-8\/50:hover{stroke:rgb(var(--green-8)/.5)}.hover\:stroke-green-8\/60:hover{stroke:rgb(var(--green-8)/.6)}.hover\:stroke-green-8\/70:hover{stroke:rgb(var(--green-8)/.7)}.hover\:stroke-green-8\/75:hover{stroke:rgb(var(--green-8)/.75)}.hover\:stroke-green-8\/80:hover{stroke:rgb(var(--green-8)/.8)}.hover\:stroke-green-8\/90:hover{stroke:rgb(var(--green-8)/.9)}.hover\:stroke-green-8\/95:hover{stroke:rgb(var(--green-8)/.95)}.hover\:stroke-green-9\/0:hover{stroke:rgb(var(--green-9)/0)}.hover\:stroke-green-9\/10:hover{stroke:rgb(var(--green-9)/.1)}.hover\:stroke-green-9\/100:hover{stroke:rgb(var(--green-9)/1)}.hover\:stroke-green-9\/20:hover{stroke:rgb(var(--green-9)/.2)}.hover\:stroke-green-9\/25:hover{stroke:rgb(var(--green-9)/.25)}.hover\:stroke-green-9\/30:hover{stroke:rgb(var(--green-9)/.3)}.hover\:stroke-green-9\/40:hover{stroke:rgb(var(--green-9)/.4)}.hover\:stroke-green-9\/5:hover{stroke:rgb(var(--green-9)/.05)}.hover\:stroke-green-9\/50:hover{stroke:rgb(var(--green-9)/.5)}.hover\:stroke-green-9\/60:hover{stroke:rgb(var(--green-9)/.6)}.hover\:stroke-green-9\/70:hover{stroke:rgb(var(--green-9)/.7)}.hover\:stroke-green-9\/75:hover{stroke:rgb(var(--green-9)/.75)}.hover\:stroke-green-9\/80:hover{stroke:rgb(var(--green-9)/.8)}.hover\:stroke-green-9\/90:hover{stroke:rgb(var(--green-9)/.9)}.hover\:stroke-green-9\/95:hover{stroke:rgb(var(--green-9)/.95)}.hover\:stroke-pink-1\/0:hover{stroke:rgb(var(--pink-1)/0)}.hover\:stroke-pink-1\/10:hover{stroke:rgb(var(--pink-1)/.1)}.hover\:stroke-pink-1\/100:hover{stroke:rgb(var(--pink-1)/1)}.hover\:stroke-pink-1\/20:hover{stroke:rgb(var(--pink-1)/.2)}.hover\:stroke-pink-1\/25:hover{stroke:rgb(var(--pink-1)/.25)}.hover\:stroke-pink-1\/30:hover{stroke:rgb(var(--pink-1)/.3)}.hover\:stroke-pink-1\/40:hover{stroke:rgb(var(--pink-1)/.4)}.hover\:stroke-pink-1\/5:hover{stroke:rgb(var(--pink-1)/.05)}.hover\:stroke-pink-1\/50:hover{stroke:rgb(var(--pink-1)/.5)}.hover\:stroke-pink-1\/60:hover{stroke:rgb(var(--pink-1)/.6)}.hover\:stroke-pink-1\/70:hover{stroke:rgb(var(--pink-1)/.7)}.hover\:stroke-pink-1\/75:hover{stroke:rgb(var(--pink-1)/.75)}.hover\:stroke-pink-1\/80:hover{stroke:rgb(var(--pink-1)/.8)}.hover\:stroke-pink-1\/90:hover{stroke:rgb(var(--pink-1)/.9)}.hover\:stroke-pink-1\/95:hover{stroke:rgb(var(--pink-1)/.95)}.hover\:stroke-pink-10\/0:hover{stroke:rgb(var(--pink-10)/0)}.hover\:stroke-pink-10\/10:hover{stroke:rgb(var(--pink-10)/.1)}.hover\:stroke-pink-10\/100:hover{stroke:rgb(var(--pink-10)/1)}.hover\:stroke-pink-10\/20:hover{stroke:rgb(var(--pink-10)/.2)}.hover\:stroke-pink-10\/25:hover{stroke:rgb(var(--pink-10)/.25)}.hover\:stroke-pink-10\/30:hover{stroke:rgb(var(--pink-10)/.3)}.hover\:stroke-pink-10\/40:hover{stroke:rgb(var(--pink-10)/.4)}.hover\:stroke-pink-10\/5:hover{stroke:rgb(var(--pink-10)/.05)}.hover\:stroke-pink-10\/50:hover{stroke:rgb(var(--pink-10)/.5)}.hover\:stroke-pink-10\/60:hover{stroke:rgb(var(--pink-10)/.6)}.hover\:stroke-pink-10\/70:hover{stroke:rgb(var(--pink-10)/.7)}.hover\:stroke-pink-10\/75:hover{stroke:rgb(var(--pink-10)/.75)}.hover\:stroke-pink-10\/80:hover{stroke:rgb(var(--pink-10)/.8)}.hover\:stroke-pink-10\/90:hover{stroke:rgb(var(--pink-10)/.9)}.hover\:stroke-pink-10\/95:hover{stroke:rgb(var(--pink-10)/.95)}.hover\:stroke-pink-2\/0:hover{stroke:rgb(var(--pink-2)/0)}.hover\:stroke-pink-2\/10:hover{stroke:rgb(var(--pink-2)/.1)}.hover\:stroke-pink-2\/100:hover{stroke:rgb(var(--pink-2)/1)}.hover\:stroke-pink-2\/20:hover{stroke:rgb(var(--pink-2)/.2)}.hover\:stroke-pink-2\/25:hover{stroke:rgb(var(--pink-2)/.25)}.hover\:stroke-pink-2\/30:hover{stroke:rgb(var(--pink-2)/.3)}.hover\:stroke-pink-2\/40:hover{stroke:rgb(var(--pink-2)/.4)}.hover\:stroke-pink-2\/5:hover{stroke:rgb(var(--pink-2)/.05)}.hover\:stroke-pink-2\/50:hover{stroke:rgb(var(--pink-2)/.5)}.hover\:stroke-pink-2\/60:hover{stroke:rgb(var(--pink-2)/.6)}.hover\:stroke-pink-2\/70:hover{stroke:rgb(var(--pink-2)/.7)}.hover\:stroke-pink-2\/75:hover{stroke:rgb(var(--pink-2)/.75)}.hover\:stroke-pink-2\/80:hover{stroke:rgb(var(--pink-2)/.8)}.hover\:stroke-pink-2\/90:hover{stroke:rgb(var(--pink-2)/.9)}.hover\:stroke-pink-2\/95:hover{stroke:rgb(var(--pink-2)/.95)}.hover\:stroke-pink-3\/0:hover{stroke:rgb(var(--pink-3)/0)}.hover\:stroke-pink-3\/10:hover{stroke:rgb(var(--pink-3)/.1)}.hover\:stroke-pink-3\/100:hover{stroke:rgb(var(--pink-3)/1)}.hover\:stroke-pink-3\/20:hover{stroke:rgb(var(--pink-3)/.2)}.hover\:stroke-pink-3\/25:hover{stroke:rgb(var(--pink-3)/.25)}.hover\:stroke-pink-3\/30:hover{stroke:rgb(var(--pink-3)/.3)}.hover\:stroke-pink-3\/40:hover{stroke:rgb(var(--pink-3)/.4)}.hover\:stroke-pink-3\/5:hover{stroke:rgb(var(--pink-3)/.05)}.hover\:stroke-pink-3\/50:hover{stroke:rgb(var(--pink-3)/.5)}.hover\:stroke-pink-3\/60:hover{stroke:rgb(var(--pink-3)/.6)}.hover\:stroke-pink-3\/70:hover{stroke:rgb(var(--pink-3)/.7)}.hover\:stroke-pink-3\/75:hover{stroke:rgb(var(--pink-3)/.75)}.hover\:stroke-pink-3\/80:hover{stroke:rgb(var(--pink-3)/.8)}.hover\:stroke-pink-3\/90:hover{stroke:rgb(var(--pink-3)/.9)}.hover\:stroke-pink-3\/95:hover{stroke:rgb(var(--pink-3)/.95)}.hover\:stroke-pink-4\/0:hover{stroke:rgb(var(--pink-4)/0)}.hover\:stroke-pink-4\/10:hover{stroke:rgb(var(--pink-4)/.1)}.hover\:stroke-pink-4\/100:hover{stroke:rgb(var(--pink-4)/1)}.hover\:stroke-pink-4\/20:hover{stroke:rgb(var(--pink-4)/.2)}.hover\:stroke-pink-4\/25:hover{stroke:rgb(var(--pink-4)/.25)}.hover\:stroke-pink-4\/30:hover{stroke:rgb(var(--pink-4)/.3)}.hover\:stroke-pink-4\/40:hover{stroke:rgb(var(--pink-4)/.4)}.hover\:stroke-pink-4\/5:hover{stroke:rgb(var(--pink-4)/.05)}.hover\:stroke-pink-4\/50:hover{stroke:rgb(var(--pink-4)/.5)}.hover\:stroke-pink-4\/60:hover{stroke:rgb(var(--pink-4)/.6)}.hover\:stroke-pink-4\/70:hover{stroke:rgb(var(--pink-4)/.7)}.hover\:stroke-pink-4\/75:hover{stroke:rgb(var(--pink-4)/.75)}.hover\:stroke-pink-4\/80:hover{stroke:rgb(var(--pink-4)/.8)}.hover\:stroke-pink-4\/90:hover{stroke:rgb(var(--pink-4)/.9)}.hover\:stroke-pink-4\/95:hover{stroke:rgb(var(--pink-4)/.95)}.hover\:stroke-pink-5\/0:hover{stroke:rgb(var(--pink-5)/0)}.hover\:stroke-pink-5\/10:hover{stroke:rgb(var(--pink-5)/.1)}.hover\:stroke-pink-5\/100:hover{stroke:rgb(var(--pink-5)/1)}.hover\:stroke-pink-5\/20:hover{stroke:rgb(var(--pink-5)/.2)}.hover\:stroke-pink-5\/25:hover{stroke:rgb(var(--pink-5)/.25)}.hover\:stroke-pink-5\/30:hover{stroke:rgb(var(--pink-5)/.3)}.hover\:stroke-pink-5\/40:hover{stroke:rgb(var(--pink-5)/.4)}.hover\:stroke-pink-5\/5:hover{stroke:rgb(var(--pink-5)/.05)}.hover\:stroke-pink-5\/50:hover{stroke:rgb(var(--pink-5)/.5)}.hover\:stroke-pink-5\/60:hover{stroke:rgb(var(--pink-5)/.6)}.hover\:stroke-pink-5\/70:hover{stroke:rgb(var(--pink-5)/.7)}.hover\:stroke-pink-5\/75:hover{stroke:rgb(var(--pink-5)/.75)}.hover\:stroke-pink-5\/80:hover{stroke:rgb(var(--pink-5)/.8)}.hover\:stroke-pink-5\/90:hover{stroke:rgb(var(--pink-5)/.9)}.hover\:stroke-pink-5\/95:hover{stroke:rgb(var(--pink-5)/.95)}.hover\:stroke-pink-6\/0:hover{stroke:rgb(var(--pink-6)/0)}.hover\:stroke-pink-6\/10:hover{stroke:rgb(var(--pink-6)/.1)}.hover\:stroke-pink-6\/100:hover{stroke:rgb(var(--pink-6)/1)}.hover\:stroke-pink-6\/20:hover{stroke:rgb(var(--pink-6)/.2)}.hover\:stroke-pink-6\/25:hover{stroke:rgb(var(--pink-6)/.25)}.hover\:stroke-pink-6\/30:hover{stroke:rgb(var(--pink-6)/.3)}.hover\:stroke-pink-6\/40:hover{stroke:rgb(var(--pink-6)/.4)}.hover\:stroke-pink-6\/5:hover{stroke:rgb(var(--pink-6)/.05)}.hover\:stroke-pink-6\/50:hover{stroke:rgb(var(--pink-6)/.5)}.hover\:stroke-pink-6\/60:hover{stroke:rgb(var(--pink-6)/.6)}.hover\:stroke-pink-6\/70:hover{stroke:rgb(var(--pink-6)/.7)}.hover\:stroke-pink-6\/75:hover{stroke:rgb(var(--pink-6)/.75)}.hover\:stroke-pink-6\/80:hover{stroke:rgb(var(--pink-6)/.8)}.hover\:stroke-pink-6\/90:hover{stroke:rgb(var(--pink-6)/.9)}.hover\:stroke-pink-6\/95:hover{stroke:rgb(var(--pink-6)/.95)}.hover\:stroke-pink-7\/0:hover{stroke:rgb(var(--pink-7)/0)}.hover\:stroke-pink-7\/10:hover{stroke:rgb(var(--pink-7)/.1)}.hover\:stroke-pink-7\/100:hover{stroke:rgb(var(--pink-7)/1)}.hover\:stroke-pink-7\/20:hover{stroke:rgb(var(--pink-7)/.2)}.hover\:stroke-pink-7\/25:hover{stroke:rgb(var(--pink-7)/.25)}.hover\:stroke-pink-7\/30:hover{stroke:rgb(var(--pink-7)/.3)}.hover\:stroke-pink-7\/40:hover{stroke:rgb(var(--pink-7)/.4)}.hover\:stroke-pink-7\/5:hover{stroke:rgb(var(--pink-7)/.05)}.hover\:stroke-pink-7\/50:hover{stroke:rgb(var(--pink-7)/.5)}.hover\:stroke-pink-7\/60:hover{stroke:rgb(var(--pink-7)/.6)}.hover\:stroke-pink-7\/70:hover{stroke:rgb(var(--pink-7)/.7)}.hover\:stroke-pink-7\/75:hover{stroke:rgb(var(--pink-7)/.75)}.hover\:stroke-pink-7\/80:hover{stroke:rgb(var(--pink-7)/.8)}.hover\:stroke-pink-7\/90:hover{stroke:rgb(var(--pink-7)/.9)}.hover\:stroke-pink-7\/95:hover{stroke:rgb(var(--pink-7)/.95)}.hover\:stroke-pink-8\/0:hover{stroke:rgb(var(--pink-8)/0)}.hover\:stroke-pink-8\/10:hover{stroke:rgb(var(--pink-8)/.1)}.hover\:stroke-pink-8\/100:hover{stroke:rgb(var(--pink-8)/1)}.hover\:stroke-pink-8\/20:hover{stroke:rgb(var(--pink-8)/.2)}.hover\:stroke-pink-8\/25:hover{stroke:rgb(var(--pink-8)/.25)}.hover\:stroke-pink-8\/30:hover{stroke:rgb(var(--pink-8)/.3)}.hover\:stroke-pink-8\/40:hover{stroke:rgb(var(--pink-8)/.4)}.hover\:stroke-pink-8\/5:hover{stroke:rgb(var(--pink-8)/.05)}.hover\:stroke-pink-8\/50:hover{stroke:rgb(var(--pink-8)/.5)}.hover\:stroke-pink-8\/60:hover{stroke:rgb(var(--pink-8)/.6)}.hover\:stroke-pink-8\/70:hover{stroke:rgb(var(--pink-8)/.7)}.hover\:stroke-pink-8\/75:hover{stroke:rgb(var(--pink-8)/.75)}.hover\:stroke-pink-8\/80:hover{stroke:rgb(var(--pink-8)/.8)}.hover\:stroke-pink-8\/90:hover{stroke:rgb(var(--pink-8)/.9)}.hover\:stroke-pink-8\/95:hover{stroke:rgb(var(--pink-8)/.95)}.hover\:stroke-pink-9\/0:hover{stroke:rgb(var(--pink-9)/0)}.hover\:stroke-pink-9\/10:hover{stroke:rgb(var(--pink-9)/.1)}.hover\:stroke-pink-9\/100:hover{stroke:rgb(var(--pink-9)/1)}.hover\:stroke-pink-9\/20:hover{stroke:rgb(var(--pink-9)/.2)}.hover\:stroke-pink-9\/25:hover{stroke:rgb(var(--pink-9)/.25)}.hover\:stroke-pink-9\/30:hover{stroke:rgb(var(--pink-9)/.3)}.hover\:stroke-pink-9\/40:hover{stroke:rgb(var(--pink-9)/.4)}.hover\:stroke-pink-9\/5:hover{stroke:rgb(var(--pink-9)/.05)}.hover\:stroke-pink-9\/50:hover{stroke:rgb(var(--pink-9)/.5)}.hover\:stroke-pink-9\/60:hover{stroke:rgb(var(--pink-9)/.6)}.hover\:stroke-pink-9\/70:hover{stroke:rgb(var(--pink-9)/.7)}.hover\:stroke-pink-9\/75:hover{stroke:rgb(var(--pink-9)/.75)}.hover\:stroke-pink-9\/80:hover{stroke:rgb(var(--pink-9)/.8)}.hover\:stroke-pink-9\/90:hover{stroke:rgb(var(--pink-9)/.9)}.hover\:stroke-pink-9\/95:hover{stroke:rgb(var(--pink-9)/.95)}.hover\:stroke-primary:hover{stroke:rgb(var(--primary))}.hover\:stroke-primary\/0:hover{stroke:rgb(var(--primary)/0)}.hover\:stroke-primary\/10:hover{stroke:rgb(var(--primary)/.1)}.hover\:stroke-primary\/100:hover{stroke:rgb(var(--primary)/1)}.hover\:stroke-primary\/20:hover{stroke:rgb(var(--primary)/.2)}.hover\:stroke-primary\/25:hover{stroke:rgb(var(--primary)/.25)}.hover\:stroke-primary\/30:hover{stroke:rgb(var(--primary)/.3)}.hover\:stroke-primary\/40:hover{stroke:rgb(var(--primary)/.4)}.hover\:stroke-primary\/5:hover{stroke:rgb(var(--primary)/.05)}.hover\:stroke-primary\/50:hover{stroke:rgb(var(--primary)/.5)}.hover\:stroke-primary\/60:hover{stroke:rgb(var(--primary)/.6)}.hover\:stroke-primary\/70:hover{stroke:rgb(var(--primary)/.7)}.hover\:stroke-primary\/75:hover{stroke:rgb(var(--primary)/.75)}.hover\:stroke-primary\/80:hover{stroke:rgb(var(--primary)/.8)}.hover\:stroke-primary\/90:hover{stroke:rgb(var(--primary)/.9)}.hover\:stroke-primary\/95:hover{stroke:rgb(var(--primary)/.95)}.hover\:stroke-purple-1\/0:hover{stroke:rgb(var(--purple-1)/0)}.hover\:stroke-purple-1\/10:hover{stroke:rgb(var(--purple-1)/.1)}.hover\:stroke-purple-1\/100:hover{stroke:rgb(var(--purple-1)/1)}.hover\:stroke-purple-1\/20:hover{stroke:rgb(var(--purple-1)/.2)}.hover\:stroke-purple-1\/25:hover{stroke:rgb(var(--purple-1)/.25)}.hover\:stroke-purple-1\/30:hover{stroke:rgb(var(--purple-1)/.3)}.hover\:stroke-purple-1\/40:hover{stroke:rgb(var(--purple-1)/.4)}.hover\:stroke-purple-1\/5:hover{stroke:rgb(var(--purple-1)/.05)}.hover\:stroke-purple-1\/50:hover{stroke:rgb(var(--purple-1)/.5)}.hover\:stroke-purple-1\/60:hover{stroke:rgb(var(--purple-1)/.6)}.hover\:stroke-purple-1\/70:hover{stroke:rgb(var(--purple-1)/.7)}.hover\:stroke-purple-1\/75:hover{stroke:rgb(var(--purple-1)/.75)}.hover\:stroke-purple-1\/80:hover{stroke:rgb(var(--purple-1)/.8)}.hover\:stroke-purple-1\/90:hover{stroke:rgb(var(--purple-1)/.9)}.hover\:stroke-purple-1\/95:hover{stroke:rgb(var(--purple-1)/.95)}.hover\:stroke-purple-10\/0:hover{stroke:rgb(var(--purple-10)/0)}.hover\:stroke-purple-10\/10:hover{stroke:rgb(var(--purple-10)/.1)}.hover\:stroke-purple-10\/100:hover{stroke:rgb(var(--purple-10)/1)}.hover\:stroke-purple-10\/20:hover{stroke:rgb(var(--purple-10)/.2)}.hover\:stroke-purple-10\/25:hover{stroke:rgb(var(--purple-10)/.25)}.hover\:stroke-purple-10\/30:hover{stroke:rgb(var(--purple-10)/.3)}.hover\:stroke-purple-10\/40:hover{stroke:rgb(var(--purple-10)/.4)}.hover\:stroke-purple-10\/5:hover{stroke:rgb(var(--purple-10)/.05)}.hover\:stroke-purple-10\/50:hover{stroke:rgb(var(--purple-10)/.5)}.hover\:stroke-purple-10\/60:hover{stroke:rgb(var(--purple-10)/.6)}.hover\:stroke-purple-10\/70:hover{stroke:rgb(var(--purple-10)/.7)}.hover\:stroke-purple-10\/75:hover{stroke:rgb(var(--purple-10)/.75)}.hover\:stroke-purple-10\/80:hover{stroke:rgb(var(--purple-10)/.8)}.hover\:stroke-purple-10\/90:hover{stroke:rgb(var(--purple-10)/.9)}.hover\:stroke-purple-10\/95:hover{stroke:rgb(var(--purple-10)/.95)}.hover\:stroke-purple-2\/0:hover{stroke:rgb(var(--purple-2)/0)}.hover\:stroke-purple-2\/10:hover{stroke:rgb(var(--purple-2)/.1)}.hover\:stroke-purple-2\/100:hover{stroke:rgb(var(--purple-2)/1)}.hover\:stroke-purple-2\/20:hover{stroke:rgb(var(--purple-2)/.2)}.hover\:stroke-purple-2\/25:hover{stroke:rgb(var(--purple-2)/.25)}.hover\:stroke-purple-2\/30:hover{stroke:rgb(var(--purple-2)/.3)}.hover\:stroke-purple-2\/40:hover{stroke:rgb(var(--purple-2)/.4)}.hover\:stroke-purple-2\/5:hover{stroke:rgb(var(--purple-2)/.05)}.hover\:stroke-purple-2\/50:hover{stroke:rgb(var(--purple-2)/.5)}.hover\:stroke-purple-2\/60:hover{stroke:rgb(var(--purple-2)/.6)}.hover\:stroke-purple-2\/70:hover{stroke:rgb(var(--purple-2)/.7)}.hover\:stroke-purple-2\/75:hover{stroke:rgb(var(--purple-2)/.75)}.hover\:stroke-purple-2\/80:hover{stroke:rgb(var(--purple-2)/.8)}.hover\:stroke-purple-2\/90:hover{stroke:rgb(var(--purple-2)/.9)}.hover\:stroke-purple-2\/95:hover{stroke:rgb(var(--purple-2)/.95)}.hover\:stroke-purple-3\/0:hover{stroke:rgb(var(--purple-3)/0)}.hover\:stroke-purple-3\/10:hover{stroke:rgb(var(--purple-3)/.1)}.hover\:stroke-purple-3\/100:hover{stroke:rgb(var(--purple-3)/1)}.hover\:stroke-purple-3\/20:hover{stroke:rgb(var(--purple-3)/.2)}.hover\:stroke-purple-3\/25:hover{stroke:rgb(var(--purple-3)/.25)}.hover\:stroke-purple-3\/30:hover{stroke:rgb(var(--purple-3)/.3)}.hover\:stroke-purple-3\/40:hover{stroke:rgb(var(--purple-3)/.4)}.hover\:stroke-purple-3\/5:hover{stroke:rgb(var(--purple-3)/.05)}.hover\:stroke-purple-3\/50:hover{stroke:rgb(var(--purple-3)/.5)}.hover\:stroke-purple-3\/60:hover{stroke:rgb(var(--purple-3)/.6)}.hover\:stroke-purple-3\/70:hover{stroke:rgb(var(--purple-3)/.7)}.hover\:stroke-purple-3\/75:hover{stroke:rgb(var(--purple-3)/.75)}.hover\:stroke-purple-3\/80:hover{stroke:rgb(var(--purple-3)/.8)}.hover\:stroke-purple-3\/90:hover{stroke:rgb(var(--purple-3)/.9)}.hover\:stroke-purple-3\/95:hover{stroke:rgb(var(--purple-3)/.95)}.hover\:stroke-purple-4\/0:hover{stroke:rgb(var(--purple-4)/0)}.hover\:stroke-purple-4\/10:hover{stroke:rgb(var(--purple-4)/.1)}.hover\:stroke-purple-4\/100:hover{stroke:rgb(var(--purple-4)/1)}.hover\:stroke-purple-4\/20:hover{stroke:rgb(var(--purple-4)/.2)}.hover\:stroke-purple-4\/25:hover{stroke:rgb(var(--purple-4)/.25)}.hover\:stroke-purple-4\/30:hover{stroke:rgb(var(--purple-4)/.3)}.hover\:stroke-purple-4\/40:hover{stroke:rgb(var(--purple-4)/.4)}.hover\:stroke-purple-4\/5:hover{stroke:rgb(var(--purple-4)/.05)}.hover\:stroke-purple-4\/50:hover{stroke:rgb(var(--purple-4)/.5)}.hover\:stroke-purple-4\/60:hover{stroke:rgb(var(--purple-4)/.6)}.hover\:stroke-purple-4\/70:hover{stroke:rgb(var(--purple-4)/.7)}.hover\:stroke-purple-4\/75:hover{stroke:rgb(var(--purple-4)/.75)}.hover\:stroke-purple-4\/80:hover{stroke:rgb(var(--purple-4)/.8)}.hover\:stroke-purple-4\/90:hover{stroke:rgb(var(--purple-4)/.9)}.hover\:stroke-purple-4\/95:hover{stroke:rgb(var(--purple-4)/.95)}.hover\:stroke-purple-5\/0:hover{stroke:rgb(var(--purple-5)/0)}.hover\:stroke-purple-5\/10:hover{stroke:rgb(var(--purple-5)/.1)}.hover\:stroke-purple-5\/100:hover{stroke:rgb(var(--purple-5)/1)}.hover\:stroke-purple-5\/20:hover{stroke:rgb(var(--purple-5)/.2)}.hover\:stroke-purple-5\/25:hover{stroke:rgb(var(--purple-5)/.25)}.hover\:stroke-purple-5\/30:hover{stroke:rgb(var(--purple-5)/.3)}.hover\:stroke-purple-5\/40:hover{stroke:rgb(var(--purple-5)/.4)}.hover\:stroke-purple-5\/5:hover{stroke:rgb(var(--purple-5)/.05)}.hover\:stroke-purple-5\/50:hover{stroke:rgb(var(--purple-5)/.5)}.hover\:stroke-purple-5\/60:hover{stroke:rgb(var(--purple-5)/.6)}.hover\:stroke-purple-5\/70:hover{stroke:rgb(var(--purple-5)/.7)}.hover\:stroke-purple-5\/75:hover{stroke:rgb(var(--purple-5)/.75)}.hover\:stroke-purple-5\/80:hover{stroke:rgb(var(--purple-5)/.8)}.hover\:stroke-purple-5\/90:hover{stroke:rgb(var(--purple-5)/.9)}.hover\:stroke-purple-5\/95:hover{stroke:rgb(var(--purple-5)/.95)}.hover\:stroke-purple-6\/0:hover{stroke:rgb(var(--purple-6)/0)}.hover\:stroke-purple-6\/10:hover{stroke:rgb(var(--purple-6)/.1)}.hover\:stroke-purple-6\/100:hover{stroke:rgb(var(--purple-6)/1)}.hover\:stroke-purple-6\/20:hover{stroke:rgb(var(--purple-6)/.2)}.hover\:stroke-purple-6\/25:hover{stroke:rgb(var(--purple-6)/.25)}.hover\:stroke-purple-6\/30:hover{stroke:rgb(var(--purple-6)/.3)}.hover\:stroke-purple-6\/40:hover{stroke:rgb(var(--purple-6)/.4)}.hover\:stroke-purple-6\/5:hover{stroke:rgb(var(--purple-6)/.05)}.hover\:stroke-purple-6\/50:hover{stroke:rgb(var(--purple-6)/.5)}.hover\:stroke-purple-6\/60:hover{stroke:rgb(var(--purple-6)/.6)}.hover\:stroke-purple-6\/70:hover{stroke:rgb(var(--purple-6)/.7)}.hover\:stroke-purple-6\/75:hover{stroke:rgb(var(--purple-6)/.75)}.hover\:stroke-purple-6\/80:hover{stroke:rgb(var(--purple-6)/.8)}.hover\:stroke-purple-6\/90:hover{stroke:rgb(var(--purple-6)/.9)}.hover\:stroke-purple-6\/95:hover{stroke:rgb(var(--purple-6)/.95)}.hover\:stroke-purple-7\/0:hover{stroke:rgb(var(--purple-7)/0)}.hover\:stroke-purple-7\/10:hover{stroke:rgb(var(--purple-7)/.1)}.hover\:stroke-purple-7\/100:hover{stroke:rgb(var(--purple-7)/1)}.hover\:stroke-purple-7\/20:hover{stroke:rgb(var(--purple-7)/.2)}.hover\:stroke-purple-7\/25:hover{stroke:rgb(var(--purple-7)/.25)}.hover\:stroke-purple-7\/30:hover{stroke:rgb(var(--purple-7)/.3)}.hover\:stroke-purple-7\/40:hover{stroke:rgb(var(--purple-7)/.4)}.hover\:stroke-purple-7\/5:hover{stroke:rgb(var(--purple-7)/.05)}.hover\:stroke-purple-7\/50:hover{stroke:rgb(var(--purple-7)/.5)}.hover\:stroke-purple-7\/60:hover{stroke:rgb(var(--purple-7)/.6)}.hover\:stroke-purple-7\/70:hover{stroke:rgb(var(--purple-7)/.7)}.hover\:stroke-purple-7\/75:hover{stroke:rgb(var(--purple-7)/.75)}.hover\:stroke-purple-7\/80:hover{stroke:rgb(var(--purple-7)/.8)}.hover\:stroke-purple-7\/90:hover{stroke:rgb(var(--purple-7)/.9)}.hover\:stroke-purple-7\/95:hover{stroke:rgb(var(--purple-7)/.95)}.hover\:stroke-purple-8\/0:hover{stroke:rgb(var(--purple-8)/0)}.hover\:stroke-purple-8\/10:hover{stroke:rgb(var(--purple-8)/.1)}.hover\:stroke-purple-8\/100:hover{stroke:rgb(var(--purple-8)/1)}.hover\:stroke-purple-8\/20:hover{stroke:rgb(var(--purple-8)/.2)}.hover\:stroke-purple-8\/25:hover{stroke:rgb(var(--purple-8)/.25)}.hover\:stroke-purple-8\/30:hover{stroke:rgb(var(--purple-8)/.3)}.hover\:stroke-purple-8\/40:hover{stroke:rgb(var(--purple-8)/.4)}.hover\:stroke-purple-8\/5:hover{stroke:rgb(var(--purple-8)/.05)}.hover\:stroke-purple-8\/50:hover{stroke:rgb(var(--purple-8)/.5)}.hover\:stroke-purple-8\/60:hover{stroke:rgb(var(--purple-8)/.6)}.hover\:stroke-purple-8\/70:hover{stroke:rgb(var(--purple-8)/.7)}.hover\:stroke-purple-8\/75:hover{stroke:rgb(var(--purple-8)/.75)}.hover\:stroke-purple-8\/80:hover{stroke:rgb(var(--purple-8)/.8)}.hover\:stroke-purple-8\/90:hover{stroke:rgb(var(--purple-8)/.9)}.hover\:stroke-purple-8\/95:hover{stroke:rgb(var(--purple-8)/.95)}.hover\:stroke-purple-9\/0:hover{stroke:rgb(var(--purple-9)/0)}.hover\:stroke-purple-9\/10:hover{stroke:rgb(var(--purple-9)/.1)}.hover\:stroke-purple-9\/100:hover{stroke:rgb(var(--purple-9)/1)}.hover\:stroke-purple-9\/20:hover{stroke:rgb(var(--purple-9)/.2)}.hover\:stroke-purple-9\/25:hover{stroke:rgb(var(--purple-9)/.25)}.hover\:stroke-purple-9\/30:hover{stroke:rgb(var(--purple-9)/.3)}.hover\:stroke-purple-9\/40:hover{stroke:rgb(var(--purple-9)/.4)}.hover\:stroke-purple-9\/5:hover{stroke:rgb(var(--purple-9)/.05)}.hover\:stroke-purple-9\/50:hover{stroke:rgb(var(--purple-9)/.5)}.hover\:stroke-purple-9\/60:hover{stroke:rgb(var(--purple-9)/.6)}.hover\:stroke-purple-9\/70:hover{stroke:rgb(var(--purple-9)/.7)}.hover\:stroke-purple-9\/75:hover{stroke:rgb(var(--purple-9)/.75)}.hover\:stroke-purple-9\/80:hover{stroke:rgb(var(--purple-9)/.8)}.hover\:stroke-purple-9\/90:hover{stroke:rgb(var(--purple-9)/.9)}.hover\:stroke-purple-9\/95:hover{stroke:rgb(var(--purple-9)/.95)}.hover\:stroke-red-1\/0:hover{stroke:rgb(var(--red-1)/0)}.hover\:stroke-red-1\/10:hover{stroke:rgb(var(--red-1)/.1)}.hover\:stroke-red-1\/100:hover{stroke:rgb(var(--red-1)/1)}.hover\:stroke-red-1\/20:hover{stroke:rgb(var(--red-1)/.2)}.hover\:stroke-red-1\/25:hover{stroke:rgb(var(--red-1)/.25)}.hover\:stroke-red-1\/30:hover{stroke:rgb(var(--red-1)/.3)}.hover\:stroke-red-1\/40:hover{stroke:rgb(var(--red-1)/.4)}.hover\:stroke-red-1\/5:hover{stroke:rgb(var(--red-1)/.05)}.hover\:stroke-red-1\/50:hover{stroke:rgb(var(--red-1)/.5)}.hover\:stroke-red-1\/60:hover{stroke:rgb(var(--red-1)/.6)}.hover\:stroke-red-1\/70:hover{stroke:rgb(var(--red-1)/.7)}.hover\:stroke-red-1\/75:hover{stroke:rgb(var(--red-1)/.75)}.hover\:stroke-red-1\/80:hover{stroke:rgb(var(--red-1)/.8)}.hover\:stroke-red-1\/90:hover{stroke:rgb(var(--red-1)/.9)}.hover\:stroke-red-1\/95:hover{stroke:rgb(var(--red-1)/.95)}.hover\:stroke-red-10\/0:hover{stroke:rgb(var(--red-10)/0)}.hover\:stroke-red-10\/10:hover{stroke:rgb(var(--red-10)/.1)}.hover\:stroke-red-10\/100:hover{stroke:rgb(var(--red-10)/1)}.hover\:stroke-red-10\/20:hover{stroke:rgb(var(--red-10)/.2)}.hover\:stroke-red-10\/25:hover{stroke:rgb(var(--red-10)/.25)}.hover\:stroke-red-10\/30:hover{stroke:rgb(var(--red-10)/.3)}.hover\:stroke-red-10\/40:hover{stroke:rgb(var(--red-10)/.4)}.hover\:stroke-red-10\/5:hover{stroke:rgb(var(--red-10)/.05)}.hover\:stroke-red-10\/50:hover{stroke:rgb(var(--red-10)/.5)}.hover\:stroke-red-10\/60:hover{stroke:rgb(var(--red-10)/.6)}.hover\:stroke-red-10\/70:hover{stroke:rgb(var(--red-10)/.7)}.hover\:stroke-red-10\/75:hover{stroke:rgb(var(--red-10)/.75)}.hover\:stroke-red-10\/80:hover{stroke:rgb(var(--red-10)/.8)}.hover\:stroke-red-10\/90:hover{stroke:rgb(var(--red-10)/.9)}.hover\:stroke-red-10\/95:hover{stroke:rgb(var(--red-10)/.95)}.hover\:stroke-red-2\/0:hover{stroke:rgb(var(--red-2)/0)}.hover\:stroke-red-2\/10:hover{stroke:rgb(var(--red-2)/.1)}.hover\:stroke-red-2\/100:hover{stroke:rgb(var(--red-2)/1)}.hover\:stroke-red-2\/20:hover{stroke:rgb(var(--red-2)/.2)}.hover\:stroke-red-2\/25:hover{stroke:rgb(var(--red-2)/.25)}.hover\:stroke-red-2\/30:hover{stroke:rgb(var(--red-2)/.3)}.hover\:stroke-red-2\/40:hover{stroke:rgb(var(--red-2)/.4)}.hover\:stroke-red-2\/5:hover{stroke:rgb(var(--red-2)/.05)}.hover\:stroke-red-2\/50:hover{stroke:rgb(var(--red-2)/.5)}.hover\:stroke-red-2\/60:hover{stroke:rgb(var(--red-2)/.6)}.hover\:stroke-red-2\/70:hover{stroke:rgb(var(--red-2)/.7)}.hover\:stroke-red-2\/75:hover{stroke:rgb(var(--red-2)/.75)}.hover\:stroke-red-2\/80:hover{stroke:rgb(var(--red-2)/.8)}.hover\:stroke-red-2\/90:hover{stroke:rgb(var(--red-2)/.9)}.hover\:stroke-red-2\/95:hover{stroke:rgb(var(--red-2)/.95)}.hover\:stroke-red-3\/0:hover{stroke:rgb(var(--red-3)/0)}.hover\:stroke-red-3\/10:hover{stroke:rgb(var(--red-3)/.1)}.hover\:stroke-red-3\/100:hover{stroke:rgb(var(--red-3)/1)}.hover\:stroke-red-3\/20:hover{stroke:rgb(var(--red-3)/.2)}.hover\:stroke-red-3\/25:hover{stroke:rgb(var(--red-3)/.25)}.hover\:stroke-red-3\/30:hover{stroke:rgb(var(--red-3)/.3)}.hover\:stroke-red-3\/40:hover{stroke:rgb(var(--red-3)/.4)}.hover\:stroke-red-3\/5:hover{stroke:rgb(var(--red-3)/.05)}.hover\:stroke-red-3\/50:hover{stroke:rgb(var(--red-3)/.5)}.hover\:stroke-red-3\/60:hover{stroke:rgb(var(--red-3)/.6)}.hover\:stroke-red-3\/70:hover{stroke:rgb(var(--red-3)/.7)}.hover\:stroke-red-3\/75:hover{stroke:rgb(var(--red-3)/.75)}.hover\:stroke-red-3\/80:hover{stroke:rgb(var(--red-3)/.8)}.hover\:stroke-red-3\/90:hover{stroke:rgb(var(--red-3)/.9)}.hover\:stroke-red-3\/95:hover{stroke:rgb(var(--red-3)/.95)}.hover\:stroke-red-4\/0:hover{stroke:rgb(var(--red-4)/0)}.hover\:stroke-red-4\/10:hover{stroke:rgb(var(--red-4)/.1)}.hover\:stroke-red-4\/100:hover{stroke:rgb(var(--red-4)/1)}.hover\:stroke-red-4\/20:hover{stroke:rgb(var(--red-4)/.2)}.hover\:stroke-red-4\/25:hover{stroke:rgb(var(--red-4)/.25)}.hover\:stroke-red-4\/30:hover{stroke:rgb(var(--red-4)/.3)}.hover\:stroke-red-4\/40:hover{stroke:rgb(var(--red-4)/.4)}.hover\:stroke-red-4\/5:hover{stroke:rgb(var(--red-4)/.05)}.hover\:stroke-red-4\/50:hover{stroke:rgb(var(--red-4)/.5)}.hover\:stroke-red-4\/60:hover{stroke:rgb(var(--red-4)/.6)}.hover\:stroke-red-4\/70:hover{stroke:rgb(var(--red-4)/.7)}.hover\:stroke-red-4\/75:hover{stroke:rgb(var(--red-4)/.75)}.hover\:stroke-red-4\/80:hover{stroke:rgb(var(--red-4)/.8)}.hover\:stroke-red-4\/90:hover{stroke:rgb(var(--red-4)/.9)}.hover\:stroke-red-4\/95:hover{stroke:rgb(var(--red-4)/.95)}.hover\:stroke-red-5\/0:hover{stroke:rgb(var(--red-5)/0)}.hover\:stroke-red-5\/10:hover{stroke:rgb(var(--red-5)/.1)}.hover\:stroke-red-5\/100:hover{stroke:rgb(var(--red-5)/1)}.hover\:stroke-red-5\/20:hover{stroke:rgb(var(--red-5)/.2)}.hover\:stroke-red-5\/25:hover{stroke:rgb(var(--red-5)/.25)}.hover\:stroke-red-5\/30:hover{stroke:rgb(var(--red-5)/.3)}.hover\:stroke-red-5\/40:hover{stroke:rgb(var(--red-5)/.4)}.hover\:stroke-red-5\/5:hover{stroke:rgb(var(--red-5)/.05)}.hover\:stroke-red-5\/50:hover{stroke:rgb(var(--red-5)/.5)}.hover\:stroke-red-5\/60:hover{stroke:rgb(var(--red-5)/.6)}.hover\:stroke-red-5\/70:hover{stroke:rgb(var(--red-5)/.7)}.hover\:stroke-red-5\/75:hover{stroke:rgb(var(--red-5)/.75)}.hover\:stroke-red-5\/80:hover{stroke:rgb(var(--red-5)/.8)}.hover\:stroke-red-5\/90:hover{stroke:rgb(var(--red-5)/.9)}.hover\:stroke-red-5\/95:hover{stroke:rgb(var(--red-5)/.95)}.hover\:stroke-red-6\/0:hover{stroke:rgb(var(--red-6)/0)}.hover\:stroke-red-6\/10:hover{stroke:rgb(var(--red-6)/.1)}.hover\:stroke-red-6\/100:hover{stroke:rgb(var(--red-6)/1)}.hover\:stroke-red-6\/20:hover{stroke:rgb(var(--red-6)/.2)}.hover\:stroke-red-6\/25:hover{stroke:rgb(var(--red-6)/.25)}.hover\:stroke-red-6\/30:hover{stroke:rgb(var(--red-6)/.3)}.hover\:stroke-red-6\/40:hover{stroke:rgb(var(--red-6)/.4)}.hover\:stroke-red-6\/5:hover{stroke:rgb(var(--red-6)/.05)}.hover\:stroke-red-6\/50:hover{stroke:rgb(var(--red-6)/.5)}.hover\:stroke-red-6\/60:hover{stroke:rgb(var(--red-6)/.6)}.hover\:stroke-red-6\/70:hover{stroke:rgb(var(--red-6)/.7)}.hover\:stroke-red-6\/75:hover{stroke:rgb(var(--red-6)/.75)}.hover\:stroke-red-6\/80:hover{stroke:rgb(var(--red-6)/.8)}.hover\:stroke-red-6\/90:hover{stroke:rgb(var(--red-6)/.9)}.hover\:stroke-red-6\/95:hover{stroke:rgb(var(--red-6)/.95)}.hover\:stroke-red-7\/0:hover{stroke:rgb(var(--red-7)/0)}.hover\:stroke-red-7\/10:hover{stroke:rgb(var(--red-7)/.1)}.hover\:stroke-red-7\/100:hover{stroke:rgb(var(--red-7)/1)}.hover\:stroke-red-7\/20:hover{stroke:rgb(var(--red-7)/.2)}.hover\:stroke-red-7\/25:hover{stroke:rgb(var(--red-7)/.25)}.hover\:stroke-red-7\/30:hover{stroke:rgb(var(--red-7)/.3)}.hover\:stroke-red-7\/40:hover{stroke:rgb(var(--red-7)/.4)}.hover\:stroke-red-7\/5:hover{stroke:rgb(var(--red-7)/.05)}.hover\:stroke-red-7\/50:hover{stroke:rgb(var(--red-7)/.5)}.hover\:stroke-red-7\/60:hover{stroke:rgb(var(--red-7)/.6)}.hover\:stroke-red-7\/70:hover{stroke:rgb(var(--red-7)/.7)}.hover\:stroke-red-7\/75:hover{stroke:rgb(var(--red-7)/.75)}.hover\:stroke-red-7\/80:hover{stroke:rgb(var(--red-7)/.8)}.hover\:stroke-red-7\/90:hover{stroke:rgb(var(--red-7)/.9)}.hover\:stroke-red-7\/95:hover{stroke:rgb(var(--red-7)/.95)}.hover\:stroke-red-8\/0:hover{stroke:rgb(var(--red-8)/0)}.hover\:stroke-red-8\/10:hover{stroke:rgb(var(--red-8)/.1)}.hover\:stroke-red-8\/100:hover{stroke:rgb(var(--red-8)/1)}.hover\:stroke-red-8\/20:hover{stroke:rgb(var(--red-8)/.2)}.hover\:stroke-red-8\/25:hover{stroke:rgb(var(--red-8)/.25)}.hover\:stroke-red-8\/30:hover{stroke:rgb(var(--red-8)/.3)}.hover\:stroke-red-8\/40:hover{stroke:rgb(var(--red-8)/.4)}.hover\:stroke-red-8\/5:hover{stroke:rgb(var(--red-8)/.05)}.hover\:stroke-red-8\/50:hover{stroke:rgb(var(--red-8)/.5)}.hover\:stroke-red-8\/60:hover{stroke:rgb(var(--red-8)/.6)}.hover\:stroke-red-8\/70:hover{stroke:rgb(var(--red-8)/.7)}.hover\:stroke-red-8\/75:hover{stroke:rgb(var(--red-8)/.75)}.hover\:stroke-red-8\/80:hover{stroke:rgb(var(--red-8)/.8)}.hover\:stroke-red-8\/90:hover{stroke:rgb(var(--red-8)/.9)}.hover\:stroke-red-8\/95:hover{stroke:rgb(var(--red-8)/.95)}.hover\:stroke-red-9\/0:hover{stroke:rgb(var(--red-9)/0)}.hover\:stroke-red-9\/10:hover{stroke:rgb(var(--red-9)/.1)}.hover\:stroke-red-9\/100:hover{stroke:rgb(var(--red-9)/1)}.hover\:stroke-red-9\/20:hover{stroke:rgb(var(--red-9)/.2)}.hover\:stroke-red-9\/25:hover{stroke:rgb(var(--red-9)/.25)}.hover\:stroke-red-9\/30:hover{stroke:rgb(var(--red-9)/.3)}.hover\:stroke-red-9\/40:hover{stroke:rgb(var(--red-9)/.4)}.hover\:stroke-red-9\/5:hover{stroke:rgb(var(--red-9)/.05)}.hover\:stroke-red-9\/50:hover{stroke:rgb(var(--red-9)/.5)}.hover\:stroke-red-9\/60:hover{stroke:rgb(var(--red-9)/.6)}.hover\:stroke-red-9\/70:hover{stroke:rgb(var(--red-9)/.7)}.hover\:stroke-red-9\/75:hover{stroke:rgb(var(--red-9)/.75)}.hover\:stroke-red-9\/80:hover{stroke:rgb(var(--red-9)/.8)}.hover\:stroke-red-9\/90:hover{stroke:rgb(var(--red-9)/.9)}.hover\:stroke-red-9\/95:hover{stroke:rgb(var(--red-9)/.95)}.hover\:stroke-secondary:hover{stroke:rgb(var(--secondary))}.hover\:stroke-secondary\/0:hover{stroke:rgb(var(--secondary)/0)}.hover\:stroke-secondary\/10:hover{stroke:rgb(var(--secondary)/.1)}.hover\:stroke-secondary\/100:hover{stroke:rgb(var(--secondary)/1)}.hover\:stroke-secondary\/20:hover{stroke:rgb(var(--secondary)/.2)}.hover\:stroke-secondary\/25:hover{stroke:rgb(var(--secondary)/.25)}.hover\:stroke-secondary\/30:hover{stroke:rgb(var(--secondary)/.3)}.hover\:stroke-secondary\/40:hover{stroke:rgb(var(--secondary)/.4)}.hover\:stroke-secondary\/5:hover{stroke:rgb(var(--secondary)/.05)}.hover\:stroke-secondary\/50:hover{stroke:rgb(var(--secondary)/.5)}.hover\:stroke-secondary\/60:hover{stroke:rgb(var(--secondary)/.6)}.hover\:stroke-secondary\/70:hover{stroke:rgb(var(--secondary)/.7)}.hover\:stroke-secondary\/75:hover{stroke:rgb(var(--secondary)/.75)}.hover\:stroke-secondary\/80:hover{stroke:rgb(var(--secondary)/.8)}.hover\:stroke-secondary\/90:hover{stroke:rgb(var(--secondary)/.9)}.hover\:stroke-secondary\/95:hover{stroke:rgb(var(--secondary)/.95)}.hover\:stroke-slate-1\/0:hover{stroke:rgb(var(--slate-1)/0)}.hover\:stroke-slate-1\/10:hover{stroke:rgb(var(--slate-1)/.1)}.hover\:stroke-slate-1\/100:hover{stroke:rgb(var(--slate-1)/1)}.hover\:stroke-slate-1\/20:hover{stroke:rgb(var(--slate-1)/.2)}.hover\:stroke-slate-1\/25:hover{stroke:rgb(var(--slate-1)/.25)}.hover\:stroke-slate-1\/30:hover{stroke:rgb(var(--slate-1)/.3)}.hover\:stroke-slate-1\/40:hover{stroke:rgb(var(--slate-1)/.4)}.hover\:stroke-slate-1\/5:hover{stroke:rgb(var(--slate-1)/.05)}.hover\:stroke-slate-1\/50:hover{stroke:rgb(var(--slate-1)/.5)}.hover\:stroke-slate-1\/60:hover{stroke:rgb(var(--slate-1)/.6)}.hover\:stroke-slate-1\/70:hover{stroke:rgb(var(--slate-1)/.7)}.hover\:stroke-slate-1\/75:hover{stroke:rgb(var(--slate-1)/.75)}.hover\:stroke-slate-1\/80:hover{stroke:rgb(var(--slate-1)/.8)}.hover\:stroke-slate-1\/90:hover{stroke:rgb(var(--slate-1)/.9)}.hover\:stroke-slate-1\/95:hover{stroke:rgb(var(--slate-1)/.95)}.hover\:stroke-slate-10\/0:hover{stroke:rgb(var(--slate-10)/0)}.hover\:stroke-slate-10\/10:hover{stroke:rgb(var(--slate-10)/.1)}.hover\:stroke-slate-10\/100:hover{stroke:rgb(var(--slate-10)/1)}.hover\:stroke-slate-10\/20:hover{stroke:rgb(var(--slate-10)/.2)}.hover\:stroke-slate-10\/25:hover{stroke:rgb(var(--slate-10)/.25)}.hover\:stroke-slate-10\/30:hover{stroke:rgb(var(--slate-10)/.3)}.hover\:stroke-slate-10\/40:hover{stroke:rgb(var(--slate-10)/.4)}.hover\:stroke-slate-10\/5:hover{stroke:rgb(var(--slate-10)/.05)}.hover\:stroke-slate-10\/50:hover{stroke:rgb(var(--slate-10)/.5)}.hover\:stroke-slate-10\/60:hover{stroke:rgb(var(--slate-10)/.6)}.hover\:stroke-slate-10\/70:hover{stroke:rgb(var(--slate-10)/.7)}.hover\:stroke-slate-10\/75:hover{stroke:rgb(var(--slate-10)/.75)}.hover\:stroke-slate-10\/80:hover{stroke:rgb(var(--slate-10)/.8)}.hover\:stroke-slate-10\/90:hover{stroke:rgb(var(--slate-10)/.9)}.hover\:stroke-slate-10\/95:hover{stroke:rgb(var(--slate-10)/.95)}.hover\:stroke-slate-2\/0:hover{stroke:rgb(var(--slate-2)/0)}.hover\:stroke-slate-2\/10:hover{stroke:rgb(var(--slate-2)/.1)}.hover\:stroke-slate-2\/100:hover{stroke:rgb(var(--slate-2)/1)}.hover\:stroke-slate-2\/20:hover{stroke:rgb(var(--slate-2)/.2)}.hover\:stroke-slate-2\/25:hover{stroke:rgb(var(--slate-2)/.25)}.hover\:stroke-slate-2\/30:hover{stroke:rgb(var(--slate-2)/.3)}.hover\:stroke-slate-2\/40:hover{stroke:rgb(var(--slate-2)/.4)}.hover\:stroke-slate-2\/5:hover{stroke:rgb(var(--slate-2)/.05)}.hover\:stroke-slate-2\/50:hover{stroke:rgb(var(--slate-2)/.5)}.hover\:stroke-slate-2\/60:hover{stroke:rgb(var(--slate-2)/.6)}.hover\:stroke-slate-2\/70:hover{stroke:rgb(var(--slate-2)/.7)}.hover\:stroke-slate-2\/75:hover{stroke:rgb(var(--slate-2)/.75)}.hover\:stroke-slate-2\/80:hover{stroke:rgb(var(--slate-2)/.8)}.hover\:stroke-slate-2\/90:hover{stroke:rgb(var(--slate-2)/.9)}.hover\:stroke-slate-2\/95:hover{stroke:rgb(var(--slate-2)/.95)}.hover\:stroke-slate-3\/0:hover{stroke:rgb(var(--slate-3)/0)}.hover\:stroke-slate-3\/10:hover{stroke:rgb(var(--slate-3)/.1)}.hover\:stroke-slate-3\/100:hover{stroke:rgb(var(--slate-3)/1)}.hover\:stroke-slate-3\/20:hover{stroke:rgb(var(--slate-3)/.2)}.hover\:stroke-slate-3\/25:hover{stroke:rgb(var(--slate-3)/.25)}.hover\:stroke-slate-3\/30:hover{stroke:rgb(var(--slate-3)/.3)}.hover\:stroke-slate-3\/40:hover{stroke:rgb(var(--slate-3)/.4)}.hover\:stroke-slate-3\/5:hover{stroke:rgb(var(--slate-3)/.05)}.hover\:stroke-slate-3\/50:hover{stroke:rgb(var(--slate-3)/.5)}.hover\:stroke-slate-3\/60:hover{stroke:rgb(var(--slate-3)/.6)}.hover\:stroke-slate-3\/70:hover{stroke:rgb(var(--slate-3)/.7)}.hover\:stroke-slate-3\/75:hover{stroke:rgb(var(--slate-3)/.75)}.hover\:stroke-slate-3\/80:hover{stroke:rgb(var(--slate-3)/.8)}.hover\:stroke-slate-3\/90:hover{stroke:rgb(var(--slate-3)/.9)}.hover\:stroke-slate-3\/95:hover{stroke:rgb(var(--slate-3)/.95)}.hover\:stroke-slate-4\/0:hover{stroke:rgb(var(--slate-4)/0)}.hover\:stroke-slate-4\/10:hover{stroke:rgb(var(--slate-4)/.1)}.hover\:stroke-slate-4\/100:hover{stroke:rgb(var(--slate-4)/1)}.hover\:stroke-slate-4\/20:hover{stroke:rgb(var(--slate-4)/.2)}.hover\:stroke-slate-4\/25:hover{stroke:rgb(var(--slate-4)/.25)}.hover\:stroke-slate-4\/30:hover{stroke:rgb(var(--slate-4)/.3)}.hover\:stroke-slate-4\/40:hover{stroke:rgb(var(--slate-4)/.4)}.hover\:stroke-slate-4\/5:hover{stroke:rgb(var(--slate-4)/.05)}.hover\:stroke-slate-4\/50:hover{stroke:rgb(var(--slate-4)/.5)}.hover\:stroke-slate-4\/60:hover{stroke:rgb(var(--slate-4)/.6)}.hover\:stroke-slate-4\/70:hover{stroke:rgb(var(--slate-4)/.7)}.hover\:stroke-slate-4\/75:hover{stroke:rgb(var(--slate-4)/.75)}.hover\:stroke-slate-4\/80:hover{stroke:rgb(var(--slate-4)/.8)}.hover\:stroke-slate-4\/90:hover{stroke:rgb(var(--slate-4)/.9)}.hover\:stroke-slate-4\/95:hover{stroke:rgb(var(--slate-4)/.95)}.hover\:stroke-slate-5\/0:hover{stroke:rgb(var(--slate-5)/0)}.hover\:stroke-slate-5\/10:hover{stroke:rgb(var(--slate-5)/.1)}.hover\:stroke-slate-5\/100:hover{stroke:rgb(var(--slate-5)/1)}.hover\:stroke-slate-5\/20:hover{stroke:rgb(var(--slate-5)/.2)}.hover\:stroke-slate-5\/25:hover{stroke:rgb(var(--slate-5)/.25)}.hover\:stroke-slate-5\/30:hover{stroke:rgb(var(--slate-5)/.3)}.hover\:stroke-slate-5\/40:hover{stroke:rgb(var(--slate-5)/.4)}.hover\:stroke-slate-5\/5:hover{stroke:rgb(var(--slate-5)/.05)}.hover\:stroke-slate-5\/50:hover{stroke:rgb(var(--slate-5)/.5)}.hover\:stroke-slate-5\/60:hover{stroke:rgb(var(--slate-5)/.6)}.hover\:stroke-slate-5\/70:hover{stroke:rgb(var(--slate-5)/.7)}.hover\:stroke-slate-5\/75:hover{stroke:rgb(var(--slate-5)/.75)}.hover\:stroke-slate-5\/80:hover{stroke:rgb(var(--slate-5)/.8)}.hover\:stroke-slate-5\/90:hover{stroke:rgb(var(--slate-5)/.9)}.hover\:stroke-slate-5\/95:hover{stroke:rgb(var(--slate-5)/.95)}.hover\:stroke-slate-6\/0:hover{stroke:rgb(var(--slate-6)/0)}.hover\:stroke-slate-6\/10:hover{stroke:rgb(var(--slate-6)/.1)}.hover\:stroke-slate-6\/100:hover{stroke:rgb(var(--slate-6)/1)}.hover\:stroke-slate-6\/20:hover{stroke:rgb(var(--slate-6)/.2)}.hover\:stroke-slate-6\/25:hover{stroke:rgb(var(--slate-6)/.25)}.hover\:stroke-slate-6\/30:hover{stroke:rgb(var(--slate-6)/.3)}.hover\:stroke-slate-6\/40:hover{stroke:rgb(var(--slate-6)/.4)}.hover\:stroke-slate-6\/5:hover{stroke:rgb(var(--slate-6)/.05)}.hover\:stroke-slate-6\/50:hover{stroke:rgb(var(--slate-6)/.5)}.hover\:stroke-slate-6\/60:hover{stroke:rgb(var(--slate-6)/.6)}.hover\:stroke-slate-6\/70:hover{stroke:rgb(var(--slate-6)/.7)}.hover\:stroke-slate-6\/75:hover{stroke:rgb(var(--slate-6)/.75)}.hover\:stroke-slate-6\/80:hover{stroke:rgb(var(--slate-6)/.8)}.hover\:stroke-slate-6\/90:hover{stroke:rgb(var(--slate-6)/.9)}.hover\:stroke-slate-6\/95:hover{stroke:rgb(var(--slate-6)/.95)}.hover\:stroke-slate-7\/0:hover{stroke:rgb(var(--slate-7)/0)}.hover\:stroke-slate-7\/10:hover{stroke:rgb(var(--slate-7)/.1)}.hover\:stroke-slate-7\/100:hover{stroke:rgb(var(--slate-7)/1)}.hover\:stroke-slate-7\/20:hover{stroke:rgb(var(--slate-7)/.2)}.hover\:stroke-slate-7\/25:hover{stroke:rgb(var(--slate-7)/.25)}.hover\:stroke-slate-7\/30:hover{stroke:rgb(var(--slate-7)/.3)}.hover\:stroke-slate-7\/40:hover{stroke:rgb(var(--slate-7)/.4)}.hover\:stroke-slate-7\/5:hover{stroke:rgb(var(--slate-7)/.05)}.hover\:stroke-slate-7\/50:hover{stroke:rgb(var(--slate-7)/.5)}.hover\:stroke-slate-7\/60:hover{stroke:rgb(var(--slate-7)/.6)}.hover\:stroke-slate-7\/70:hover{stroke:rgb(var(--slate-7)/.7)}.hover\:stroke-slate-7\/75:hover{stroke:rgb(var(--slate-7)/.75)}.hover\:stroke-slate-7\/80:hover{stroke:rgb(var(--slate-7)/.8)}.hover\:stroke-slate-7\/90:hover{stroke:rgb(var(--slate-7)/.9)}.hover\:stroke-slate-7\/95:hover{stroke:rgb(var(--slate-7)/.95)}.hover\:stroke-slate-8\/0:hover{stroke:rgb(var(--slate-8)/0)}.hover\:stroke-slate-8\/10:hover{stroke:rgb(var(--slate-8)/.1)}.hover\:stroke-slate-8\/100:hover{stroke:rgb(var(--slate-8)/1)}.hover\:stroke-slate-8\/20:hover{stroke:rgb(var(--slate-8)/.2)}.hover\:stroke-slate-8\/25:hover{stroke:rgb(var(--slate-8)/.25)}.hover\:stroke-slate-8\/30:hover{stroke:rgb(var(--slate-8)/.3)}.hover\:stroke-slate-8\/40:hover{stroke:rgb(var(--slate-8)/.4)}.hover\:stroke-slate-8\/5:hover{stroke:rgb(var(--slate-8)/.05)}.hover\:stroke-slate-8\/50:hover{stroke:rgb(var(--slate-8)/.5)}.hover\:stroke-slate-8\/60:hover{stroke:rgb(var(--slate-8)/.6)}.hover\:stroke-slate-8\/70:hover{stroke:rgb(var(--slate-8)/.7)}.hover\:stroke-slate-8\/75:hover{stroke:rgb(var(--slate-8)/.75)}.hover\:stroke-slate-8\/80:hover{stroke:rgb(var(--slate-8)/.8)}.hover\:stroke-slate-8\/90:hover{stroke:rgb(var(--slate-8)/.9)}.hover\:stroke-slate-8\/95:hover{stroke:rgb(var(--slate-8)/.95)}.hover\:stroke-slate-9\/0:hover{stroke:rgb(var(--slate-9)/0)}.hover\:stroke-slate-9\/10:hover{stroke:rgb(var(--slate-9)/.1)}.hover\:stroke-slate-9\/100:hover{stroke:rgb(var(--slate-9)/1)}.hover\:stroke-slate-9\/20:hover{stroke:rgb(var(--slate-9)/.2)}.hover\:stroke-slate-9\/25:hover{stroke:rgb(var(--slate-9)/.25)}.hover\:stroke-slate-9\/30:hover{stroke:rgb(var(--slate-9)/.3)}.hover\:stroke-slate-9\/40:hover{stroke:rgb(var(--slate-9)/.4)}.hover\:stroke-slate-9\/5:hover{stroke:rgb(var(--slate-9)/.05)}.hover\:stroke-slate-9\/50:hover{stroke:rgb(var(--slate-9)/.5)}.hover\:stroke-slate-9\/60:hover{stroke:rgb(var(--slate-9)/.6)}.hover\:stroke-slate-9\/70:hover{stroke:rgb(var(--slate-9)/.7)}.hover\:stroke-slate-9\/75:hover{stroke:rgb(var(--slate-9)/.75)}.hover\:stroke-slate-9\/80:hover{stroke:rgb(var(--slate-9)/.8)}.hover\:stroke-slate-9\/90:hover{stroke:rgb(var(--slate-9)/.9)}.hover\:stroke-slate-9\/95:hover{stroke:rgb(var(--slate-9)/.95)}.hover\:stroke-success:hover{stroke:rgb(var(--success))}.hover\:stroke-success\/0:hover{stroke:rgb(var(--success)/0)}.hover\:stroke-success\/10:hover{stroke:rgb(var(--success)/.1)}.hover\:stroke-success\/100:hover{stroke:rgb(var(--success)/1)}.hover\:stroke-success\/20:hover{stroke:rgb(var(--success)/.2)}.hover\:stroke-success\/25:hover{stroke:rgb(var(--success)/.25)}.hover\:stroke-success\/30:hover{stroke:rgb(var(--success)/.3)}.hover\:stroke-success\/40:hover{stroke:rgb(var(--success)/.4)}.hover\:stroke-success\/5:hover{stroke:rgb(var(--success)/.05)}.hover\:stroke-success\/50:hover{stroke:rgb(var(--success)/.5)}.hover\:stroke-success\/60:hover{stroke:rgb(var(--success)/.6)}.hover\:stroke-success\/70:hover{stroke:rgb(var(--success)/.7)}.hover\:stroke-success\/75:hover{stroke:rgb(var(--success)/.75)}.hover\:stroke-success\/80:hover{stroke:rgb(var(--success)/.8)}.hover\:stroke-success\/90:hover{stroke:rgb(var(--success)/.9)}.hover\:stroke-success\/95:hover{stroke:rgb(var(--success)/.95)}.hover\:stroke-warning:hover{stroke:rgb(var(--warning))}.hover\:stroke-warning\/0:hover{stroke:rgb(var(--warning)/0)}.hover\:stroke-warning\/10:hover{stroke:rgb(var(--warning)/.1)}.hover\:stroke-warning\/100:hover{stroke:rgb(var(--warning)/1)}.hover\:stroke-warning\/20:hover{stroke:rgb(var(--warning)/.2)}.hover\:stroke-warning\/25:hover{stroke:rgb(var(--warning)/.25)}.hover\:stroke-warning\/30:hover{stroke:rgb(var(--warning)/.3)}.hover\:stroke-warning\/40:hover{stroke:rgb(var(--warning)/.4)}.hover\:stroke-warning\/5:hover{stroke:rgb(var(--warning)/.05)}.hover\:stroke-warning\/50:hover{stroke:rgb(var(--warning)/.5)}.hover\:stroke-warning\/60:hover{stroke:rgb(var(--warning)/.6)}.hover\:stroke-warning\/70:hover{stroke:rgb(var(--warning)/.7)}.hover\:stroke-warning\/75:hover{stroke:rgb(var(--warning)/.75)}.hover\:stroke-warning\/80:hover{stroke:rgb(var(--warning)/.8)}.hover\:stroke-warning\/90:hover{stroke:rgb(var(--warning)/.9)}.hover\:stroke-warning\/95:hover{stroke:rgb(var(--warning)/.95)}.hover\:stroke-white:hover{stroke:#fff}.hover\:stroke-white\/0:hover{stroke:hsla(0,0%,100%,0)}.hover\:stroke-white\/10:hover{stroke:hsla(0,0%,100%,.1)}.hover\:stroke-white\/100:hover{stroke:#fff}.hover\:stroke-white\/20:hover{stroke:hsla(0,0%,100%,.2)}.hover\:stroke-white\/25:hover{stroke:hsla(0,0%,100%,.25)}.hover\:stroke-white\/30:hover{stroke:hsla(0,0%,100%,.3)}.hover\:stroke-white\/40:hover{stroke:hsla(0,0%,100%,.4)}.hover\:stroke-white\/5:hover{stroke:hsla(0,0%,100%,.05)}.hover\:stroke-white\/50:hover{stroke:hsla(0,0%,100%,.5)}.hover\:stroke-white\/60:hover{stroke:hsla(0,0%,100%,.6)}.hover\:stroke-white\/70:hover{stroke:hsla(0,0%,100%,.7)}.hover\:stroke-white\/75:hover{stroke:hsla(0,0%,100%,.75)}.hover\:stroke-white\/80:hover{stroke:hsla(0,0%,100%,.8)}.hover\:stroke-white\/90:hover{stroke:hsla(0,0%,100%,.9)}.hover\:stroke-white\/95:hover{stroke:hsla(0,0%,100%,.95)}.hover\:stroke-whiteInverted:hover{stroke:rgb(var(--whiteInverted))}.hover\:stroke-whiteInverted\/0:hover{stroke:rgb(var(--whiteInverted)/0)}.hover\:stroke-whiteInverted\/10:hover{stroke:rgb(var(--whiteInverted)/.1)}.hover\:stroke-whiteInverted\/100:hover{stroke:rgb(var(--whiteInverted)/1)}.hover\:stroke-whiteInverted\/20:hover{stroke:rgb(var(--whiteInverted)/.2)}.hover\:stroke-whiteInverted\/25:hover{stroke:rgb(var(--whiteInverted)/.25)}.hover\:stroke-whiteInverted\/30:hover{stroke:rgb(var(--whiteInverted)/.3)}.hover\:stroke-whiteInverted\/40:hover{stroke:rgb(var(--whiteInverted)/.4)}.hover\:stroke-whiteInverted\/5:hover{stroke:rgb(var(--whiteInverted)/.05)}.hover\:stroke-whiteInverted\/50:hover{stroke:rgb(var(--whiteInverted)/.5)}.hover\:stroke-whiteInverted\/60:hover{stroke:rgb(var(--whiteInverted)/.6)}.hover\:stroke-whiteInverted\/70:hover{stroke:rgb(var(--whiteInverted)/.7)}.hover\:stroke-whiteInverted\/75:hover{stroke:rgb(var(--whiteInverted)/.75)}.hover\:stroke-whiteInverted\/80:hover{stroke:rgb(var(--whiteInverted)/.8)}.hover\:stroke-whiteInverted\/90:hover{stroke:rgb(var(--whiteInverted)/.9)}.hover\:stroke-whiteInverted\/95:hover{stroke:rgb(var(--whiteInverted)/.95)}.hover\:text-backgroundPrimary:hover{--tw-text-opacity:1;color:rgb(var(--backgroundPrimary)/var(--tw-text-opacity))}.hover\:text-backgroundPrimary\/0:hover{color:rgb(var(--backgroundPrimary)/0)}.hover\:text-backgroundPrimary\/10:hover{color:rgb(var(--backgroundPrimary)/.1)}.hover\:text-backgroundPrimary\/100:hover{color:rgb(var(--backgroundPrimary)/1)}.hover\:text-backgroundPrimary\/20:hover{color:rgb(var(--backgroundPrimary)/.2)}.hover\:text-backgroundPrimary\/25:hover{color:rgb(var(--backgroundPrimary)/.25)}.hover\:text-backgroundPrimary\/30:hover{color:rgb(var(--backgroundPrimary)/.3)}.hover\:text-backgroundPrimary\/40:hover{color:rgb(var(--backgroundPrimary)/.4)}.hover\:text-backgroundPrimary\/5:hover{color:rgb(var(--backgroundPrimary)/.05)}.hover\:text-backgroundPrimary\/50:hover{color:rgb(var(--backgroundPrimary)/.5)}.hover\:text-backgroundPrimary\/60:hover{color:rgb(var(--backgroundPrimary)/.6)}.hover\:text-backgroundPrimary\/70:hover{color:rgb(var(--backgroundPrimary)/.7)}.hover\:text-backgroundPrimary\/75:hover{color:rgb(var(--backgroundPrimary)/.75)}.hover\:text-backgroundPrimary\/80:hover{color:rgb(var(--backgroundPrimary)/.8)}.hover\:text-backgroundPrimary\/90:hover{color:rgb(var(--backgroundPrimary)/.9)}.hover\:text-backgroundPrimary\/95:hover{color:rgb(var(--backgroundPrimary)/.95)}.hover\:text-backgroundSecondary:hover{--tw-text-opacity:1;color:rgb(var(--backgroundSecondary)/var(--tw-text-opacity))}.hover\:text-backgroundSecondary\/0:hover{color:rgb(var(--backgroundSecondary)/0)}.hover\:text-backgroundSecondary\/10:hover{color:rgb(var(--backgroundSecondary)/.1)}.hover\:text-backgroundSecondary\/100:hover{color:rgb(var(--backgroundSecondary)/1)}.hover\:text-backgroundSecondary\/20:hover{color:rgb(var(--backgroundSecondary)/.2)}.hover\:text-backgroundSecondary\/25:hover{color:rgb(var(--backgroundSecondary)/.25)}.hover\:text-backgroundSecondary\/30:hover{color:rgb(var(--backgroundSecondary)/.3)}.hover\:text-backgroundSecondary\/40:hover{color:rgb(var(--backgroundSecondary)/.4)}.hover\:text-backgroundSecondary\/5:hover{color:rgb(var(--backgroundSecondary)/.05)}.hover\:text-backgroundSecondary\/50:hover{color:rgb(var(--backgroundSecondary)/.5)}.hover\:text-backgroundSecondary\/60:hover{color:rgb(var(--backgroundSecondary)/.6)}.hover\:text-backgroundSecondary\/70:hover{color:rgb(var(--backgroundSecondary)/.7)}.hover\:text-backgroundSecondary\/75:hover{color:rgb(var(--backgroundSecondary)/.75)}.hover\:text-backgroundSecondary\/80:hover{color:rgb(var(--backgroundSecondary)/.8)}.hover\:text-backgroundSecondary\/90:hover{color:rgb(var(--backgroundSecondary)/.9)}.hover\:text-backgroundSecondary\/95:hover{color:rgb(var(--backgroundSecondary)/.95)}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:text-black\/0:hover{color:transparent}.hover\:text-black\/10:hover{color:rgba(0,0,0,.1)}.hover\:text-black\/100:hover{color:#000}.hover\:text-black\/20:hover{color:rgba(0,0,0,.2)}.hover\:text-black\/25:hover{color:rgba(0,0,0,.25)}.hover\:text-black\/30:hover{color:rgba(0,0,0,.3)}.hover\:text-black\/40:hover{color:rgba(0,0,0,.4)}.hover\:text-black\/5:hover{color:rgba(0,0,0,.05)}.hover\:text-black\/50:hover{color:rgba(0,0,0,.5)}.hover\:text-black\/60:hover{color:rgba(0,0,0,.6)}.hover\:text-black\/70:hover{color:rgba(0,0,0,.7)}.hover\:text-black\/75:hover{color:rgba(0,0,0,.75)}.hover\:text-black\/80:hover{color:rgba(0,0,0,.8)}.hover\:text-black\/90:hover{color:rgba(0,0,0,.9)}.hover\:text-black\/95:hover{color:rgba(0,0,0,.95)}.hover\:text-blackInverted:hover{--tw-text-opacity:1;color:rgb(var(--blackInverted)/var(--tw-text-opacity))}.hover\:text-blackInverted\/0:hover{color:rgb(var(--blackInverted)/0)}.hover\:text-blackInverted\/10:hover{color:rgb(var(--blackInverted)/.1)}.hover\:text-blackInverted\/100:hover{color:rgb(var(--blackInverted)/1)}.hover\:text-blackInverted\/20:hover{color:rgb(var(--blackInverted)/.2)}.hover\:text-blackInverted\/25:hover{color:rgb(var(--blackInverted)/.25)}.hover\:text-blackInverted\/30:hover{color:rgb(var(--blackInverted)/.3)}.hover\:text-blackInverted\/40:hover{color:rgb(var(--blackInverted)/.4)}.hover\:text-blackInverted\/5:hover{color:rgb(var(--blackInverted)/.05)}.hover\:text-blackInverted\/50:hover{color:rgb(var(--blackInverted)/.5)}.hover\:text-blackInverted\/60:hover{color:rgb(var(--blackInverted)/.6)}.hover\:text-blackInverted\/70:hover{color:rgb(var(--blackInverted)/.7)}.hover\:text-blackInverted\/75:hover{color:rgb(var(--blackInverted)/.75)}.hover\:text-blackInverted\/80:hover{color:rgb(var(--blackInverted)/.8)}.hover\:text-blackInverted\/90:hover{color:rgb(var(--blackInverted)/.9)}.hover\:text-blackInverted\/95:hover{color:rgb(var(--blackInverted)/.95)}.hover\:text-blue-1\/0:hover{color:rgb(var(--blue-1)/0)}.hover\:text-blue-1\/10:hover{color:rgb(var(--blue-1)/.1)}.hover\:text-blue-1\/100:hover{color:rgb(var(--blue-1)/1)}.hover\:text-blue-1\/20:hover{color:rgb(var(--blue-1)/.2)}.hover\:text-blue-1\/25:hover{color:rgb(var(--blue-1)/.25)}.hover\:text-blue-1\/30:hover{color:rgb(var(--blue-1)/.3)}.hover\:text-blue-1\/40:hover{color:rgb(var(--blue-1)/.4)}.hover\:text-blue-1\/5:hover{color:rgb(var(--blue-1)/.05)}.hover\:text-blue-1\/50:hover{color:rgb(var(--blue-1)/.5)}.hover\:text-blue-1\/60:hover{color:rgb(var(--blue-1)/.6)}.hover\:text-blue-1\/70:hover{color:rgb(var(--blue-1)/.7)}.hover\:text-blue-1\/75:hover{color:rgb(var(--blue-1)/.75)}.hover\:text-blue-1\/80:hover{color:rgb(var(--blue-1)/.8)}.hover\:text-blue-1\/90:hover{color:rgb(var(--blue-1)/.9)}.hover\:text-blue-1\/95:hover{color:rgb(var(--blue-1)/.95)}.hover\:text-blue-10\/0:hover{color:rgb(var(--blue-10)/0)}.hover\:text-blue-10\/10:hover{color:rgb(var(--blue-10)/.1)}.hover\:text-blue-10\/100:hover{color:rgb(var(--blue-10)/1)}.hover\:text-blue-10\/20:hover{color:rgb(var(--blue-10)/.2)}.hover\:text-blue-10\/25:hover{color:rgb(var(--blue-10)/.25)}.hover\:text-blue-10\/30:hover{color:rgb(var(--blue-10)/.3)}.hover\:text-blue-10\/40:hover{color:rgb(var(--blue-10)/.4)}.hover\:text-blue-10\/5:hover{color:rgb(var(--blue-10)/.05)}.hover\:text-blue-10\/50:hover{color:rgb(var(--blue-10)/.5)}.hover\:text-blue-10\/60:hover{color:rgb(var(--blue-10)/.6)}.hover\:text-blue-10\/70:hover{color:rgb(var(--blue-10)/.7)}.hover\:text-blue-10\/75:hover{color:rgb(var(--blue-10)/.75)}.hover\:text-blue-10\/80:hover{color:rgb(var(--blue-10)/.8)}.hover\:text-blue-10\/90:hover{color:rgb(var(--blue-10)/.9)}.hover\:text-blue-10\/95:hover{color:rgb(var(--blue-10)/.95)}.hover\:text-blue-2\/0:hover{color:rgb(var(--blue-2)/0)}.hover\:text-blue-2\/10:hover{color:rgb(var(--blue-2)/.1)}.hover\:text-blue-2\/100:hover{color:rgb(var(--blue-2)/1)}.hover\:text-blue-2\/20:hover{color:rgb(var(--blue-2)/.2)}.hover\:text-blue-2\/25:hover{color:rgb(var(--blue-2)/.25)}.hover\:text-blue-2\/30:hover{color:rgb(var(--blue-2)/.3)}.hover\:text-blue-2\/40:hover{color:rgb(var(--blue-2)/.4)}.hover\:text-blue-2\/5:hover{color:rgb(var(--blue-2)/.05)}.hover\:text-blue-2\/50:hover{color:rgb(var(--blue-2)/.5)}.hover\:text-blue-2\/60:hover{color:rgb(var(--blue-2)/.6)}.hover\:text-blue-2\/70:hover{color:rgb(var(--blue-2)/.7)}.hover\:text-blue-2\/75:hover{color:rgb(var(--blue-2)/.75)}.hover\:text-blue-2\/80:hover{color:rgb(var(--blue-2)/.8)}.hover\:text-blue-2\/90:hover{color:rgb(var(--blue-2)/.9)}.hover\:text-blue-2\/95:hover{color:rgb(var(--blue-2)/.95)}.hover\:text-blue-3\/0:hover{color:rgb(var(--blue-3)/0)}.hover\:text-blue-3\/10:hover{color:rgb(var(--blue-3)/.1)}.hover\:text-blue-3\/100:hover{color:rgb(var(--blue-3)/1)}.hover\:text-blue-3\/20:hover{color:rgb(var(--blue-3)/.2)}.hover\:text-blue-3\/25:hover{color:rgb(var(--blue-3)/.25)}.hover\:text-blue-3\/30:hover{color:rgb(var(--blue-3)/.3)}.hover\:text-blue-3\/40:hover{color:rgb(var(--blue-3)/.4)}.hover\:text-blue-3\/5:hover{color:rgb(var(--blue-3)/.05)}.hover\:text-blue-3\/50:hover{color:rgb(var(--blue-3)/.5)}.hover\:text-blue-3\/60:hover{color:rgb(var(--blue-3)/.6)}.hover\:text-blue-3\/70:hover{color:rgb(var(--blue-3)/.7)}.hover\:text-blue-3\/75:hover{color:rgb(var(--blue-3)/.75)}.hover\:text-blue-3\/80:hover{color:rgb(var(--blue-3)/.8)}.hover\:text-blue-3\/90:hover{color:rgb(var(--blue-3)/.9)}.hover\:text-blue-3\/95:hover{color:rgb(var(--blue-3)/.95)}.hover\:text-blue-4\/0:hover{color:rgb(var(--blue-4)/0)}.hover\:text-blue-4\/10:hover{color:rgb(var(--blue-4)/.1)}.hover\:text-blue-4\/100:hover{color:rgb(var(--blue-4)/1)}.hover\:text-blue-4\/20:hover{color:rgb(var(--blue-4)/.2)}.hover\:text-blue-4\/25:hover{color:rgb(var(--blue-4)/.25)}.hover\:text-blue-4\/30:hover{color:rgb(var(--blue-4)/.3)}.hover\:text-blue-4\/40:hover{color:rgb(var(--blue-4)/.4)}.hover\:text-blue-4\/5:hover{color:rgb(var(--blue-4)/.05)}.hover\:text-blue-4\/50:hover{color:rgb(var(--blue-4)/.5)}.hover\:text-blue-4\/60:hover{color:rgb(var(--blue-4)/.6)}.hover\:text-blue-4\/70:hover{color:rgb(var(--blue-4)/.7)}.hover\:text-blue-4\/75:hover{color:rgb(var(--blue-4)/.75)}.hover\:text-blue-4\/80:hover{color:rgb(var(--blue-4)/.8)}.hover\:text-blue-4\/90:hover{color:rgb(var(--blue-4)/.9)}.hover\:text-blue-4\/95:hover{color:rgb(var(--blue-4)/.95)}.hover\:text-blue-5\/0:hover{color:rgb(var(--blue-5)/0)}.hover\:text-blue-5\/10:hover{color:rgb(var(--blue-5)/.1)}.hover\:text-blue-5\/100:hover{color:rgb(var(--blue-5)/1)}.hover\:text-blue-5\/20:hover{color:rgb(var(--blue-5)/.2)}.hover\:text-blue-5\/25:hover{color:rgb(var(--blue-5)/.25)}.hover\:text-blue-5\/30:hover{color:rgb(var(--blue-5)/.3)}.hover\:text-blue-5\/40:hover{color:rgb(var(--blue-5)/.4)}.hover\:text-blue-5\/5:hover{color:rgb(var(--blue-5)/.05)}.hover\:text-blue-5\/50:hover{color:rgb(var(--blue-5)/.5)}.hover\:text-blue-5\/60:hover{color:rgb(var(--blue-5)/.6)}.hover\:text-blue-5\/70:hover{color:rgb(var(--blue-5)/.7)}.hover\:text-blue-5\/75:hover{color:rgb(var(--blue-5)/.75)}.hover\:text-blue-5\/80:hover{color:rgb(var(--blue-5)/.8)}.hover\:text-blue-5\/90:hover{color:rgb(var(--blue-5)/.9)}.hover\:text-blue-5\/95:hover{color:rgb(var(--blue-5)/.95)}.hover\:text-blue-6\/0:hover{color:rgb(var(--blue-6)/0)}.hover\:text-blue-6\/10:hover{color:rgb(var(--blue-6)/.1)}.hover\:text-blue-6\/100:hover{color:rgb(var(--blue-6)/1)}.hover\:text-blue-6\/20:hover{color:rgb(var(--blue-6)/.2)}.hover\:text-blue-6\/25:hover{color:rgb(var(--blue-6)/.25)}.hover\:text-blue-6\/30:hover{color:rgb(var(--blue-6)/.3)}.hover\:text-blue-6\/40:hover{color:rgb(var(--blue-6)/.4)}.hover\:text-blue-6\/5:hover{color:rgb(var(--blue-6)/.05)}.hover\:text-blue-6\/50:hover{color:rgb(var(--blue-6)/.5)}.hover\:text-blue-6\/60:hover{color:rgb(var(--blue-6)/.6)}.hover\:text-blue-6\/70:hover{color:rgb(var(--blue-6)/.7)}.hover\:text-blue-6\/75:hover{color:rgb(var(--blue-6)/.75)}.hover\:text-blue-6\/80:hover{color:rgb(var(--blue-6)/.8)}.hover\:text-blue-6\/90:hover{color:rgb(var(--blue-6)/.9)}.hover\:text-blue-6\/95:hover{color:rgb(var(--blue-6)/.95)}.hover\:text-blue-7\/0:hover{color:rgb(var(--blue-7)/0)}.hover\:text-blue-7\/10:hover{color:rgb(var(--blue-7)/.1)}.hover\:text-blue-7\/100:hover{color:rgb(var(--blue-7)/1)}.hover\:text-blue-7\/20:hover{color:rgb(var(--blue-7)/.2)}.hover\:text-blue-7\/25:hover{color:rgb(var(--blue-7)/.25)}.hover\:text-blue-7\/30:hover{color:rgb(var(--blue-7)/.3)}.hover\:text-blue-7\/40:hover{color:rgb(var(--blue-7)/.4)}.hover\:text-blue-7\/5:hover{color:rgb(var(--blue-7)/.05)}.hover\:text-blue-7\/50:hover{color:rgb(var(--blue-7)/.5)}.hover\:text-blue-7\/60:hover{color:rgb(var(--blue-7)/.6)}.hover\:text-blue-7\/70:hover{color:rgb(var(--blue-7)/.7)}.hover\:text-blue-7\/75:hover{color:rgb(var(--blue-7)/.75)}.hover\:text-blue-7\/80:hover{color:rgb(var(--blue-7)/.8)}.hover\:text-blue-7\/90:hover{color:rgb(var(--blue-7)/.9)}.hover\:text-blue-7\/95:hover{color:rgb(var(--blue-7)/.95)}.hover\:text-blue-8\/0:hover{color:rgb(var(--blue-8)/0)}.hover\:text-blue-8\/10:hover{color:rgb(var(--blue-8)/.1)}.hover\:text-blue-8\/100:hover{color:rgb(var(--blue-8)/1)}.hover\:text-blue-8\/20:hover{color:rgb(var(--blue-8)/.2)}.hover\:text-blue-8\/25:hover{color:rgb(var(--blue-8)/.25)}.hover\:text-blue-8\/30:hover{color:rgb(var(--blue-8)/.3)}.hover\:text-blue-8\/40:hover{color:rgb(var(--blue-8)/.4)}.hover\:text-blue-8\/5:hover{color:rgb(var(--blue-8)/.05)}.hover\:text-blue-8\/50:hover{color:rgb(var(--blue-8)/.5)}.hover\:text-blue-8\/60:hover{color:rgb(var(--blue-8)/.6)}.hover\:text-blue-8\/70:hover{color:rgb(var(--blue-8)/.7)}.hover\:text-blue-8\/75:hover{color:rgb(var(--blue-8)/.75)}.hover\:text-blue-8\/80:hover{color:rgb(var(--blue-8)/.8)}.hover\:text-blue-8\/90:hover{color:rgb(var(--blue-8)/.9)}.hover\:text-blue-8\/95:hover{color:rgb(var(--blue-8)/.95)}.hover\:text-blue-9\/0:hover{color:rgb(var(--blue-9)/0)}.hover\:text-blue-9\/10:hover{color:rgb(var(--blue-9)/.1)}.hover\:text-blue-9\/100:hover{color:rgb(var(--blue-9)/1)}.hover\:text-blue-9\/20:hover{color:rgb(var(--blue-9)/.2)}.hover\:text-blue-9\/25:hover{color:rgb(var(--blue-9)/.25)}.hover\:text-blue-9\/30:hover{color:rgb(var(--blue-9)/.3)}.hover\:text-blue-9\/40:hover{color:rgb(var(--blue-9)/.4)}.hover\:text-blue-9\/5:hover{color:rgb(var(--blue-9)/.05)}.hover\:text-blue-9\/50:hover{color:rgb(var(--blue-9)/.5)}.hover\:text-blue-9\/60:hover{color:rgb(var(--blue-9)/.6)}.hover\:text-blue-9\/70:hover{color:rgb(var(--blue-9)/.7)}.hover\:text-blue-9\/75:hover{color:rgb(var(--blue-9)/.75)}.hover\:text-blue-9\/80:hover{color:rgb(var(--blue-9)/.8)}.hover\:text-blue-9\/90:hover{color:rgb(var(--blue-9)/.9)}.hover\:text-blue-9\/95:hover{color:rgb(var(--blue-9)/.95)}.hover\:text-border:hover{--tw-text-opacity:1;color:rgb(var(--border)/var(--tw-text-opacity))}.hover\:text-border\/0:hover{color:rgb(var(--border)/0)}.hover\:text-border\/10:hover{color:rgb(var(--border)/.1)}.hover\:text-border\/100:hover{color:rgb(var(--border)/1)}.hover\:text-border\/20:hover{color:rgb(var(--border)/.2)}.hover\:text-border\/25:hover{color:rgb(var(--border)/.25)}.hover\:text-border\/30:hover{color:rgb(var(--border)/.3)}.hover\:text-border\/40:hover{color:rgb(var(--border)/.4)}.hover\:text-border\/5:hover{color:rgb(var(--border)/.05)}.hover\:text-border\/50:hover{color:rgb(var(--border)/.5)}.hover\:text-border\/60:hover{color:rgb(var(--border)/.6)}.hover\:text-border\/70:hover{color:rgb(var(--border)/.7)}.hover\:text-border\/75:hover{color:rgb(var(--border)/.75)}.hover\:text-border\/80:hover{color:rgb(var(--border)/.8)}.hover\:text-border\/90:hover{color:rgb(var(--border)/.9)}.hover\:text-border\/95:hover{color:rgb(var(--border)/.95)}.hover\:text-content1:hover{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity))}.hover\:text-content1\/0:hover{color:rgb(var(--content1)/0)}.hover\:text-content1\/10:hover{color:rgb(var(--content1)/.1)}.hover\:text-content1\/100:hover{color:rgb(var(--content1)/1)}.hover\:text-content1\/20:hover{color:rgb(var(--content1)/.2)}.hover\:text-content1\/25:hover{color:rgb(var(--content1)/.25)}.hover\:text-content1\/30:hover{color:rgb(var(--content1)/.3)}.hover\:text-content1\/40:hover{color:rgb(var(--content1)/.4)}.hover\:text-content1\/5:hover{color:rgb(var(--content1)/.05)}.hover\:text-content1\/50:hover{color:rgb(var(--content1)/.5)}.hover\:text-content1\/60:hover{color:rgb(var(--content1)/.6)}.hover\:text-content1\/70:hover{color:rgb(var(--content1)/.7)}.hover\:text-content1\/75:hover{color:rgb(var(--content1)/.75)}.hover\:text-content1\/80:hover{color:rgb(var(--content1)/.8)}.hover\:text-content1\/90:hover{color:rgb(var(--content1)/.9)}.hover\:text-content1\/95:hover{color:rgb(var(--content1)/.95)}.hover\:text-content2:hover{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity))}.hover\:text-content2\/0:hover{color:rgb(var(--content2)/0)}.hover\:text-content2\/10:hover{color:rgb(var(--content2)/.1)}.hover\:text-content2\/100:hover{color:rgb(var(--content2)/1)}.hover\:text-content2\/20:hover{color:rgb(var(--content2)/.2)}.hover\:text-content2\/25:hover{color:rgb(var(--content2)/.25)}.hover\:text-content2\/30:hover{color:rgb(var(--content2)/.3)}.hover\:text-content2\/40:hover{color:rgb(var(--content2)/.4)}.hover\:text-content2\/5:hover{color:rgb(var(--content2)/.05)}.hover\:text-content2\/50:hover{color:rgb(var(--content2)/.5)}.hover\:text-content2\/60:hover{color:rgb(var(--content2)/.6)}.hover\:text-content2\/70:hover{color:rgb(var(--content2)/.7)}.hover\:text-content2\/75:hover{color:rgb(var(--content2)/.75)}.hover\:text-content2\/80:hover{color:rgb(var(--content2)/.8)}.hover\:text-content2\/90:hover{color:rgb(var(--content2)/.9)}.hover\:text-content2\/95:hover{color:rgb(var(--content2)/.95)}.hover\:text-content3:hover{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.hover\:text-content3\/0:hover{color:rgb(var(--content3)/0)}.hover\:text-content3\/10:hover{color:rgb(var(--content3)/.1)}.hover\:text-content3\/100:hover{color:rgb(var(--content3)/1)}.hover\:text-content3\/20:hover{color:rgb(var(--content3)/.2)}.hover\:text-content3\/25:hover{color:rgb(var(--content3)/.25)}.hover\:text-content3\/30:hover{color:rgb(var(--content3)/.3)}.hover\:text-content3\/40:hover{color:rgb(var(--content3)/.4)}.hover\:text-content3\/5:hover{color:rgb(var(--content3)/.05)}.hover\:text-content3\/50:hover{color:rgb(var(--content3)/.5)}.hover\:text-content3\/60:hover{color:rgb(var(--content3)/.6)}.hover\:text-content3\/70:hover{color:rgb(var(--content3)/.7)}.hover\:text-content3\/75:hover{color:rgb(var(--content3)/.75)}.hover\:text-content3\/80:hover{color:rgb(var(--content3)/.8)}.hover\:text-content3\/90:hover{color:rgb(var(--content3)/.9)}.hover\:text-content3\/95:hover{color:rgb(var(--content3)/.95)}.hover\:text-cyan-1\/0:hover{color:rgb(var(--cyan-1)/0)}.hover\:text-cyan-1\/10:hover{color:rgb(var(--cyan-1)/.1)}.hover\:text-cyan-1\/100:hover{color:rgb(var(--cyan-1)/1)}.hover\:text-cyan-1\/20:hover{color:rgb(var(--cyan-1)/.2)}.hover\:text-cyan-1\/25:hover{color:rgb(var(--cyan-1)/.25)}.hover\:text-cyan-1\/30:hover{color:rgb(var(--cyan-1)/.3)}.hover\:text-cyan-1\/40:hover{color:rgb(var(--cyan-1)/.4)}.hover\:text-cyan-1\/5:hover{color:rgb(var(--cyan-1)/.05)}.hover\:text-cyan-1\/50:hover{color:rgb(var(--cyan-1)/.5)}.hover\:text-cyan-1\/60:hover{color:rgb(var(--cyan-1)/.6)}.hover\:text-cyan-1\/70:hover{color:rgb(var(--cyan-1)/.7)}.hover\:text-cyan-1\/75:hover{color:rgb(var(--cyan-1)/.75)}.hover\:text-cyan-1\/80:hover{color:rgb(var(--cyan-1)/.8)}.hover\:text-cyan-1\/90:hover{color:rgb(var(--cyan-1)/.9)}.hover\:text-cyan-1\/95:hover{color:rgb(var(--cyan-1)/.95)}.hover\:text-cyan-10\/0:hover{color:rgb(var(--cyan-10)/0)}.hover\:text-cyan-10\/10:hover{color:rgb(var(--cyan-10)/.1)}.hover\:text-cyan-10\/100:hover{color:rgb(var(--cyan-10)/1)}.hover\:text-cyan-10\/20:hover{color:rgb(var(--cyan-10)/.2)}.hover\:text-cyan-10\/25:hover{color:rgb(var(--cyan-10)/.25)}.hover\:text-cyan-10\/30:hover{color:rgb(var(--cyan-10)/.3)}.hover\:text-cyan-10\/40:hover{color:rgb(var(--cyan-10)/.4)}.hover\:text-cyan-10\/5:hover{color:rgb(var(--cyan-10)/.05)}.hover\:text-cyan-10\/50:hover{color:rgb(var(--cyan-10)/.5)}.hover\:text-cyan-10\/60:hover{color:rgb(var(--cyan-10)/.6)}.hover\:text-cyan-10\/70:hover{color:rgb(var(--cyan-10)/.7)}.hover\:text-cyan-10\/75:hover{color:rgb(var(--cyan-10)/.75)}.hover\:text-cyan-10\/80:hover{color:rgb(var(--cyan-10)/.8)}.hover\:text-cyan-10\/90:hover{color:rgb(var(--cyan-10)/.9)}.hover\:text-cyan-10\/95:hover{color:rgb(var(--cyan-10)/.95)}.hover\:text-cyan-2\/0:hover{color:rgb(var(--cyan-2)/0)}.hover\:text-cyan-2\/10:hover{color:rgb(var(--cyan-2)/.1)}.hover\:text-cyan-2\/100:hover{color:rgb(var(--cyan-2)/1)}.hover\:text-cyan-2\/20:hover{color:rgb(var(--cyan-2)/.2)}.hover\:text-cyan-2\/25:hover{color:rgb(var(--cyan-2)/.25)}.hover\:text-cyan-2\/30:hover{color:rgb(var(--cyan-2)/.3)}.hover\:text-cyan-2\/40:hover{color:rgb(var(--cyan-2)/.4)}.hover\:text-cyan-2\/5:hover{color:rgb(var(--cyan-2)/.05)}.hover\:text-cyan-2\/50:hover{color:rgb(var(--cyan-2)/.5)}.hover\:text-cyan-2\/60:hover{color:rgb(var(--cyan-2)/.6)}.hover\:text-cyan-2\/70:hover{color:rgb(var(--cyan-2)/.7)}.hover\:text-cyan-2\/75:hover{color:rgb(var(--cyan-2)/.75)}.hover\:text-cyan-2\/80:hover{color:rgb(var(--cyan-2)/.8)}.hover\:text-cyan-2\/90:hover{color:rgb(var(--cyan-2)/.9)}.hover\:text-cyan-2\/95:hover{color:rgb(var(--cyan-2)/.95)}.hover\:text-cyan-3\/0:hover{color:rgb(var(--cyan-3)/0)}.hover\:text-cyan-3\/10:hover{color:rgb(var(--cyan-3)/.1)}.hover\:text-cyan-3\/100:hover{color:rgb(var(--cyan-3)/1)}.hover\:text-cyan-3\/20:hover{color:rgb(var(--cyan-3)/.2)}.hover\:text-cyan-3\/25:hover{color:rgb(var(--cyan-3)/.25)}.hover\:text-cyan-3\/30:hover{color:rgb(var(--cyan-3)/.3)}.hover\:text-cyan-3\/40:hover{color:rgb(var(--cyan-3)/.4)}.hover\:text-cyan-3\/5:hover{color:rgb(var(--cyan-3)/.05)}.hover\:text-cyan-3\/50:hover{color:rgb(var(--cyan-3)/.5)}.hover\:text-cyan-3\/60:hover{color:rgb(var(--cyan-3)/.6)}.hover\:text-cyan-3\/70:hover{color:rgb(var(--cyan-3)/.7)}.hover\:text-cyan-3\/75:hover{color:rgb(var(--cyan-3)/.75)}.hover\:text-cyan-3\/80:hover{color:rgb(var(--cyan-3)/.8)}.hover\:text-cyan-3\/90:hover{color:rgb(var(--cyan-3)/.9)}.hover\:text-cyan-3\/95:hover{color:rgb(var(--cyan-3)/.95)}.hover\:text-cyan-4\/0:hover{color:rgb(var(--cyan-4)/0)}.hover\:text-cyan-4\/10:hover{color:rgb(var(--cyan-4)/.1)}.hover\:text-cyan-4\/100:hover{color:rgb(var(--cyan-4)/1)}.hover\:text-cyan-4\/20:hover{color:rgb(var(--cyan-4)/.2)}.hover\:text-cyan-4\/25:hover{color:rgb(var(--cyan-4)/.25)}.hover\:text-cyan-4\/30:hover{color:rgb(var(--cyan-4)/.3)}.hover\:text-cyan-4\/40:hover{color:rgb(var(--cyan-4)/.4)}.hover\:text-cyan-4\/5:hover{color:rgb(var(--cyan-4)/.05)}.hover\:text-cyan-4\/50:hover{color:rgb(var(--cyan-4)/.5)}.hover\:text-cyan-4\/60:hover{color:rgb(var(--cyan-4)/.6)}.hover\:text-cyan-4\/70:hover{color:rgb(var(--cyan-4)/.7)}.hover\:text-cyan-4\/75:hover{color:rgb(var(--cyan-4)/.75)}.hover\:text-cyan-4\/80:hover{color:rgb(var(--cyan-4)/.8)}.hover\:text-cyan-4\/90:hover{color:rgb(var(--cyan-4)/.9)}.hover\:text-cyan-4\/95:hover{color:rgb(var(--cyan-4)/.95)}.hover\:text-cyan-5\/0:hover{color:rgb(var(--cyan-5)/0)}.hover\:text-cyan-5\/10:hover{color:rgb(var(--cyan-5)/.1)}.hover\:text-cyan-5\/100:hover{color:rgb(var(--cyan-5)/1)}.hover\:text-cyan-5\/20:hover{color:rgb(var(--cyan-5)/.2)}.hover\:text-cyan-5\/25:hover{color:rgb(var(--cyan-5)/.25)}.hover\:text-cyan-5\/30:hover{color:rgb(var(--cyan-5)/.3)}.hover\:text-cyan-5\/40:hover{color:rgb(var(--cyan-5)/.4)}.hover\:text-cyan-5\/5:hover{color:rgb(var(--cyan-5)/.05)}.hover\:text-cyan-5\/50:hover{color:rgb(var(--cyan-5)/.5)}.hover\:text-cyan-5\/60:hover{color:rgb(var(--cyan-5)/.6)}.hover\:text-cyan-5\/70:hover{color:rgb(var(--cyan-5)/.7)}.hover\:text-cyan-5\/75:hover{color:rgb(var(--cyan-5)/.75)}.hover\:text-cyan-5\/80:hover{color:rgb(var(--cyan-5)/.8)}.hover\:text-cyan-5\/90:hover{color:rgb(var(--cyan-5)/.9)}.hover\:text-cyan-5\/95:hover{color:rgb(var(--cyan-5)/.95)}.hover\:text-cyan-6\/0:hover{color:rgb(var(--cyan-6)/0)}.hover\:text-cyan-6\/10:hover{color:rgb(var(--cyan-6)/.1)}.hover\:text-cyan-6\/100:hover{color:rgb(var(--cyan-6)/1)}.hover\:text-cyan-6\/20:hover{color:rgb(var(--cyan-6)/.2)}.hover\:text-cyan-6\/25:hover{color:rgb(var(--cyan-6)/.25)}.hover\:text-cyan-6\/30:hover{color:rgb(var(--cyan-6)/.3)}.hover\:text-cyan-6\/40:hover{color:rgb(var(--cyan-6)/.4)}.hover\:text-cyan-6\/5:hover{color:rgb(var(--cyan-6)/.05)}.hover\:text-cyan-6\/50:hover{color:rgb(var(--cyan-6)/.5)}.hover\:text-cyan-6\/60:hover{color:rgb(var(--cyan-6)/.6)}.hover\:text-cyan-6\/70:hover{color:rgb(var(--cyan-6)/.7)}.hover\:text-cyan-6\/75:hover{color:rgb(var(--cyan-6)/.75)}.hover\:text-cyan-6\/80:hover{color:rgb(var(--cyan-6)/.8)}.hover\:text-cyan-6\/90:hover{color:rgb(var(--cyan-6)/.9)}.hover\:text-cyan-6\/95:hover{color:rgb(var(--cyan-6)/.95)}.hover\:text-cyan-7\/0:hover{color:rgb(var(--cyan-7)/0)}.hover\:text-cyan-7\/10:hover{color:rgb(var(--cyan-7)/.1)}.hover\:text-cyan-7\/100:hover{color:rgb(var(--cyan-7)/1)}.hover\:text-cyan-7\/20:hover{color:rgb(var(--cyan-7)/.2)}.hover\:text-cyan-7\/25:hover{color:rgb(var(--cyan-7)/.25)}.hover\:text-cyan-7\/30:hover{color:rgb(var(--cyan-7)/.3)}.hover\:text-cyan-7\/40:hover{color:rgb(var(--cyan-7)/.4)}.hover\:text-cyan-7\/5:hover{color:rgb(var(--cyan-7)/.05)}.hover\:text-cyan-7\/50:hover{color:rgb(var(--cyan-7)/.5)}.hover\:text-cyan-7\/60:hover{color:rgb(var(--cyan-7)/.6)}.hover\:text-cyan-7\/70:hover{color:rgb(var(--cyan-7)/.7)}.hover\:text-cyan-7\/75:hover{color:rgb(var(--cyan-7)/.75)}.hover\:text-cyan-7\/80:hover{color:rgb(var(--cyan-7)/.8)}.hover\:text-cyan-7\/90:hover{color:rgb(var(--cyan-7)/.9)}.hover\:text-cyan-7\/95:hover{color:rgb(var(--cyan-7)/.95)}.hover\:text-cyan-8\/0:hover{color:rgb(var(--cyan-8)/0)}.hover\:text-cyan-8\/10:hover{color:rgb(var(--cyan-8)/.1)}.hover\:text-cyan-8\/100:hover{color:rgb(var(--cyan-8)/1)}.hover\:text-cyan-8\/20:hover{color:rgb(var(--cyan-8)/.2)}.hover\:text-cyan-8\/25:hover{color:rgb(var(--cyan-8)/.25)}.hover\:text-cyan-8\/30:hover{color:rgb(var(--cyan-8)/.3)}.hover\:text-cyan-8\/40:hover{color:rgb(var(--cyan-8)/.4)}.hover\:text-cyan-8\/5:hover{color:rgb(var(--cyan-8)/.05)}.hover\:text-cyan-8\/50:hover{color:rgb(var(--cyan-8)/.5)}.hover\:text-cyan-8\/60:hover{color:rgb(var(--cyan-8)/.6)}.hover\:text-cyan-8\/70:hover{color:rgb(var(--cyan-8)/.7)}.hover\:text-cyan-8\/75:hover{color:rgb(var(--cyan-8)/.75)}.hover\:text-cyan-8\/80:hover{color:rgb(var(--cyan-8)/.8)}.hover\:text-cyan-8\/90:hover{color:rgb(var(--cyan-8)/.9)}.hover\:text-cyan-8\/95:hover{color:rgb(var(--cyan-8)/.95)}.hover\:text-cyan-9\/0:hover{color:rgb(var(--cyan-9)/0)}.hover\:text-cyan-9\/10:hover{color:rgb(var(--cyan-9)/.1)}.hover\:text-cyan-9\/100:hover{color:rgb(var(--cyan-9)/1)}.hover\:text-cyan-9\/20:hover{color:rgb(var(--cyan-9)/.2)}.hover\:text-cyan-9\/25:hover{color:rgb(var(--cyan-9)/.25)}.hover\:text-cyan-9\/30:hover{color:rgb(var(--cyan-9)/.3)}.hover\:text-cyan-9\/40:hover{color:rgb(var(--cyan-9)/.4)}.hover\:text-cyan-9\/5:hover{color:rgb(var(--cyan-9)/.05)}.hover\:text-cyan-9\/50:hover{color:rgb(var(--cyan-9)/.5)}.hover\:text-cyan-9\/60:hover{color:rgb(var(--cyan-9)/.6)}.hover\:text-cyan-9\/70:hover{color:rgb(var(--cyan-9)/.7)}.hover\:text-cyan-9\/75:hover{color:rgb(var(--cyan-9)/.75)}.hover\:text-cyan-9\/80:hover{color:rgb(var(--cyan-9)/.8)}.hover\:text-cyan-9\/90:hover{color:rgb(var(--cyan-9)/.9)}.hover\:text-cyan-9\/95:hover{color:rgb(var(--cyan-9)/.95)}.hover\:text-error:hover{--tw-text-opacity:1;color:rgb(var(--error)/var(--tw-text-opacity))}.hover\:text-error\/0:hover{color:rgb(var(--error)/0)}.hover\:text-error\/10:hover{color:rgb(var(--error)/.1)}.hover\:text-error\/100:hover{color:rgb(var(--error)/1)}.hover\:text-error\/20:hover{color:rgb(var(--error)/.2)}.hover\:text-error\/25:hover{color:rgb(var(--error)/.25)}.hover\:text-error\/30:hover{color:rgb(var(--error)/.3)}.hover\:text-error\/40:hover{color:rgb(var(--error)/.4)}.hover\:text-error\/5:hover{color:rgb(var(--error)/.05)}.hover\:text-error\/50:hover{color:rgb(var(--error)/.5)}.hover\:text-error\/60:hover{color:rgb(var(--error)/.6)}.hover\:text-error\/70:hover{color:rgb(var(--error)/.7)}.hover\:text-error\/75:hover{color:rgb(var(--error)/.75)}.hover\:text-error\/80:hover{color:rgb(var(--error)/.8)}.hover\:text-error\/90:hover{color:rgb(var(--error)/.9)}.hover\:text-error\/95:hover{color:rgb(var(--error)/.95)}.hover\:text-gray-1\/0:hover{color:rgb(var(--gray-1)/0)}.hover\:text-gray-1\/10:hover{color:rgb(var(--gray-1)/.1)}.hover\:text-gray-1\/100:hover{color:rgb(var(--gray-1)/1)}.hover\:text-gray-1\/20:hover{color:rgb(var(--gray-1)/.2)}.hover\:text-gray-1\/25:hover{color:rgb(var(--gray-1)/.25)}.hover\:text-gray-1\/30:hover{color:rgb(var(--gray-1)/.3)}.hover\:text-gray-1\/40:hover{color:rgb(var(--gray-1)/.4)}.hover\:text-gray-1\/5:hover{color:rgb(var(--gray-1)/.05)}.hover\:text-gray-1\/50:hover{color:rgb(var(--gray-1)/.5)}.hover\:text-gray-1\/60:hover{color:rgb(var(--gray-1)/.6)}.hover\:text-gray-1\/70:hover{color:rgb(var(--gray-1)/.7)}.hover\:text-gray-1\/75:hover{color:rgb(var(--gray-1)/.75)}.hover\:text-gray-1\/80:hover{color:rgb(var(--gray-1)/.8)}.hover\:text-gray-1\/90:hover{color:rgb(var(--gray-1)/.9)}.hover\:text-gray-1\/95:hover{color:rgb(var(--gray-1)/.95)}.hover\:text-gray-10\/0:hover{color:rgb(var(--gray-10)/0)}.hover\:text-gray-10\/10:hover{color:rgb(var(--gray-10)/.1)}.hover\:text-gray-10\/100:hover{color:rgb(var(--gray-10)/1)}.hover\:text-gray-10\/20:hover{color:rgb(var(--gray-10)/.2)}.hover\:text-gray-10\/25:hover{color:rgb(var(--gray-10)/.25)}.hover\:text-gray-10\/30:hover{color:rgb(var(--gray-10)/.3)}.hover\:text-gray-10\/40:hover{color:rgb(var(--gray-10)/.4)}.hover\:text-gray-10\/5:hover{color:rgb(var(--gray-10)/.05)}.hover\:text-gray-10\/50:hover{color:rgb(var(--gray-10)/.5)}.hover\:text-gray-10\/60:hover{color:rgb(var(--gray-10)/.6)}.hover\:text-gray-10\/70:hover{color:rgb(var(--gray-10)/.7)}.hover\:text-gray-10\/75:hover{color:rgb(var(--gray-10)/.75)}.hover\:text-gray-10\/80:hover{color:rgb(var(--gray-10)/.8)}.hover\:text-gray-10\/90:hover{color:rgb(var(--gray-10)/.9)}.hover\:text-gray-10\/95:hover{color:rgb(var(--gray-10)/.95)}.hover\:text-gray-2\/0:hover{color:rgb(var(--gray-2)/0)}.hover\:text-gray-2\/10:hover{color:rgb(var(--gray-2)/.1)}.hover\:text-gray-2\/100:hover{color:rgb(var(--gray-2)/1)}.hover\:text-gray-2\/20:hover{color:rgb(var(--gray-2)/.2)}.hover\:text-gray-2\/25:hover{color:rgb(var(--gray-2)/.25)}.hover\:text-gray-2\/30:hover{color:rgb(var(--gray-2)/.3)}.hover\:text-gray-2\/40:hover{color:rgb(var(--gray-2)/.4)}.hover\:text-gray-2\/5:hover{color:rgb(var(--gray-2)/.05)}.hover\:text-gray-2\/50:hover{color:rgb(var(--gray-2)/.5)}.hover\:text-gray-2\/60:hover{color:rgb(var(--gray-2)/.6)}.hover\:text-gray-2\/70:hover{color:rgb(var(--gray-2)/.7)}.hover\:text-gray-2\/75:hover{color:rgb(var(--gray-2)/.75)}.hover\:text-gray-2\/80:hover{color:rgb(var(--gray-2)/.8)}.hover\:text-gray-2\/90:hover{color:rgb(var(--gray-2)/.9)}.hover\:text-gray-2\/95:hover{color:rgb(var(--gray-2)/.95)}.hover\:text-gray-3\/0:hover{color:rgb(var(--gray-3)/0)}.hover\:text-gray-3\/10:hover{color:rgb(var(--gray-3)/.1)}.hover\:text-gray-3\/100:hover{color:rgb(var(--gray-3)/1)}.hover\:text-gray-3\/20:hover{color:rgb(var(--gray-3)/.2)}.hover\:text-gray-3\/25:hover{color:rgb(var(--gray-3)/.25)}.hover\:text-gray-3\/30:hover{color:rgb(var(--gray-3)/.3)}.hover\:text-gray-3\/40:hover{color:rgb(var(--gray-3)/.4)}.hover\:text-gray-3\/5:hover{color:rgb(var(--gray-3)/.05)}.hover\:text-gray-3\/50:hover{color:rgb(var(--gray-3)/.5)}.hover\:text-gray-3\/60:hover{color:rgb(var(--gray-3)/.6)}.hover\:text-gray-3\/70:hover{color:rgb(var(--gray-3)/.7)}.hover\:text-gray-3\/75:hover{color:rgb(var(--gray-3)/.75)}.hover\:text-gray-3\/80:hover{color:rgb(var(--gray-3)/.8)}.hover\:text-gray-3\/90:hover{color:rgb(var(--gray-3)/.9)}.hover\:text-gray-3\/95:hover{color:rgb(var(--gray-3)/.95)}.hover\:text-gray-4\/0:hover{color:rgb(var(--gray-4)/0)}.hover\:text-gray-4\/10:hover{color:rgb(var(--gray-4)/.1)}.hover\:text-gray-4\/100:hover{color:rgb(var(--gray-4)/1)}.hover\:text-gray-4\/20:hover{color:rgb(var(--gray-4)/.2)}.hover\:text-gray-4\/25:hover{color:rgb(var(--gray-4)/.25)}.hover\:text-gray-4\/30:hover{color:rgb(var(--gray-4)/.3)}.hover\:text-gray-4\/40:hover{color:rgb(var(--gray-4)/.4)}.hover\:text-gray-4\/5:hover{color:rgb(var(--gray-4)/.05)}.hover\:text-gray-4\/50:hover{color:rgb(var(--gray-4)/.5)}.hover\:text-gray-4\/60:hover{color:rgb(var(--gray-4)/.6)}.hover\:text-gray-4\/70:hover{color:rgb(var(--gray-4)/.7)}.hover\:text-gray-4\/75:hover{color:rgb(var(--gray-4)/.75)}.hover\:text-gray-4\/80:hover{color:rgb(var(--gray-4)/.8)}.hover\:text-gray-4\/90:hover{color:rgb(var(--gray-4)/.9)}.hover\:text-gray-4\/95:hover{color:rgb(var(--gray-4)/.95)}.hover\:text-gray-5\/0:hover{color:rgb(var(--gray-5)/0)}.hover\:text-gray-5\/10:hover{color:rgb(var(--gray-5)/.1)}.hover\:text-gray-5\/100:hover{color:rgb(var(--gray-5)/1)}.hover\:text-gray-5\/20:hover{color:rgb(var(--gray-5)/.2)}.hover\:text-gray-5\/25:hover{color:rgb(var(--gray-5)/.25)}.hover\:text-gray-5\/30:hover{color:rgb(var(--gray-5)/.3)}.hover\:text-gray-5\/40:hover{color:rgb(var(--gray-5)/.4)}.hover\:text-gray-5\/5:hover{color:rgb(var(--gray-5)/.05)}.hover\:text-gray-5\/50:hover{color:rgb(var(--gray-5)/.5)}.hover\:text-gray-5\/60:hover{color:rgb(var(--gray-5)/.6)}.hover\:text-gray-5\/70:hover{color:rgb(var(--gray-5)/.7)}.hover\:text-gray-5\/75:hover{color:rgb(var(--gray-5)/.75)}.hover\:text-gray-5\/80:hover{color:rgb(var(--gray-5)/.8)}.hover\:text-gray-5\/90:hover{color:rgb(var(--gray-5)/.9)}.hover\:text-gray-5\/95:hover{color:rgb(var(--gray-5)/.95)}.hover\:text-gray-6\/0:hover{color:rgb(var(--gray-6)/0)}.hover\:text-gray-6\/10:hover{color:rgb(var(--gray-6)/.1)}.hover\:text-gray-6\/100:hover{color:rgb(var(--gray-6)/1)}.hover\:text-gray-6\/20:hover{color:rgb(var(--gray-6)/.2)}.hover\:text-gray-6\/25:hover{color:rgb(var(--gray-6)/.25)}.hover\:text-gray-6\/30:hover{color:rgb(var(--gray-6)/.3)}.hover\:text-gray-6\/40:hover{color:rgb(var(--gray-6)/.4)}.hover\:text-gray-6\/5:hover{color:rgb(var(--gray-6)/.05)}.hover\:text-gray-6\/50:hover{color:rgb(var(--gray-6)/.5)}.hover\:text-gray-6\/60:hover{color:rgb(var(--gray-6)/.6)}.hover\:text-gray-6\/70:hover{color:rgb(var(--gray-6)/.7)}.hover\:text-gray-6\/75:hover{color:rgb(var(--gray-6)/.75)}.hover\:text-gray-6\/80:hover{color:rgb(var(--gray-6)/.8)}.hover\:text-gray-6\/90:hover{color:rgb(var(--gray-6)/.9)}.hover\:text-gray-6\/95:hover{color:rgb(var(--gray-6)/.95)}.hover\:text-gray-7\/0:hover{color:rgb(var(--gray-7)/0)}.hover\:text-gray-7\/10:hover{color:rgb(var(--gray-7)/.1)}.hover\:text-gray-7\/100:hover{color:rgb(var(--gray-7)/1)}.hover\:text-gray-7\/20:hover{color:rgb(var(--gray-7)/.2)}.hover\:text-gray-7\/25:hover{color:rgb(var(--gray-7)/.25)}.hover\:text-gray-7\/30:hover{color:rgb(var(--gray-7)/.3)}.hover\:text-gray-7\/40:hover{color:rgb(var(--gray-7)/.4)}.hover\:text-gray-7\/5:hover{color:rgb(var(--gray-7)/.05)}.hover\:text-gray-7\/50:hover{color:rgb(var(--gray-7)/.5)}.hover\:text-gray-7\/60:hover{color:rgb(var(--gray-7)/.6)}.hover\:text-gray-7\/70:hover{color:rgb(var(--gray-7)/.7)}.hover\:text-gray-7\/75:hover{color:rgb(var(--gray-7)/.75)}.hover\:text-gray-7\/80:hover{color:rgb(var(--gray-7)/.8)}.hover\:text-gray-7\/90:hover{color:rgb(var(--gray-7)/.9)}.hover\:text-gray-7\/95:hover{color:rgb(var(--gray-7)/.95)}.hover\:text-gray-8\/0:hover{color:rgb(var(--gray-8)/0)}.hover\:text-gray-8\/10:hover{color:rgb(var(--gray-8)/.1)}.hover\:text-gray-8\/100:hover{color:rgb(var(--gray-8)/1)}.hover\:text-gray-8\/20:hover{color:rgb(var(--gray-8)/.2)}.hover\:text-gray-8\/25:hover{color:rgb(var(--gray-8)/.25)}.hover\:text-gray-8\/30:hover{color:rgb(var(--gray-8)/.3)}.hover\:text-gray-8\/40:hover{color:rgb(var(--gray-8)/.4)}.hover\:text-gray-8\/5:hover{color:rgb(var(--gray-8)/.05)}.hover\:text-gray-8\/50:hover{color:rgb(var(--gray-8)/.5)}.hover\:text-gray-8\/60:hover{color:rgb(var(--gray-8)/.6)}.hover\:text-gray-8\/70:hover{color:rgb(var(--gray-8)/.7)}.hover\:text-gray-8\/75:hover{color:rgb(var(--gray-8)/.75)}.hover\:text-gray-8\/80:hover{color:rgb(var(--gray-8)/.8)}.hover\:text-gray-8\/90:hover{color:rgb(var(--gray-8)/.9)}.hover\:text-gray-8\/95:hover{color:rgb(var(--gray-8)/.95)}.hover\:text-gray-9\/0:hover{color:rgb(var(--gray-9)/0)}.hover\:text-gray-9\/10:hover{color:rgb(var(--gray-9)/.1)}.hover\:text-gray-9\/100:hover{color:rgb(var(--gray-9)/1)}.hover\:text-gray-9\/20:hover{color:rgb(var(--gray-9)/.2)}.hover\:text-gray-9\/25:hover{color:rgb(var(--gray-9)/.25)}.hover\:text-gray-9\/30:hover{color:rgb(var(--gray-9)/.3)}.hover\:text-gray-9\/40:hover{color:rgb(var(--gray-9)/.4)}.hover\:text-gray-9\/5:hover{color:rgb(var(--gray-9)/.05)}.hover\:text-gray-9\/50:hover{color:rgb(var(--gray-9)/.5)}.hover\:text-gray-9\/60:hover{color:rgb(var(--gray-9)/.6)}.hover\:text-gray-9\/70:hover{color:rgb(var(--gray-9)/.7)}.hover\:text-gray-9\/75:hover{color:rgb(var(--gray-9)/.75)}.hover\:text-gray-9\/80:hover{color:rgb(var(--gray-9)/.8)}.hover\:text-gray-9\/90:hover{color:rgb(var(--gray-9)/.9)}.hover\:text-gray-9\/95:hover{color:rgb(var(--gray-9)/.95)}.hover\:text-green-1\/0:hover{color:rgb(var(--green-1)/0)}.hover\:text-green-1\/10:hover{color:rgb(var(--green-1)/.1)}.hover\:text-green-1\/100:hover{color:rgb(var(--green-1)/1)}.hover\:text-green-1\/20:hover{color:rgb(var(--green-1)/.2)}.hover\:text-green-1\/25:hover{color:rgb(var(--green-1)/.25)}.hover\:text-green-1\/30:hover{color:rgb(var(--green-1)/.3)}.hover\:text-green-1\/40:hover{color:rgb(var(--green-1)/.4)}.hover\:text-green-1\/5:hover{color:rgb(var(--green-1)/.05)}.hover\:text-green-1\/50:hover{color:rgb(var(--green-1)/.5)}.hover\:text-green-1\/60:hover{color:rgb(var(--green-1)/.6)}.hover\:text-green-1\/70:hover{color:rgb(var(--green-1)/.7)}.hover\:text-green-1\/75:hover{color:rgb(var(--green-1)/.75)}.hover\:text-green-1\/80:hover{color:rgb(var(--green-1)/.8)}.hover\:text-green-1\/90:hover{color:rgb(var(--green-1)/.9)}.hover\:text-green-1\/95:hover{color:rgb(var(--green-1)/.95)}.hover\:text-green-10\/0:hover{color:rgb(var(--green-10)/0)}.hover\:text-green-10\/10:hover{color:rgb(var(--green-10)/.1)}.hover\:text-green-10\/100:hover{color:rgb(var(--green-10)/1)}.hover\:text-green-10\/20:hover{color:rgb(var(--green-10)/.2)}.hover\:text-green-10\/25:hover{color:rgb(var(--green-10)/.25)}.hover\:text-green-10\/30:hover{color:rgb(var(--green-10)/.3)}.hover\:text-green-10\/40:hover{color:rgb(var(--green-10)/.4)}.hover\:text-green-10\/5:hover{color:rgb(var(--green-10)/.05)}.hover\:text-green-10\/50:hover{color:rgb(var(--green-10)/.5)}.hover\:text-green-10\/60:hover{color:rgb(var(--green-10)/.6)}.hover\:text-green-10\/70:hover{color:rgb(var(--green-10)/.7)}.hover\:text-green-10\/75:hover{color:rgb(var(--green-10)/.75)}.hover\:text-green-10\/80:hover{color:rgb(var(--green-10)/.8)}.hover\:text-green-10\/90:hover{color:rgb(var(--green-10)/.9)}.hover\:text-green-10\/95:hover{color:rgb(var(--green-10)/.95)}.hover\:text-green-2\/0:hover{color:rgb(var(--green-2)/0)}.hover\:text-green-2\/10:hover{color:rgb(var(--green-2)/.1)}.hover\:text-green-2\/100:hover{color:rgb(var(--green-2)/1)}.hover\:text-green-2\/20:hover{color:rgb(var(--green-2)/.2)}.hover\:text-green-2\/25:hover{color:rgb(var(--green-2)/.25)}.hover\:text-green-2\/30:hover{color:rgb(var(--green-2)/.3)}.hover\:text-green-2\/40:hover{color:rgb(var(--green-2)/.4)}.hover\:text-green-2\/5:hover{color:rgb(var(--green-2)/.05)}.hover\:text-green-2\/50:hover{color:rgb(var(--green-2)/.5)}.hover\:text-green-2\/60:hover{color:rgb(var(--green-2)/.6)}.hover\:text-green-2\/70:hover{color:rgb(var(--green-2)/.7)}.hover\:text-green-2\/75:hover{color:rgb(var(--green-2)/.75)}.hover\:text-green-2\/80:hover{color:rgb(var(--green-2)/.8)}.hover\:text-green-2\/90:hover{color:rgb(var(--green-2)/.9)}.hover\:text-green-2\/95:hover{color:rgb(var(--green-2)/.95)}.hover\:text-green-3\/0:hover{color:rgb(var(--green-3)/0)}.hover\:text-green-3\/10:hover{color:rgb(var(--green-3)/.1)}.hover\:text-green-3\/100:hover{color:rgb(var(--green-3)/1)}.hover\:text-green-3\/20:hover{color:rgb(var(--green-3)/.2)}.hover\:text-green-3\/25:hover{color:rgb(var(--green-3)/.25)}.hover\:text-green-3\/30:hover{color:rgb(var(--green-3)/.3)}.hover\:text-green-3\/40:hover{color:rgb(var(--green-3)/.4)}.hover\:text-green-3\/5:hover{color:rgb(var(--green-3)/.05)}.hover\:text-green-3\/50:hover{color:rgb(var(--green-3)/.5)}.hover\:text-green-3\/60:hover{color:rgb(var(--green-3)/.6)}.hover\:text-green-3\/70:hover{color:rgb(var(--green-3)/.7)}.hover\:text-green-3\/75:hover{color:rgb(var(--green-3)/.75)}.hover\:text-green-3\/80:hover{color:rgb(var(--green-3)/.8)}.hover\:text-green-3\/90:hover{color:rgb(var(--green-3)/.9)}.hover\:text-green-3\/95:hover{color:rgb(var(--green-3)/.95)}.hover\:text-green-4\/0:hover{color:rgb(var(--green-4)/0)}.hover\:text-green-4\/10:hover{color:rgb(var(--green-4)/.1)}.hover\:text-green-4\/100:hover{color:rgb(var(--green-4)/1)}.hover\:text-green-4\/20:hover{color:rgb(var(--green-4)/.2)}.hover\:text-green-4\/25:hover{color:rgb(var(--green-4)/.25)}.hover\:text-green-4\/30:hover{color:rgb(var(--green-4)/.3)}.hover\:text-green-4\/40:hover{color:rgb(var(--green-4)/.4)}.hover\:text-green-4\/5:hover{color:rgb(var(--green-4)/.05)}.hover\:text-green-4\/50:hover{color:rgb(var(--green-4)/.5)}.hover\:text-green-4\/60:hover{color:rgb(var(--green-4)/.6)}.hover\:text-green-4\/70:hover{color:rgb(var(--green-4)/.7)}.hover\:text-green-4\/75:hover{color:rgb(var(--green-4)/.75)}.hover\:text-green-4\/80:hover{color:rgb(var(--green-4)/.8)}.hover\:text-green-4\/90:hover{color:rgb(var(--green-4)/.9)}.hover\:text-green-4\/95:hover{color:rgb(var(--green-4)/.95)}.hover\:text-green-5\/0:hover{color:rgb(var(--green-5)/0)}.hover\:text-green-5\/10:hover{color:rgb(var(--green-5)/.1)}.hover\:text-green-5\/100:hover{color:rgb(var(--green-5)/1)}.hover\:text-green-5\/20:hover{color:rgb(var(--green-5)/.2)}.hover\:text-green-5\/25:hover{color:rgb(var(--green-5)/.25)}.hover\:text-green-5\/30:hover{color:rgb(var(--green-5)/.3)}.hover\:text-green-5\/40:hover{color:rgb(var(--green-5)/.4)}.hover\:text-green-5\/5:hover{color:rgb(var(--green-5)/.05)}.hover\:text-green-5\/50:hover{color:rgb(var(--green-5)/.5)}.hover\:text-green-5\/60:hover{color:rgb(var(--green-5)/.6)}.hover\:text-green-5\/70:hover{color:rgb(var(--green-5)/.7)}.hover\:text-green-5\/75:hover{color:rgb(var(--green-5)/.75)}.hover\:text-green-5\/80:hover{color:rgb(var(--green-5)/.8)}.hover\:text-green-5\/90:hover{color:rgb(var(--green-5)/.9)}.hover\:text-green-5\/95:hover{color:rgb(var(--green-5)/.95)}.hover\:text-green-6\/0:hover{color:rgb(var(--green-6)/0)}.hover\:text-green-6\/10:hover{color:rgb(var(--green-6)/.1)}.hover\:text-green-6\/100:hover{color:rgb(var(--green-6)/1)}.hover\:text-green-6\/20:hover{color:rgb(var(--green-6)/.2)}.hover\:text-green-6\/25:hover{color:rgb(var(--green-6)/.25)}.hover\:text-green-6\/30:hover{color:rgb(var(--green-6)/.3)}.hover\:text-green-6\/40:hover{color:rgb(var(--green-6)/.4)}.hover\:text-green-6\/5:hover{color:rgb(var(--green-6)/.05)}.hover\:text-green-6\/50:hover{color:rgb(var(--green-6)/.5)}.hover\:text-green-6\/60:hover{color:rgb(var(--green-6)/.6)}.hover\:text-green-6\/70:hover{color:rgb(var(--green-6)/.7)}.hover\:text-green-6\/75:hover{color:rgb(var(--green-6)/.75)}.hover\:text-green-6\/80:hover{color:rgb(var(--green-6)/.8)}.hover\:text-green-6\/90:hover{color:rgb(var(--green-6)/.9)}.hover\:text-green-6\/95:hover{color:rgb(var(--green-6)/.95)}.hover\:text-green-7\/0:hover{color:rgb(var(--green-7)/0)}.hover\:text-green-7\/10:hover{color:rgb(var(--green-7)/.1)}.hover\:text-green-7\/100:hover{color:rgb(var(--green-7)/1)}.hover\:text-green-7\/20:hover{color:rgb(var(--green-7)/.2)}.hover\:text-green-7\/25:hover{color:rgb(var(--green-7)/.25)}.hover\:text-green-7\/30:hover{color:rgb(var(--green-7)/.3)}.hover\:text-green-7\/40:hover{color:rgb(var(--green-7)/.4)}.hover\:text-green-7\/5:hover{color:rgb(var(--green-7)/.05)}.hover\:text-green-7\/50:hover{color:rgb(var(--green-7)/.5)}.hover\:text-green-7\/60:hover{color:rgb(var(--green-7)/.6)}.hover\:text-green-7\/70:hover{color:rgb(var(--green-7)/.7)}.hover\:text-green-7\/75:hover{color:rgb(var(--green-7)/.75)}.hover\:text-green-7\/80:hover{color:rgb(var(--green-7)/.8)}.hover\:text-green-7\/90:hover{color:rgb(var(--green-7)/.9)}.hover\:text-green-7\/95:hover{color:rgb(var(--green-7)/.95)}.hover\:text-green-8\/0:hover{color:rgb(var(--green-8)/0)}.hover\:text-green-8\/10:hover{color:rgb(var(--green-8)/.1)}.hover\:text-green-8\/100:hover{color:rgb(var(--green-8)/1)}.hover\:text-green-8\/20:hover{color:rgb(var(--green-8)/.2)}.hover\:text-green-8\/25:hover{color:rgb(var(--green-8)/.25)}.hover\:text-green-8\/30:hover{color:rgb(var(--green-8)/.3)}.hover\:text-green-8\/40:hover{color:rgb(var(--green-8)/.4)}.hover\:text-green-8\/5:hover{color:rgb(var(--green-8)/.05)}.hover\:text-green-8\/50:hover{color:rgb(var(--green-8)/.5)}.hover\:text-green-8\/60:hover{color:rgb(var(--green-8)/.6)}.hover\:text-green-8\/70:hover{color:rgb(var(--green-8)/.7)}.hover\:text-green-8\/75:hover{color:rgb(var(--green-8)/.75)}.hover\:text-green-8\/80:hover{color:rgb(var(--green-8)/.8)}.hover\:text-green-8\/90:hover{color:rgb(var(--green-8)/.9)}.hover\:text-green-8\/95:hover{color:rgb(var(--green-8)/.95)}.hover\:text-green-9\/0:hover{color:rgb(var(--green-9)/0)}.hover\:text-green-9\/10:hover{color:rgb(var(--green-9)/.1)}.hover\:text-green-9\/100:hover{color:rgb(var(--green-9)/1)}.hover\:text-green-9\/20:hover{color:rgb(var(--green-9)/.2)}.hover\:text-green-9\/25:hover{color:rgb(var(--green-9)/.25)}.hover\:text-green-9\/30:hover{color:rgb(var(--green-9)/.3)}.hover\:text-green-9\/40:hover{color:rgb(var(--green-9)/.4)}.hover\:text-green-9\/5:hover{color:rgb(var(--green-9)/.05)}.hover\:text-green-9\/50:hover{color:rgb(var(--green-9)/.5)}.hover\:text-green-9\/60:hover{color:rgb(var(--green-9)/.6)}.hover\:text-green-9\/70:hover{color:rgb(var(--green-9)/.7)}.hover\:text-green-9\/75:hover{color:rgb(var(--green-9)/.75)}.hover\:text-green-9\/80:hover{color:rgb(var(--green-9)/.8)}.hover\:text-green-9\/90:hover{color:rgb(var(--green-9)/.9)}.hover\:text-green-9\/95:hover{color:rgb(var(--green-9)/.95)}.hover\:text-pink-1\/0:hover{color:rgb(var(--pink-1)/0)}.hover\:text-pink-1\/10:hover{color:rgb(var(--pink-1)/.1)}.hover\:text-pink-1\/100:hover{color:rgb(var(--pink-1)/1)}.hover\:text-pink-1\/20:hover{color:rgb(var(--pink-1)/.2)}.hover\:text-pink-1\/25:hover{color:rgb(var(--pink-1)/.25)}.hover\:text-pink-1\/30:hover{color:rgb(var(--pink-1)/.3)}.hover\:text-pink-1\/40:hover{color:rgb(var(--pink-1)/.4)}.hover\:text-pink-1\/5:hover{color:rgb(var(--pink-1)/.05)}.hover\:text-pink-1\/50:hover{color:rgb(var(--pink-1)/.5)}.hover\:text-pink-1\/60:hover{color:rgb(var(--pink-1)/.6)}.hover\:text-pink-1\/70:hover{color:rgb(var(--pink-1)/.7)}.hover\:text-pink-1\/75:hover{color:rgb(var(--pink-1)/.75)}.hover\:text-pink-1\/80:hover{color:rgb(var(--pink-1)/.8)}.hover\:text-pink-1\/90:hover{color:rgb(var(--pink-1)/.9)}.hover\:text-pink-1\/95:hover{color:rgb(var(--pink-1)/.95)}.hover\:text-pink-10\/0:hover{color:rgb(var(--pink-10)/0)}.hover\:text-pink-10\/10:hover{color:rgb(var(--pink-10)/.1)}.hover\:text-pink-10\/100:hover{color:rgb(var(--pink-10)/1)}.hover\:text-pink-10\/20:hover{color:rgb(var(--pink-10)/.2)}.hover\:text-pink-10\/25:hover{color:rgb(var(--pink-10)/.25)}.hover\:text-pink-10\/30:hover{color:rgb(var(--pink-10)/.3)}.hover\:text-pink-10\/40:hover{color:rgb(var(--pink-10)/.4)}.hover\:text-pink-10\/5:hover{color:rgb(var(--pink-10)/.05)}.hover\:text-pink-10\/50:hover{color:rgb(var(--pink-10)/.5)}.hover\:text-pink-10\/60:hover{color:rgb(var(--pink-10)/.6)}.hover\:text-pink-10\/70:hover{color:rgb(var(--pink-10)/.7)}.hover\:text-pink-10\/75:hover{color:rgb(var(--pink-10)/.75)}.hover\:text-pink-10\/80:hover{color:rgb(var(--pink-10)/.8)}.hover\:text-pink-10\/90:hover{color:rgb(var(--pink-10)/.9)}.hover\:text-pink-10\/95:hover{color:rgb(var(--pink-10)/.95)}.hover\:text-pink-2\/0:hover{color:rgb(var(--pink-2)/0)}.hover\:text-pink-2\/10:hover{color:rgb(var(--pink-2)/.1)}.hover\:text-pink-2\/100:hover{color:rgb(var(--pink-2)/1)}.hover\:text-pink-2\/20:hover{color:rgb(var(--pink-2)/.2)}.hover\:text-pink-2\/25:hover{color:rgb(var(--pink-2)/.25)}.hover\:text-pink-2\/30:hover{color:rgb(var(--pink-2)/.3)}.hover\:text-pink-2\/40:hover{color:rgb(var(--pink-2)/.4)}.hover\:text-pink-2\/5:hover{color:rgb(var(--pink-2)/.05)}.hover\:text-pink-2\/50:hover{color:rgb(var(--pink-2)/.5)}.hover\:text-pink-2\/60:hover{color:rgb(var(--pink-2)/.6)}.hover\:text-pink-2\/70:hover{color:rgb(var(--pink-2)/.7)}.hover\:text-pink-2\/75:hover{color:rgb(var(--pink-2)/.75)}.hover\:text-pink-2\/80:hover{color:rgb(var(--pink-2)/.8)}.hover\:text-pink-2\/90:hover{color:rgb(var(--pink-2)/.9)}.hover\:text-pink-2\/95:hover{color:rgb(var(--pink-2)/.95)}.hover\:text-pink-3\/0:hover{color:rgb(var(--pink-3)/0)}.hover\:text-pink-3\/10:hover{color:rgb(var(--pink-3)/.1)}.hover\:text-pink-3\/100:hover{color:rgb(var(--pink-3)/1)}.hover\:text-pink-3\/20:hover{color:rgb(var(--pink-3)/.2)}.hover\:text-pink-3\/25:hover{color:rgb(var(--pink-3)/.25)}.hover\:text-pink-3\/30:hover{color:rgb(var(--pink-3)/.3)}.hover\:text-pink-3\/40:hover{color:rgb(var(--pink-3)/.4)}.hover\:text-pink-3\/5:hover{color:rgb(var(--pink-3)/.05)}.hover\:text-pink-3\/50:hover{color:rgb(var(--pink-3)/.5)}.hover\:text-pink-3\/60:hover{color:rgb(var(--pink-3)/.6)}.hover\:text-pink-3\/70:hover{color:rgb(var(--pink-3)/.7)}.hover\:text-pink-3\/75:hover{color:rgb(var(--pink-3)/.75)}.hover\:text-pink-3\/80:hover{color:rgb(var(--pink-3)/.8)}.hover\:text-pink-3\/90:hover{color:rgb(var(--pink-3)/.9)}.hover\:text-pink-3\/95:hover{color:rgb(var(--pink-3)/.95)}.hover\:text-pink-4\/0:hover{color:rgb(var(--pink-4)/0)}.hover\:text-pink-4\/10:hover{color:rgb(var(--pink-4)/.1)}.hover\:text-pink-4\/100:hover{color:rgb(var(--pink-4)/1)}.hover\:text-pink-4\/20:hover{color:rgb(var(--pink-4)/.2)}.hover\:text-pink-4\/25:hover{color:rgb(var(--pink-4)/.25)}.hover\:text-pink-4\/30:hover{color:rgb(var(--pink-4)/.3)}.hover\:text-pink-4\/40:hover{color:rgb(var(--pink-4)/.4)}.hover\:text-pink-4\/5:hover{color:rgb(var(--pink-4)/.05)}.hover\:text-pink-4\/50:hover{color:rgb(var(--pink-4)/.5)}.hover\:text-pink-4\/60:hover{color:rgb(var(--pink-4)/.6)}.hover\:text-pink-4\/70:hover{color:rgb(var(--pink-4)/.7)}.hover\:text-pink-4\/75:hover{color:rgb(var(--pink-4)/.75)}.hover\:text-pink-4\/80:hover{color:rgb(var(--pink-4)/.8)}.hover\:text-pink-4\/90:hover{color:rgb(var(--pink-4)/.9)}.hover\:text-pink-4\/95:hover{color:rgb(var(--pink-4)/.95)}.hover\:text-pink-5\/0:hover{color:rgb(var(--pink-5)/0)}.hover\:text-pink-5\/10:hover{color:rgb(var(--pink-5)/.1)}.hover\:text-pink-5\/100:hover{color:rgb(var(--pink-5)/1)}.hover\:text-pink-5\/20:hover{color:rgb(var(--pink-5)/.2)}.hover\:text-pink-5\/25:hover{color:rgb(var(--pink-5)/.25)}.hover\:text-pink-5\/30:hover{color:rgb(var(--pink-5)/.3)}.hover\:text-pink-5\/40:hover{color:rgb(var(--pink-5)/.4)}.hover\:text-pink-5\/5:hover{color:rgb(var(--pink-5)/.05)}.hover\:text-pink-5\/50:hover{color:rgb(var(--pink-5)/.5)}.hover\:text-pink-5\/60:hover{color:rgb(var(--pink-5)/.6)}.hover\:text-pink-5\/70:hover{color:rgb(var(--pink-5)/.7)}.hover\:text-pink-5\/75:hover{color:rgb(var(--pink-5)/.75)}.hover\:text-pink-5\/80:hover{color:rgb(var(--pink-5)/.8)}.hover\:text-pink-5\/90:hover{color:rgb(var(--pink-5)/.9)}.hover\:text-pink-5\/95:hover{color:rgb(var(--pink-5)/.95)}.hover\:text-pink-6\/0:hover{color:rgb(var(--pink-6)/0)}.hover\:text-pink-6\/10:hover{color:rgb(var(--pink-6)/.1)}.hover\:text-pink-6\/100:hover{color:rgb(var(--pink-6)/1)}.hover\:text-pink-6\/20:hover{color:rgb(var(--pink-6)/.2)}.hover\:text-pink-6\/25:hover{color:rgb(var(--pink-6)/.25)}.hover\:text-pink-6\/30:hover{color:rgb(var(--pink-6)/.3)}.hover\:text-pink-6\/40:hover{color:rgb(var(--pink-6)/.4)}.hover\:text-pink-6\/5:hover{color:rgb(var(--pink-6)/.05)}.hover\:text-pink-6\/50:hover{color:rgb(var(--pink-6)/.5)}.hover\:text-pink-6\/60:hover{color:rgb(var(--pink-6)/.6)}.hover\:text-pink-6\/70:hover{color:rgb(var(--pink-6)/.7)}.hover\:text-pink-6\/75:hover{color:rgb(var(--pink-6)/.75)}.hover\:text-pink-6\/80:hover{color:rgb(var(--pink-6)/.8)}.hover\:text-pink-6\/90:hover{color:rgb(var(--pink-6)/.9)}.hover\:text-pink-6\/95:hover{color:rgb(var(--pink-6)/.95)}.hover\:text-pink-7\/0:hover{color:rgb(var(--pink-7)/0)}.hover\:text-pink-7\/10:hover{color:rgb(var(--pink-7)/.1)}.hover\:text-pink-7\/100:hover{color:rgb(var(--pink-7)/1)}.hover\:text-pink-7\/20:hover{color:rgb(var(--pink-7)/.2)}.hover\:text-pink-7\/25:hover{color:rgb(var(--pink-7)/.25)}.hover\:text-pink-7\/30:hover{color:rgb(var(--pink-7)/.3)}.hover\:text-pink-7\/40:hover{color:rgb(var(--pink-7)/.4)}.hover\:text-pink-7\/5:hover{color:rgb(var(--pink-7)/.05)}.hover\:text-pink-7\/50:hover{color:rgb(var(--pink-7)/.5)}.hover\:text-pink-7\/60:hover{color:rgb(var(--pink-7)/.6)}.hover\:text-pink-7\/70:hover{color:rgb(var(--pink-7)/.7)}.hover\:text-pink-7\/75:hover{color:rgb(var(--pink-7)/.75)}.hover\:text-pink-7\/80:hover{color:rgb(var(--pink-7)/.8)}.hover\:text-pink-7\/90:hover{color:rgb(var(--pink-7)/.9)}.hover\:text-pink-7\/95:hover{color:rgb(var(--pink-7)/.95)}.hover\:text-pink-8\/0:hover{color:rgb(var(--pink-8)/0)}.hover\:text-pink-8\/10:hover{color:rgb(var(--pink-8)/.1)}.hover\:text-pink-8\/100:hover{color:rgb(var(--pink-8)/1)}.hover\:text-pink-8\/20:hover{color:rgb(var(--pink-8)/.2)}.hover\:text-pink-8\/25:hover{color:rgb(var(--pink-8)/.25)}.hover\:text-pink-8\/30:hover{color:rgb(var(--pink-8)/.3)}.hover\:text-pink-8\/40:hover{color:rgb(var(--pink-8)/.4)}.hover\:text-pink-8\/5:hover{color:rgb(var(--pink-8)/.05)}.hover\:text-pink-8\/50:hover{color:rgb(var(--pink-8)/.5)}.hover\:text-pink-8\/60:hover{color:rgb(var(--pink-8)/.6)}.hover\:text-pink-8\/70:hover{color:rgb(var(--pink-8)/.7)}.hover\:text-pink-8\/75:hover{color:rgb(var(--pink-8)/.75)}.hover\:text-pink-8\/80:hover{color:rgb(var(--pink-8)/.8)}.hover\:text-pink-8\/90:hover{color:rgb(var(--pink-8)/.9)}.hover\:text-pink-8\/95:hover{color:rgb(var(--pink-8)/.95)}.hover\:text-pink-9\/0:hover{color:rgb(var(--pink-9)/0)}.hover\:text-pink-9\/10:hover{color:rgb(var(--pink-9)/.1)}.hover\:text-pink-9\/100:hover{color:rgb(var(--pink-9)/1)}.hover\:text-pink-9\/20:hover{color:rgb(var(--pink-9)/.2)}.hover\:text-pink-9\/25:hover{color:rgb(var(--pink-9)/.25)}.hover\:text-pink-9\/30:hover{color:rgb(var(--pink-9)/.3)}.hover\:text-pink-9\/40:hover{color:rgb(var(--pink-9)/.4)}.hover\:text-pink-9\/5:hover{color:rgb(var(--pink-9)/.05)}.hover\:text-pink-9\/50:hover{color:rgb(var(--pink-9)/.5)}.hover\:text-pink-9\/60:hover{color:rgb(var(--pink-9)/.6)}.hover\:text-pink-9\/70:hover{color:rgb(var(--pink-9)/.7)}.hover\:text-pink-9\/75:hover{color:rgb(var(--pink-9)/.75)}.hover\:text-pink-9\/80:hover{color:rgb(var(--pink-9)/.8)}.hover\:text-pink-9\/90:hover{color:rgb(var(--pink-9)/.9)}.hover\:text-pink-9\/95:hover{color:rgb(var(--pink-9)/.95)}.hover\:text-primary:hover{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.hover\:text-primary\/0:hover{color:rgb(var(--primary)/0)}.hover\:text-primary\/10:hover{color:rgb(var(--primary)/.1)}.hover\:text-primary\/100:hover{color:rgb(var(--primary)/1)}.hover\:text-primary\/20:hover{color:rgb(var(--primary)/.2)}.hover\:text-primary\/25:hover{color:rgb(var(--primary)/.25)}.hover\:text-primary\/30:hover{color:rgb(var(--primary)/.3)}.hover\:text-primary\/40:hover{color:rgb(var(--primary)/.4)}.hover\:text-primary\/5:hover{color:rgb(var(--primary)/.05)}.hover\:text-primary\/50:hover{color:rgb(var(--primary)/.5)}.hover\:text-primary\/60:hover{color:rgb(var(--primary)/.6)}.hover\:text-primary\/70:hover{color:rgb(var(--primary)/.7)}.hover\:text-primary\/75:hover{color:rgb(var(--primary)/.75)}.hover\:text-primary\/80:hover{color:rgb(var(--primary)/.8)}.hover\:text-primary\/90:hover{color:rgb(var(--primary)/.9)}.hover\:text-primary\/95:hover{color:rgb(var(--primary)/.95)}.hover\:text-purple-1\/0:hover{color:rgb(var(--purple-1)/0)}.hover\:text-purple-1\/10:hover{color:rgb(var(--purple-1)/.1)}.hover\:text-purple-1\/100:hover{color:rgb(var(--purple-1)/1)}.hover\:text-purple-1\/20:hover{color:rgb(var(--purple-1)/.2)}.hover\:text-purple-1\/25:hover{color:rgb(var(--purple-1)/.25)}.hover\:text-purple-1\/30:hover{color:rgb(var(--purple-1)/.3)}.hover\:text-purple-1\/40:hover{color:rgb(var(--purple-1)/.4)}.hover\:text-purple-1\/5:hover{color:rgb(var(--purple-1)/.05)}.hover\:text-purple-1\/50:hover{color:rgb(var(--purple-1)/.5)}.hover\:text-purple-1\/60:hover{color:rgb(var(--purple-1)/.6)}.hover\:text-purple-1\/70:hover{color:rgb(var(--purple-1)/.7)}.hover\:text-purple-1\/75:hover{color:rgb(var(--purple-1)/.75)}.hover\:text-purple-1\/80:hover{color:rgb(var(--purple-1)/.8)}.hover\:text-purple-1\/90:hover{color:rgb(var(--purple-1)/.9)}.hover\:text-purple-1\/95:hover{color:rgb(var(--purple-1)/.95)}.hover\:text-purple-10\/0:hover{color:rgb(var(--purple-10)/0)}.hover\:text-purple-10\/10:hover{color:rgb(var(--purple-10)/.1)}.hover\:text-purple-10\/100:hover{color:rgb(var(--purple-10)/1)}.hover\:text-purple-10\/20:hover{color:rgb(var(--purple-10)/.2)}.hover\:text-purple-10\/25:hover{color:rgb(var(--purple-10)/.25)}.hover\:text-purple-10\/30:hover{color:rgb(var(--purple-10)/.3)}.hover\:text-purple-10\/40:hover{color:rgb(var(--purple-10)/.4)}.hover\:text-purple-10\/5:hover{color:rgb(var(--purple-10)/.05)}.hover\:text-purple-10\/50:hover{color:rgb(var(--purple-10)/.5)}.hover\:text-purple-10\/60:hover{color:rgb(var(--purple-10)/.6)}.hover\:text-purple-10\/70:hover{color:rgb(var(--purple-10)/.7)}.hover\:text-purple-10\/75:hover{color:rgb(var(--purple-10)/.75)}.hover\:text-purple-10\/80:hover{color:rgb(var(--purple-10)/.8)}.hover\:text-purple-10\/90:hover{color:rgb(var(--purple-10)/.9)}.hover\:text-purple-10\/95:hover{color:rgb(var(--purple-10)/.95)}.hover\:text-purple-2\/0:hover{color:rgb(var(--purple-2)/0)}.hover\:text-purple-2\/10:hover{color:rgb(var(--purple-2)/.1)}.hover\:text-purple-2\/100:hover{color:rgb(var(--purple-2)/1)}.hover\:text-purple-2\/20:hover{color:rgb(var(--purple-2)/.2)}.hover\:text-purple-2\/25:hover{color:rgb(var(--purple-2)/.25)}.hover\:text-purple-2\/30:hover{color:rgb(var(--purple-2)/.3)}.hover\:text-purple-2\/40:hover{color:rgb(var(--purple-2)/.4)}.hover\:text-purple-2\/5:hover{color:rgb(var(--purple-2)/.05)}.hover\:text-purple-2\/50:hover{color:rgb(var(--purple-2)/.5)}.hover\:text-purple-2\/60:hover{color:rgb(var(--purple-2)/.6)}.hover\:text-purple-2\/70:hover{color:rgb(var(--purple-2)/.7)}.hover\:text-purple-2\/75:hover{color:rgb(var(--purple-2)/.75)}.hover\:text-purple-2\/80:hover{color:rgb(var(--purple-2)/.8)}.hover\:text-purple-2\/90:hover{color:rgb(var(--purple-2)/.9)}.hover\:text-purple-2\/95:hover{color:rgb(var(--purple-2)/.95)}.hover\:text-purple-3\/0:hover{color:rgb(var(--purple-3)/0)}.hover\:text-purple-3\/10:hover{color:rgb(var(--purple-3)/.1)}.hover\:text-purple-3\/100:hover{color:rgb(var(--purple-3)/1)}.hover\:text-purple-3\/20:hover{color:rgb(var(--purple-3)/.2)}.hover\:text-purple-3\/25:hover{color:rgb(var(--purple-3)/.25)}.hover\:text-purple-3\/30:hover{color:rgb(var(--purple-3)/.3)}.hover\:text-purple-3\/40:hover{color:rgb(var(--purple-3)/.4)}.hover\:text-purple-3\/5:hover{color:rgb(var(--purple-3)/.05)}.hover\:text-purple-3\/50:hover{color:rgb(var(--purple-3)/.5)}.hover\:text-purple-3\/60:hover{color:rgb(var(--purple-3)/.6)}.hover\:text-purple-3\/70:hover{color:rgb(var(--purple-3)/.7)}.hover\:text-purple-3\/75:hover{color:rgb(var(--purple-3)/.75)}.hover\:text-purple-3\/80:hover{color:rgb(var(--purple-3)/.8)}.hover\:text-purple-3\/90:hover{color:rgb(var(--purple-3)/.9)}.hover\:text-purple-3\/95:hover{color:rgb(var(--purple-3)/.95)}.hover\:text-purple-4\/0:hover{color:rgb(var(--purple-4)/0)}.hover\:text-purple-4\/10:hover{color:rgb(var(--purple-4)/.1)}.hover\:text-purple-4\/100:hover{color:rgb(var(--purple-4)/1)}.hover\:text-purple-4\/20:hover{color:rgb(var(--purple-4)/.2)}.hover\:text-purple-4\/25:hover{color:rgb(var(--purple-4)/.25)}.hover\:text-purple-4\/30:hover{color:rgb(var(--purple-4)/.3)}.hover\:text-purple-4\/40:hover{color:rgb(var(--purple-4)/.4)}.hover\:text-purple-4\/5:hover{color:rgb(var(--purple-4)/.05)}.hover\:text-purple-4\/50:hover{color:rgb(var(--purple-4)/.5)}.hover\:text-purple-4\/60:hover{color:rgb(var(--purple-4)/.6)}.hover\:text-purple-4\/70:hover{color:rgb(var(--purple-4)/.7)}.hover\:text-purple-4\/75:hover{color:rgb(var(--purple-4)/.75)}.hover\:text-purple-4\/80:hover{color:rgb(var(--purple-4)/.8)}.hover\:text-purple-4\/90:hover{color:rgb(var(--purple-4)/.9)}.hover\:text-purple-4\/95:hover{color:rgb(var(--purple-4)/.95)}.hover\:text-purple-5\/0:hover{color:rgb(var(--purple-5)/0)}.hover\:text-purple-5\/10:hover{color:rgb(var(--purple-5)/.1)}.hover\:text-purple-5\/100:hover{color:rgb(var(--purple-5)/1)}.hover\:text-purple-5\/20:hover{color:rgb(var(--purple-5)/.2)}.hover\:text-purple-5\/25:hover{color:rgb(var(--purple-5)/.25)}.hover\:text-purple-5\/30:hover{color:rgb(var(--purple-5)/.3)}.hover\:text-purple-5\/40:hover{color:rgb(var(--purple-5)/.4)}.hover\:text-purple-5\/5:hover{color:rgb(var(--purple-5)/.05)}.hover\:text-purple-5\/50:hover{color:rgb(var(--purple-5)/.5)}.hover\:text-purple-5\/60:hover{color:rgb(var(--purple-5)/.6)}.hover\:text-purple-5\/70:hover{color:rgb(var(--purple-5)/.7)}.hover\:text-purple-5\/75:hover{color:rgb(var(--purple-5)/.75)}.hover\:text-purple-5\/80:hover{color:rgb(var(--purple-5)/.8)}.hover\:text-purple-5\/90:hover{color:rgb(var(--purple-5)/.9)}.hover\:text-purple-5\/95:hover{color:rgb(var(--purple-5)/.95)}.hover\:text-purple-6\/0:hover{color:rgb(var(--purple-6)/0)}.hover\:text-purple-6\/10:hover{color:rgb(var(--purple-6)/.1)}.hover\:text-purple-6\/100:hover{color:rgb(var(--purple-6)/1)}.hover\:text-purple-6\/20:hover{color:rgb(var(--purple-6)/.2)}.hover\:text-purple-6\/25:hover{color:rgb(var(--purple-6)/.25)}.hover\:text-purple-6\/30:hover{color:rgb(var(--purple-6)/.3)}.hover\:text-purple-6\/40:hover{color:rgb(var(--purple-6)/.4)}.hover\:text-purple-6\/5:hover{color:rgb(var(--purple-6)/.05)}.hover\:text-purple-6\/50:hover{color:rgb(var(--purple-6)/.5)}.hover\:text-purple-6\/60:hover{color:rgb(var(--purple-6)/.6)}.hover\:text-purple-6\/70:hover{color:rgb(var(--purple-6)/.7)}.hover\:text-purple-6\/75:hover{color:rgb(var(--purple-6)/.75)}.hover\:text-purple-6\/80:hover{color:rgb(var(--purple-6)/.8)}.hover\:text-purple-6\/90:hover{color:rgb(var(--purple-6)/.9)}.hover\:text-purple-6\/95:hover{color:rgb(var(--purple-6)/.95)}.hover\:text-purple-7\/0:hover{color:rgb(var(--purple-7)/0)}.hover\:text-purple-7\/10:hover{color:rgb(var(--purple-7)/.1)}.hover\:text-purple-7\/100:hover{color:rgb(var(--purple-7)/1)}.hover\:text-purple-7\/20:hover{color:rgb(var(--purple-7)/.2)}.hover\:text-purple-7\/25:hover{color:rgb(var(--purple-7)/.25)}.hover\:text-purple-7\/30:hover{color:rgb(var(--purple-7)/.3)}.hover\:text-purple-7\/40:hover{color:rgb(var(--purple-7)/.4)}.hover\:text-purple-7\/5:hover{color:rgb(var(--purple-7)/.05)}.hover\:text-purple-7\/50:hover{color:rgb(var(--purple-7)/.5)}.hover\:text-purple-7\/60:hover{color:rgb(var(--purple-7)/.6)}.hover\:text-purple-7\/70:hover{color:rgb(var(--purple-7)/.7)}.hover\:text-purple-7\/75:hover{color:rgb(var(--purple-7)/.75)}.hover\:text-purple-7\/80:hover{color:rgb(var(--purple-7)/.8)}.hover\:text-purple-7\/90:hover{color:rgb(var(--purple-7)/.9)}.hover\:text-purple-7\/95:hover{color:rgb(var(--purple-7)/.95)}.hover\:text-purple-8\/0:hover{color:rgb(var(--purple-8)/0)}.hover\:text-purple-8\/10:hover{color:rgb(var(--purple-8)/.1)}.hover\:text-purple-8\/100:hover{color:rgb(var(--purple-8)/1)}.hover\:text-purple-8\/20:hover{color:rgb(var(--purple-8)/.2)}.hover\:text-purple-8\/25:hover{color:rgb(var(--purple-8)/.25)}.hover\:text-purple-8\/30:hover{color:rgb(var(--purple-8)/.3)}.hover\:text-purple-8\/40:hover{color:rgb(var(--purple-8)/.4)}.hover\:text-purple-8\/5:hover{color:rgb(var(--purple-8)/.05)}.hover\:text-purple-8\/50:hover{color:rgb(var(--purple-8)/.5)}.hover\:text-purple-8\/60:hover{color:rgb(var(--purple-8)/.6)}.hover\:text-purple-8\/70:hover{color:rgb(var(--purple-8)/.7)}.hover\:text-purple-8\/75:hover{color:rgb(var(--purple-8)/.75)}.hover\:text-purple-8\/80:hover{color:rgb(var(--purple-8)/.8)}.hover\:text-purple-8\/90:hover{color:rgb(var(--purple-8)/.9)}.hover\:text-purple-8\/95:hover{color:rgb(var(--purple-8)/.95)}.hover\:text-purple-9\/0:hover{color:rgb(var(--purple-9)/0)}.hover\:text-purple-9\/10:hover{color:rgb(var(--purple-9)/.1)}.hover\:text-purple-9\/100:hover{color:rgb(var(--purple-9)/1)}.hover\:text-purple-9\/20:hover{color:rgb(var(--purple-9)/.2)}.hover\:text-purple-9\/25:hover{color:rgb(var(--purple-9)/.25)}.hover\:text-purple-9\/30:hover{color:rgb(var(--purple-9)/.3)}.hover\:text-purple-9\/40:hover{color:rgb(var(--purple-9)/.4)}.hover\:text-purple-9\/5:hover{color:rgb(var(--purple-9)/.05)}.hover\:text-purple-9\/50:hover{color:rgb(var(--purple-9)/.5)}.hover\:text-purple-9\/60:hover{color:rgb(var(--purple-9)/.6)}.hover\:text-purple-9\/70:hover{color:rgb(var(--purple-9)/.7)}.hover\:text-purple-9\/75:hover{color:rgb(var(--purple-9)/.75)}.hover\:text-purple-9\/80:hover{color:rgb(var(--purple-9)/.8)}.hover\:text-purple-9\/90:hover{color:rgb(var(--purple-9)/.9)}.hover\:text-purple-9\/95:hover{color:rgb(var(--purple-9)/.95)}.hover\:text-red-1\/0:hover{color:rgb(var(--red-1)/0)}.hover\:text-red-1\/10:hover{color:rgb(var(--red-1)/.1)}.hover\:text-red-1\/100:hover{color:rgb(var(--red-1)/1)}.hover\:text-red-1\/20:hover{color:rgb(var(--red-1)/.2)}.hover\:text-red-1\/25:hover{color:rgb(var(--red-1)/.25)}.hover\:text-red-1\/30:hover{color:rgb(var(--red-1)/.3)}.hover\:text-red-1\/40:hover{color:rgb(var(--red-1)/.4)}.hover\:text-red-1\/5:hover{color:rgb(var(--red-1)/.05)}.hover\:text-red-1\/50:hover{color:rgb(var(--red-1)/.5)}.hover\:text-red-1\/60:hover{color:rgb(var(--red-1)/.6)}.hover\:text-red-1\/70:hover{color:rgb(var(--red-1)/.7)}.hover\:text-red-1\/75:hover{color:rgb(var(--red-1)/.75)}.hover\:text-red-1\/80:hover{color:rgb(var(--red-1)/.8)}.hover\:text-red-1\/90:hover{color:rgb(var(--red-1)/.9)}.hover\:text-red-1\/95:hover{color:rgb(var(--red-1)/.95)}.hover\:text-red-10\/0:hover{color:rgb(var(--red-10)/0)}.hover\:text-red-10\/10:hover{color:rgb(var(--red-10)/.1)}.hover\:text-red-10\/100:hover{color:rgb(var(--red-10)/1)}.hover\:text-red-10\/20:hover{color:rgb(var(--red-10)/.2)}.hover\:text-red-10\/25:hover{color:rgb(var(--red-10)/.25)}.hover\:text-red-10\/30:hover{color:rgb(var(--red-10)/.3)}.hover\:text-red-10\/40:hover{color:rgb(var(--red-10)/.4)}.hover\:text-red-10\/5:hover{color:rgb(var(--red-10)/.05)}.hover\:text-red-10\/50:hover{color:rgb(var(--red-10)/.5)}.hover\:text-red-10\/60:hover{color:rgb(var(--red-10)/.6)}.hover\:text-red-10\/70:hover{color:rgb(var(--red-10)/.7)}.hover\:text-red-10\/75:hover{color:rgb(var(--red-10)/.75)}.hover\:text-red-10\/80:hover{color:rgb(var(--red-10)/.8)}.hover\:text-red-10\/90:hover{color:rgb(var(--red-10)/.9)}.hover\:text-red-10\/95:hover{color:rgb(var(--red-10)/.95)}.hover\:text-red-2\/0:hover{color:rgb(var(--red-2)/0)}.hover\:text-red-2\/10:hover{color:rgb(var(--red-2)/.1)}.hover\:text-red-2\/100:hover{color:rgb(var(--red-2)/1)}.hover\:text-red-2\/20:hover{color:rgb(var(--red-2)/.2)}.hover\:text-red-2\/25:hover{color:rgb(var(--red-2)/.25)}.hover\:text-red-2\/30:hover{color:rgb(var(--red-2)/.3)}.hover\:text-red-2\/40:hover{color:rgb(var(--red-2)/.4)}.hover\:text-red-2\/5:hover{color:rgb(var(--red-2)/.05)}.hover\:text-red-2\/50:hover{color:rgb(var(--red-2)/.5)}.hover\:text-red-2\/60:hover{color:rgb(var(--red-2)/.6)}.hover\:text-red-2\/70:hover{color:rgb(var(--red-2)/.7)}.hover\:text-red-2\/75:hover{color:rgb(var(--red-2)/.75)}.hover\:text-red-2\/80:hover{color:rgb(var(--red-2)/.8)}.hover\:text-red-2\/90:hover{color:rgb(var(--red-2)/.9)}.hover\:text-red-2\/95:hover{color:rgb(var(--red-2)/.95)}.hover\:text-red-3\/0:hover{color:rgb(var(--red-3)/0)}.hover\:text-red-3\/10:hover{color:rgb(var(--red-3)/.1)}.hover\:text-red-3\/100:hover{color:rgb(var(--red-3)/1)}.hover\:text-red-3\/20:hover{color:rgb(var(--red-3)/.2)}.hover\:text-red-3\/25:hover{color:rgb(var(--red-3)/.25)}.hover\:text-red-3\/30:hover{color:rgb(var(--red-3)/.3)}.hover\:text-red-3\/40:hover{color:rgb(var(--red-3)/.4)}.hover\:text-red-3\/5:hover{color:rgb(var(--red-3)/.05)}.hover\:text-red-3\/50:hover{color:rgb(var(--red-3)/.5)}.hover\:text-red-3\/60:hover{color:rgb(var(--red-3)/.6)}.hover\:text-red-3\/70:hover{color:rgb(var(--red-3)/.7)}.hover\:text-red-3\/75:hover{color:rgb(var(--red-3)/.75)}.hover\:text-red-3\/80:hover{color:rgb(var(--red-3)/.8)}.hover\:text-red-3\/90:hover{color:rgb(var(--red-3)/.9)}.hover\:text-red-3\/95:hover{color:rgb(var(--red-3)/.95)}.hover\:text-red-4\/0:hover{color:rgb(var(--red-4)/0)}.hover\:text-red-4\/10:hover{color:rgb(var(--red-4)/.1)}.hover\:text-red-4\/100:hover{color:rgb(var(--red-4)/1)}.hover\:text-red-4\/20:hover{color:rgb(var(--red-4)/.2)}.hover\:text-red-4\/25:hover{color:rgb(var(--red-4)/.25)}.hover\:text-red-4\/30:hover{color:rgb(var(--red-4)/.3)}.hover\:text-red-4\/40:hover{color:rgb(var(--red-4)/.4)}.hover\:text-red-4\/5:hover{color:rgb(var(--red-4)/.05)}.hover\:text-red-4\/50:hover{color:rgb(var(--red-4)/.5)}.hover\:text-red-4\/60:hover{color:rgb(var(--red-4)/.6)}.hover\:text-red-4\/70:hover{color:rgb(var(--red-4)/.7)}.hover\:text-red-4\/75:hover{color:rgb(var(--red-4)/.75)}.hover\:text-red-4\/80:hover{color:rgb(var(--red-4)/.8)}.hover\:text-red-4\/90:hover{color:rgb(var(--red-4)/.9)}.hover\:text-red-4\/95:hover{color:rgb(var(--red-4)/.95)}.hover\:text-red-5\/0:hover{color:rgb(var(--red-5)/0)}.hover\:text-red-5\/10:hover{color:rgb(var(--red-5)/.1)}.hover\:text-red-5\/100:hover{color:rgb(var(--red-5)/1)}.hover\:text-red-5\/20:hover{color:rgb(var(--red-5)/.2)}.hover\:text-red-5\/25:hover{color:rgb(var(--red-5)/.25)}.hover\:text-red-5\/30:hover{color:rgb(var(--red-5)/.3)}.hover\:text-red-5\/40:hover{color:rgb(var(--red-5)/.4)}.hover\:text-red-5\/5:hover{color:rgb(var(--red-5)/.05)}.hover\:text-red-5\/50:hover{color:rgb(var(--red-5)/.5)}.hover\:text-red-5\/60:hover{color:rgb(var(--red-5)/.6)}.hover\:text-red-5\/70:hover{color:rgb(var(--red-5)/.7)}.hover\:text-red-5\/75:hover{color:rgb(var(--red-5)/.75)}.hover\:text-red-5\/80:hover{color:rgb(var(--red-5)/.8)}.hover\:text-red-5\/90:hover{color:rgb(var(--red-5)/.9)}.hover\:text-red-5\/95:hover{color:rgb(var(--red-5)/.95)}.hover\:text-red-6\/0:hover{color:rgb(var(--red-6)/0)}.hover\:text-red-6\/10:hover{color:rgb(var(--red-6)/.1)}.hover\:text-red-6\/100:hover{color:rgb(var(--red-6)/1)}.hover\:text-red-6\/20:hover{color:rgb(var(--red-6)/.2)}.hover\:text-red-6\/25:hover{color:rgb(var(--red-6)/.25)}.hover\:text-red-6\/30:hover{color:rgb(var(--red-6)/.3)}.hover\:text-red-6\/40:hover{color:rgb(var(--red-6)/.4)}.hover\:text-red-6\/5:hover{color:rgb(var(--red-6)/.05)}.hover\:text-red-6\/50:hover{color:rgb(var(--red-6)/.5)}.hover\:text-red-6\/60:hover{color:rgb(var(--red-6)/.6)}.hover\:text-red-6\/70:hover{color:rgb(var(--red-6)/.7)}.hover\:text-red-6\/75:hover{color:rgb(var(--red-6)/.75)}.hover\:text-red-6\/80:hover{color:rgb(var(--red-6)/.8)}.hover\:text-red-6\/90:hover{color:rgb(var(--red-6)/.9)}.hover\:text-red-6\/95:hover{color:rgb(var(--red-6)/.95)}.hover\:text-red-7\/0:hover{color:rgb(var(--red-7)/0)}.hover\:text-red-7\/10:hover{color:rgb(var(--red-7)/.1)}.hover\:text-red-7\/100:hover{color:rgb(var(--red-7)/1)}.hover\:text-red-7\/20:hover{color:rgb(var(--red-7)/.2)}.hover\:text-red-7\/25:hover{color:rgb(var(--red-7)/.25)}.hover\:text-red-7\/30:hover{color:rgb(var(--red-7)/.3)}.hover\:text-red-7\/40:hover{color:rgb(var(--red-7)/.4)}.hover\:text-red-7\/5:hover{color:rgb(var(--red-7)/.05)}.hover\:text-red-7\/50:hover{color:rgb(var(--red-7)/.5)}.hover\:text-red-7\/60:hover{color:rgb(var(--red-7)/.6)}.hover\:text-red-7\/70:hover{color:rgb(var(--red-7)/.7)}.hover\:text-red-7\/75:hover{color:rgb(var(--red-7)/.75)}.hover\:text-red-7\/80:hover{color:rgb(var(--red-7)/.8)}.hover\:text-red-7\/90:hover{color:rgb(var(--red-7)/.9)}.hover\:text-red-7\/95:hover{color:rgb(var(--red-7)/.95)}.hover\:text-red-8\/0:hover{color:rgb(var(--red-8)/0)}.hover\:text-red-8\/10:hover{color:rgb(var(--red-8)/.1)}.hover\:text-red-8\/100:hover{color:rgb(var(--red-8)/1)}.hover\:text-red-8\/20:hover{color:rgb(var(--red-8)/.2)}.hover\:text-red-8\/25:hover{color:rgb(var(--red-8)/.25)}.hover\:text-red-8\/30:hover{color:rgb(var(--red-8)/.3)}.hover\:text-red-8\/40:hover{color:rgb(var(--red-8)/.4)}.hover\:text-red-8\/5:hover{color:rgb(var(--red-8)/.05)}.hover\:text-red-8\/50:hover{color:rgb(var(--red-8)/.5)}.hover\:text-red-8\/60:hover{color:rgb(var(--red-8)/.6)}.hover\:text-red-8\/70:hover{color:rgb(var(--red-8)/.7)}.hover\:text-red-8\/75:hover{color:rgb(var(--red-8)/.75)}.hover\:text-red-8\/80:hover{color:rgb(var(--red-8)/.8)}.hover\:text-red-8\/90:hover{color:rgb(var(--red-8)/.9)}.hover\:text-red-8\/95:hover{color:rgb(var(--red-8)/.95)}.hover\:text-red-9\/0:hover{color:rgb(var(--red-9)/0)}.hover\:text-red-9\/10:hover{color:rgb(var(--red-9)/.1)}.hover\:text-red-9\/100:hover{color:rgb(var(--red-9)/1)}.hover\:text-red-9\/20:hover{color:rgb(var(--red-9)/.2)}.hover\:text-red-9\/25:hover{color:rgb(var(--red-9)/.25)}.hover\:text-red-9\/30:hover{color:rgb(var(--red-9)/.3)}.hover\:text-red-9\/40:hover{color:rgb(var(--red-9)/.4)}.hover\:text-red-9\/5:hover{color:rgb(var(--red-9)/.05)}.hover\:text-red-9\/50:hover{color:rgb(var(--red-9)/.5)}.hover\:text-red-9\/60:hover{color:rgb(var(--red-9)/.6)}.hover\:text-red-9\/70:hover{color:rgb(var(--red-9)/.7)}.hover\:text-red-9\/75:hover{color:rgb(var(--red-9)/.75)}.hover\:text-red-9\/80:hover{color:rgb(var(--red-9)/.8)}.hover\:text-red-9\/90:hover{color:rgb(var(--red-9)/.9)}.hover\:text-red-9\/95:hover{color:rgb(var(--red-9)/.95)}.hover\:text-secondary:hover{--tw-text-opacity:1;color:rgb(var(--secondary)/var(--tw-text-opacity))}.hover\:text-secondary\/0:hover{color:rgb(var(--secondary)/0)}.hover\:text-secondary\/10:hover{color:rgb(var(--secondary)/.1)}.hover\:text-secondary\/100:hover{color:rgb(var(--secondary)/1)}.hover\:text-secondary\/20:hover{color:rgb(var(--secondary)/.2)}.hover\:text-secondary\/25:hover{color:rgb(var(--secondary)/.25)}.hover\:text-secondary\/30:hover{color:rgb(var(--secondary)/.3)}.hover\:text-secondary\/40:hover{color:rgb(var(--secondary)/.4)}.hover\:text-secondary\/5:hover{color:rgb(var(--secondary)/.05)}.hover\:text-secondary\/50:hover{color:rgb(var(--secondary)/.5)}.hover\:text-secondary\/60:hover{color:rgb(var(--secondary)/.6)}.hover\:text-secondary\/70:hover{color:rgb(var(--secondary)/.7)}.hover\:text-secondary\/75:hover{color:rgb(var(--secondary)/.75)}.hover\:text-secondary\/80:hover{color:rgb(var(--secondary)/.8)}.hover\:text-secondary\/90:hover{color:rgb(var(--secondary)/.9)}.hover\:text-secondary\/95:hover{color:rgb(var(--secondary)/.95)}.hover\:text-slate-1\/0:hover{color:rgb(var(--slate-1)/0)}.hover\:text-slate-1\/10:hover{color:rgb(var(--slate-1)/.1)}.hover\:text-slate-1\/100:hover{color:rgb(var(--slate-1)/1)}.hover\:text-slate-1\/20:hover{color:rgb(var(--slate-1)/.2)}.hover\:text-slate-1\/25:hover{color:rgb(var(--slate-1)/.25)}.hover\:text-slate-1\/30:hover{color:rgb(var(--slate-1)/.3)}.hover\:text-slate-1\/40:hover{color:rgb(var(--slate-1)/.4)}.hover\:text-slate-1\/5:hover{color:rgb(var(--slate-1)/.05)}.hover\:text-slate-1\/50:hover{color:rgb(var(--slate-1)/.5)}.hover\:text-slate-1\/60:hover{color:rgb(var(--slate-1)/.6)}.hover\:text-slate-1\/70:hover{color:rgb(var(--slate-1)/.7)}.hover\:text-slate-1\/75:hover{color:rgb(var(--slate-1)/.75)}.hover\:text-slate-1\/80:hover{color:rgb(var(--slate-1)/.8)}.hover\:text-slate-1\/90:hover{color:rgb(var(--slate-1)/.9)}.hover\:text-slate-1\/95:hover{color:rgb(var(--slate-1)/.95)}.hover\:text-slate-10\/0:hover{color:rgb(var(--slate-10)/0)}.hover\:text-slate-10\/10:hover{color:rgb(var(--slate-10)/.1)}.hover\:text-slate-10\/100:hover{color:rgb(var(--slate-10)/1)}.hover\:text-slate-10\/20:hover{color:rgb(var(--slate-10)/.2)}.hover\:text-slate-10\/25:hover{color:rgb(var(--slate-10)/.25)}.hover\:text-slate-10\/30:hover{color:rgb(var(--slate-10)/.3)}.hover\:text-slate-10\/40:hover{color:rgb(var(--slate-10)/.4)}.hover\:text-slate-10\/5:hover{color:rgb(var(--slate-10)/.05)}.hover\:text-slate-10\/50:hover{color:rgb(var(--slate-10)/.5)}.hover\:text-slate-10\/60:hover{color:rgb(var(--slate-10)/.6)}.hover\:text-slate-10\/70:hover{color:rgb(var(--slate-10)/.7)}.hover\:text-slate-10\/75:hover{color:rgb(var(--slate-10)/.75)}.hover\:text-slate-10\/80:hover{color:rgb(var(--slate-10)/.8)}.hover\:text-slate-10\/90:hover{color:rgb(var(--slate-10)/.9)}.hover\:text-slate-10\/95:hover{color:rgb(var(--slate-10)/.95)}.hover\:text-slate-2\/0:hover{color:rgb(var(--slate-2)/0)}.hover\:text-slate-2\/10:hover{color:rgb(var(--slate-2)/.1)}.hover\:text-slate-2\/100:hover{color:rgb(var(--slate-2)/1)}.hover\:text-slate-2\/20:hover{color:rgb(var(--slate-2)/.2)}.hover\:text-slate-2\/25:hover{color:rgb(var(--slate-2)/.25)}.hover\:text-slate-2\/30:hover{color:rgb(var(--slate-2)/.3)}.hover\:text-slate-2\/40:hover{color:rgb(var(--slate-2)/.4)}.hover\:text-slate-2\/5:hover{color:rgb(var(--slate-2)/.05)}.hover\:text-slate-2\/50:hover{color:rgb(var(--slate-2)/.5)}.hover\:text-slate-2\/60:hover{color:rgb(var(--slate-2)/.6)}.hover\:text-slate-2\/70:hover{color:rgb(var(--slate-2)/.7)}.hover\:text-slate-2\/75:hover{color:rgb(var(--slate-2)/.75)}.hover\:text-slate-2\/80:hover{color:rgb(var(--slate-2)/.8)}.hover\:text-slate-2\/90:hover{color:rgb(var(--slate-2)/.9)}.hover\:text-slate-2\/95:hover{color:rgb(var(--slate-2)/.95)}.hover\:text-slate-3\/0:hover{color:rgb(var(--slate-3)/0)}.hover\:text-slate-3\/10:hover{color:rgb(var(--slate-3)/.1)}.hover\:text-slate-3\/100:hover{color:rgb(var(--slate-3)/1)}.hover\:text-slate-3\/20:hover{color:rgb(var(--slate-3)/.2)}.hover\:text-slate-3\/25:hover{color:rgb(var(--slate-3)/.25)}.hover\:text-slate-3\/30:hover{color:rgb(var(--slate-3)/.3)}.hover\:text-slate-3\/40:hover{color:rgb(var(--slate-3)/.4)}.hover\:text-slate-3\/5:hover{color:rgb(var(--slate-3)/.05)}.hover\:text-slate-3\/50:hover{color:rgb(var(--slate-3)/.5)}.hover\:text-slate-3\/60:hover{color:rgb(var(--slate-3)/.6)}.hover\:text-slate-3\/70:hover{color:rgb(var(--slate-3)/.7)}.hover\:text-slate-3\/75:hover{color:rgb(var(--slate-3)/.75)}.hover\:text-slate-3\/80:hover{color:rgb(var(--slate-3)/.8)}.hover\:text-slate-3\/90:hover{color:rgb(var(--slate-3)/.9)}.hover\:text-slate-3\/95:hover{color:rgb(var(--slate-3)/.95)}.hover\:text-slate-4\/0:hover{color:rgb(var(--slate-4)/0)}.hover\:text-slate-4\/10:hover{color:rgb(var(--slate-4)/.1)}.hover\:text-slate-4\/100:hover{color:rgb(var(--slate-4)/1)}.hover\:text-slate-4\/20:hover{color:rgb(var(--slate-4)/.2)}.hover\:text-slate-4\/25:hover{color:rgb(var(--slate-4)/.25)}.hover\:text-slate-4\/30:hover{color:rgb(var(--slate-4)/.3)}.hover\:text-slate-4\/40:hover{color:rgb(var(--slate-4)/.4)}.hover\:text-slate-4\/5:hover{color:rgb(var(--slate-4)/.05)}.hover\:text-slate-4\/50:hover{color:rgb(var(--slate-4)/.5)}.hover\:text-slate-4\/60:hover{color:rgb(var(--slate-4)/.6)}.hover\:text-slate-4\/70:hover{color:rgb(var(--slate-4)/.7)}.hover\:text-slate-4\/75:hover{color:rgb(var(--slate-4)/.75)}.hover\:text-slate-4\/80:hover{color:rgb(var(--slate-4)/.8)}.hover\:text-slate-4\/90:hover{color:rgb(var(--slate-4)/.9)}.hover\:text-slate-4\/95:hover{color:rgb(var(--slate-4)/.95)}.hover\:text-slate-5\/0:hover{color:rgb(var(--slate-5)/0)}.hover\:text-slate-5\/10:hover{color:rgb(var(--slate-5)/.1)}.hover\:text-slate-5\/100:hover{color:rgb(var(--slate-5)/1)}.hover\:text-slate-5\/20:hover{color:rgb(var(--slate-5)/.2)}.hover\:text-slate-5\/25:hover{color:rgb(var(--slate-5)/.25)}.hover\:text-slate-5\/30:hover{color:rgb(var(--slate-5)/.3)}.hover\:text-slate-5\/40:hover{color:rgb(var(--slate-5)/.4)}.hover\:text-slate-5\/5:hover{color:rgb(var(--slate-5)/.05)}.hover\:text-slate-5\/50:hover{color:rgb(var(--slate-5)/.5)}.hover\:text-slate-5\/60:hover{color:rgb(var(--slate-5)/.6)}.hover\:text-slate-5\/70:hover{color:rgb(var(--slate-5)/.7)}.hover\:text-slate-5\/75:hover{color:rgb(var(--slate-5)/.75)}.hover\:text-slate-5\/80:hover{color:rgb(var(--slate-5)/.8)}.hover\:text-slate-5\/90:hover{color:rgb(var(--slate-5)/.9)}.hover\:text-slate-5\/95:hover{color:rgb(var(--slate-5)/.95)}.hover\:text-slate-6\/0:hover{color:rgb(var(--slate-6)/0)}.hover\:text-slate-6\/10:hover{color:rgb(var(--slate-6)/.1)}.hover\:text-slate-6\/100:hover{color:rgb(var(--slate-6)/1)}.hover\:text-slate-6\/20:hover{color:rgb(var(--slate-6)/.2)}.hover\:text-slate-6\/25:hover{color:rgb(var(--slate-6)/.25)}.hover\:text-slate-6\/30:hover{color:rgb(var(--slate-6)/.3)}.hover\:text-slate-6\/40:hover{color:rgb(var(--slate-6)/.4)}.hover\:text-slate-6\/5:hover{color:rgb(var(--slate-6)/.05)}.hover\:text-slate-6\/50:hover{color:rgb(var(--slate-6)/.5)}.hover\:text-slate-6\/60:hover{color:rgb(var(--slate-6)/.6)}.hover\:text-slate-6\/70:hover{color:rgb(var(--slate-6)/.7)}.hover\:text-slate-6\/75:hover{color:rgb(var(--slate-6)/.75)}.hover\:text-slate-6\/80:hover{color:rgb(var(--slate-6)/.8)}.hover\:text-slate-6\/90:hover{color:rgb(var(--slate-6)/.9)}.hover\:text-slate-6\/95:hover{color:rgb(var(--slate-6)/.95)}.hover\:text-slate-7\/0:hover{color:rgb(var(--slate-7)/0)}.hover\:text-slate-7\/10:hover{color:rgb(var(--slate-7)/.1)}.hover\:text-slate-7\/100:hover{color:rgb(var(--slate-7)/1)}.hover\:text-slate-7\/20:hover{color:rgb(var(--slate-7)/.2)}.hover\:text-slate-7\/25:hover{color:rgb(var(--slate-7)/.25)}.hover\:text-slate-7\/30:hover{color:rgb(var(--slate-7)/.3)}.hover\:text-slate-7\/40:hover{color:rgb(var(--slate-7)/.4)}.hover\:text-slate-7\/5:hover{color:rgb(var(--slate-7)/.05)}.hover\:text-slate-7\/50:hover{color:rgb(var(--slate-7)/.5)}.hover\:text-slate-7\/60:hover{color:rgb(var(--slate-7)/.6)}.hover\:text-slate-7\/70:hover{color:rgb(var(--slate-7)/.7)}.hover\:text-slate-7\/75:hover{color:rgb(var(--slate-7)/.75)}.hover\:text-slate-7\/80:hover{color:rgb(var(--slate-7)/.8)}.hover\:text-slate-7\/90:hover{color:rgb(var(--slate-7)/.9)}.hover\:text-slate-7\/95:hover{color:rgb(var(--slate-7)/.95)}.hover\:text-slate-8\/0:hover{color:rgb(var(--slate-8)/0)}.hover\:text-slate-8\/10:hover{color:rgb(var(--slate-8)/.1)}.hover\:text-slate-8\/100:hover{color:rgb(var(--slate-8)/1)}.hover\:text-slate-8\/20:hover{color:rgb(var(--slate-8)/.2)}.hover\:text-slate-8\/25:hover{color:rgb(var(--slate-8)/.25)}.hover\:text-slate-8\/30:hover{color:rgb(var(--slate-8)/.3)}.hover\:text-slate-8\/40:hover{color:rgb(var(--slate-8)/.4)}.hover\:text-slate-8\/5:hover{color:rgb(var(--slate-8)/.05)}.hover\:text-slate-8\/50:hover{color:rgb(var(--slate-8)/.5)}.hover\:text-slate-8\/60:hover{color:rgb(var(--slate-8)/.6)}.hover\:text-slate-8\/70:hover{color:rgb(var(--slate-8)/.7)}.hover\:text-slate-8\/75:hover{color:rgb(var(--slate-8)/.75)}.hover\:text-slate-8\/80:hover{color:rgb(var(--slate-8)/.8)}.hover\:text-slate-8\/90:hover{color:rgb(var(--slate-8)/.9)}.hover\:text-slate-8\/95:hover{color:rgb(var(--slate-8)/.95)}.hover\:text-slate-9\/0:hover{color:rgb(var(--slate-9)/0)}.hover\:text-slate-9\/10:hover{color:rgb(var(--slate-9)/.1)}.hover\:text-slate-9\/100:hover{color:rgb(var(--slate-9)/1)}.hover\:text-slate-9\/20:hover{color:rgb(var(--slate-9)/.2)}.hover\:text-slate-9\/25:hover{color:rgb(var(--slate-9)/.25)}.hover\:text-slate-9\/30:hover{color:rgb(var(--slate-9)/.3)}.hover\:text-slate-9\/40:hover{color:rgb(var(--slate-9)/.4)}.hover\:text-slate-9\/5:hover{color:rgb(var(--slate-9)/.05)}.hover\:text-slate-9\/50:hover{color:rgb(var(--slate-9)/.5)}.hover\:text-slate-9\/60:hover{color:rgb(var(--slate-9)/.6)}.hover\:text-slate-9\/70:hover{color:rgb(var(--slate-9)/.7)}.hover\:text-slate-9\/75:hover{color:rgb(var(--slate-9)/.75)}.hover\:text-slate-9\/80:hover{color:rgb(var(--slate-9)/.8)}.hover\:text-slate-9\/90:hover{color:rgb(var(--slate-9)/.9)}.hover\:text-slate-9\/95:hover{color:rgb(var(--slate-9)/.95)}.hover\:text-success:hover{--tw-text-opacity:1;color:rgb(var(--success)/var(--tw-text-opacity))}.hover\:text-success\/0:hover{color:rgb(var(--success)/0)}.hover\:text-success\/10:hover{color:rgb(var(--success)/.1)}.hover\:text-success\/100:hover{color:rgb(var(--success)/1)}.hover\:text-success\/20:hover{color:rgb(var(--success)/.2)}.hover\:text-success\/25:hover{color:rgb(var(--success)/.25)}.hover\:text-success\/30:hover{color:rgb(var(--success)/.3)}.hover\:text-success\/40:hover{color:rgb(var(--success)/.4)}.hover\:text-success\/5:hover{color:rgb(var(--success)/.05)}.hover\:text-success\/50:hover{color:rgb(var(--success)/.5)}.hover\:text-success\/60:hover{color:rgb(var(--success)/.6)}.hover\:text-success\/70:hover{color:rgb(var(--success)/.7)}.hover\:text-success\/75:hover{color:rgb(var(--success)/.75)}.hover\:text-success\/80:hover{color:rgb(var(--success)/.8)}.hover\:text-success\/90:hover{color:rgb(var(--success)/.9)}.hover\:text-success\/95:hover{color:rgb(var(--success)/.95)}.hover\:text-warning:hover{--tw-text-opacity:1;color:rgb(var(--warning)/var(--tw-text-opacity))}.hover\:text-warning\/0:hover{color:rgb(var(--warning)/0)}.hover\:text-warning\/10:hover{color:rgb(var(--warning)/.1)}.hover\:text-warning\/100:hover{color:rgb(var(--warning)/1)}.hover\:text-warning\/20:hover{color:rgb(var(--warning)/.2)}.hover\:text-warning\/25:hover{color:rgb(var(--warning)/.25)}.hover\:text-warning\/30:hover{color:rgb(var(--warning)/.3)}.hover\:text-warning\/40:hover{color:rgb(var(--warning)/.4)}.hover\:text-warning\/5:hover{color:rgb(var(--warning)/.05)}.hover\:text-warning\/50:hover{color:rgb(var(--warning)/.5)}.hover\:text-warning\/60:hover{color:rgb(var(--warning)/.6)}.hover\:text-warning\/70:hover{color:rgb(var(--warning)/.7)}.hover\:text-warning\/75:hover{color:rgb(var(--warning)/.75)}.hover\:text-warning\/80:hover{color:rgb(var(--warning)/.8)}.hover\:text-warning\/90:hover{color:rgb(var(--warning)/.9)}.hover\:text-warning\/95:hover{color:rgb(var(--warning)/.95)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-white\/0:hover{color:hsla(0,0%,100%,0)}.hover\:text-white\/10:hover{color:hsla(0,0%,100%,.1)}.hover\:text-white\/100:hover{color:#fff}.hover\:text-white\/20:hover{color:hsla(0,0%,100%,.2)}.hover\:text-white\/25:hover{color:hsla(0,0%,100%,.25)}.hover\:text-white\/30:hover{color:hsla(0,0%,100%,.3)}.hover\:text-white\/40:hover{color:hsla(0,0%,100%,.4)}.hover\:text-white\/5:hover{color:hsla(0,0%,100%,.05)}.hover\:text-white\/50:hover{color:hsla(0,0%,100%,.5)}.hover\:text-white\/60:hover{color:hsla(0,0%,100%,.6)}.hover\:text-white\/70:hover{color:hsla(0,0%,100%,.7)}.hover\:text-white\/75:hover{color:hsla(0,0%,100%,.75)}.hover\:text-white\/80:hover{color:hsla(0,0%,100%,.8)}.hover\:text-white\/90:hover{color:hsla(0,0%,100%,.9)}.hover\:text-white\/95:hover{color:hsla(0,0%,100%,.95)}.hover\:text-whiteInverted:hover{--tw-text-opacity:1;color:rgb(var(--whiteInverted)/var(--tw-text-opacity))}.hover\:text-whiteInverted\/0:hover{color:rgb(var(--whiteInverted)/0)}.hover\:text-whiteInverted\/10:hover{color:rgb(var(--whiteInverted)/.1)}.hover\:text-whiteInverted\/100:hover{color:rgb(var(--whiteInverted)/1)}.hover\:text-whiteInverted\/20:hover{color:rgb(var(--whiteInverted)/.2)}.hover\:text-whiteInverted\/25:hover{color:rgb(var(--whiteInverted)/.25)}.hover\:text-whiteInverted\/30:hover{color:rgb(var(--whiteInverted)/.3)}.hover\:text-whiteInverted\/40:hover{color:rgb(var(--whiteInverted)/.4)}.hover\:text-whiteInverted\/5:hover{color:rgb(var(--whiteInverted)/.05)}.hover\:text-whiteInverted\/50:hover{color:rgb(var(--whiteInverted)/.5)}.hover\:text-whiteInverted\/60:hover{color:rgb(var(--whiteInverted)/.6)}.hover\:text-whiteInverted\/70:hover{color:rgb(var(--whiteInverted)/.7)}.hover\:text-whiteInverted\/75:hover{color:rgb(var(--whiteInverted)/.75)}.hover\:text-whiteInverted\/80:hover{color:rgb(var(--whiteInverted)/.8)}.hover\:text-whiteInverted\/90:hover{color:rgb(var(--whiteInverted)/.9)}.hover\:text-whiteInverted\/95:hover{color:rgb(var(--whiteInverted)/.95)}.hover\:outline-backgroundPrimary:hover{outline-color:rgb(var(--backgroundPrimary))}.hover\:outline-backgroundPrimary\/0:hover{outline-color:rgb(var(--backgroundPrimary)/0)}.hover\:outline-backgroundPrimary\/10:hover{outline-color:rgb(var(--backgroundPrimary)/.1)}.hover\:outline-backgroundPrimary\/100:hover{outline-color:rgb(var(--backgroundPrimary)/1)}.hover\:outline-backgroundPrimary\/20:hover{outline-color:rgb(var(--backgroundPrimary)/.2)}.hover\:outline-backgroundPrimary\/25:hover{outline-color:rgb(var(--backgroundPrimary)/.25)}.hover\:outline-backgroundPrimary\/30:hover{outline-color:rgb(var(--backgroundPrimary)/.3)}.hover\:outline-backgroundPrimary\/40:hover{outline-color:rgb(var(--backgroundPrimary)/.4)}.hover\:outline-backgroundPrimary\/5:hover{outline-color:rgb(var(--backgroundPrimary)/.05)}.hover\:outline-backgroundPrimary\/50:hover{outline-color:rgb(var(--backgroundPrimary)/.5)}.hover\:outline-backgroundPrimary\/60:hover{outline-color:rgb(var(--backgroundPrimary)/.6)}.hover\:outline-backgroundPrimary\/70:hover{outline-color:rgb(var(--backgroundPrimary)/.7)}.hover\:outline-backgroundPrimary\/75:hover{outline-color:rgb(var(--backgroundPrimary)/.75)}.hover\:outline-backgroundPrimary\/80:hover{outline-color:rgb(var(--backgroundPrimary)/.8)}.hover\:outline-backgroundPrimary\/90:hover{outline-color:rgb(var(--backgroundPrimary)/.9)}.hover\:outline-backgroundPrimary\/95:hover{outline-color:rgb(var(--backgroundPrimary)/.95)}.hover\:outline-backgroundSecondary:hover{outline-color:rgb(var(--backgroundSecondary))}.hover\:outline-backgroundSecondary\/0:hover{outline-color:rgb(var(--backgroundSecondary)/0)}.hover\:outline-backgroundSecondary\/10:hover{outline-color:rgb(var(--backgroundSecondary)/.1)}.hover\:outline-backgroundSecondary\/100:hover{outline-color:rgb(var(--backgroundSecondary)/1)}.hover\:outline-backgroundSecondary\/20:hover{outline-color:rgb(var(--backgroundSecondary)/.2)}.hover\:outline-backgroundSecondary\/25:hover{outline-color:rgb(var(--backgroundSecondary)/.25)}.hover\:outline-backgroundSecondary\/30:hover{outline-color:rgb(var(--backgroundSecondary)/.3)}.hover\:outline-backgroundSecondary\/40:hover{outline-color:rgb(var(--backgroundSecondary)/.4)}.hover\:outline-backgroundSecondary\/5:hover{outline-color:rgb(var(--backgroundSecondary)/.05)}.hover\:outline-backgroundSecondary\/50:hover{outline-color:rgb(var(--backgroundSecondary)/.5)}.hover\:outline-backgroundSecondary\/60:hover{outline-color:rgb(var(--backgroundSecondary)/.6)}.hover\:outline-backgroundSecondary\/70:hover{outline-color:rgb(var(--backgroundSecondary)/.7)}.hover\:outline-backgroundSecondary\/75:hover{outline-color:rgb(var(--backgroundSecondary)/.75)}.hover\:outline-backgroundSecondary\/80:hover{outline-color:rgb(var(--backgroundSecondary)/.8)}.hover\:outline-backgroundSecondary\/90:hover{outline-color:rgb(var(--backgroundSecondary)/.9)}.hover\:outline-backgroundSecondary\/95:hover{outline-color:rgb(var(--backgroundSecondary)/.95)}.hover\:outline-black:hover{outline-color:#000}.hover\:outline-black\/0:hover{outline-color:transparent}.hover\:outline-black\/10:hover{outline-color:rgba(0,0,0,.1)}.hover\:outline-black\/100:hover{outline-color:#000}.hover\:outline-black\/20:hover{outline-color:rgba(0,0,0,.2)}.hover\:outline-black\/25:hover{outline-color:rgba(0,0,0,.25)}.hover\:outline-black\/30:hover{outline-color:rgba(0,0,0,.3)}.hover\:outline-black\/40:hover{outline-color:rgba(0,0,0,.4)}.hover\:outline-black\/5:hover{outline-color:rgba(0,0,0,.05)}.hover\:outline-black\/50:hover{outline-color:rgba(0,0,0,.5)}.hover\:outline-black\/60:hover{outline-color:rgba(0,0,0,.6)}.hover\:outline-black\/70:hover{outline-color:rgba(0,0,0,.7)}.hover\:outline-black\/75:hover{outline-color:rgba(0,0,0,.75)}.hover\:outline-black\/80:hover{outline-color:rgba(0,0,0,.8)}.hover\:outline-black\/90:hover{outline-color:rgba(0,0,0,.9)}.hover\:outline-black\/95:hover{outline-color:rgba(0,0,0,.95)}.hover\:outline-blackInverted:hover{outline-color:rgb(var(--blackInverted))}.hover\:outline-blackInverted\/0:hover{outline-color:rgb(var(--blackInverted)/0)}.hover\:outline-blackInverted\/10:hover{outline-color:rgb(var(--blackInverted)/.1)}.hover\:outline-blackInverted\/100:hover{outline-color:rgb(var(--blackInverted)/1)}.hover\:outline-blackInverted\/20:hover{outline-color:rgb(var(--blackInverted)/.2)}.hover\:outline-blackInverted\/25:hover{outline-color:rgb(var(--blackInverted)/.25)}.hover\:outline-blackInverted\/30:hover{outline-color:rgb(var(--blackInverted)/.3)}.hover\:outline-blackInverted\/40:hover{outline-color:rgb(var(--blackInverted)/.4)}.hover\:outline-blackInverted\/5:hover{outline-color:rgb(var(--blackInverted)/.05)}.hover\:outline-blackInverted\/50:hover{outline-color:rgb(var(--blackInverted)/.5)}.hover\:outline-blackInverted\/60:hover{outline-color:rgb(var(--blackInverted)/.6)}.hover\:outline-blackInverted\/70:hover{outline-color:rgb(var(--blackInverted)/.7)}.hover\:outline-blackInverted\/75:hover{outline-color:rgb(var(--blackInverted)/.75)}.hover\:outline-blackInverted\/80:hover{outline-color:rgb(var(--blackInverted)/.8)}.hover\:outline-blackInverted\/90:hover{outline-color:rgb(var(--blackInverted)/.9)}.hover\:outline-blackInverted\/95:hover{outline-color:rgb(var(--blackInverted)/.95)}.hover\:outline-blue-1\/0:hover{outline-color:rgb(var(--blue-1)/0)}.hover\:outline-blue-1\/10:hover{outline-color:rgb(var(--blue-1)/.1)}.hover\:outline-blue-1\/100:hover{outline-color:rgb(var(--blue-1)/1)}.hover\:outline-blue-1\/20:hover{outline-color:rgb(var(--blue-1)/.2)}.hover\:outline-blue-1\/25:hover{outline-color:rgb(var(--blue-1)/.25)}.hover\:outline-blue-1\/30:hover{outline-color:rgb(var(--blue-1)/.3)}.hover\:outline-blue-1\/40:hover{outline-color:rgb(var(--blue-1)/.4)}.hover\:outline-blue-1\/5:hover{outline-color:rgb(var(--blue-1)/.05)}.hover\:outline-blue-1\/50:hover{outline-color:rgb(var(--blue-1)/.5)}.hover\:outline-blue-1\/60:hover{outline-color:rgb(var(--blue-1)/.6)}.hover\:outline-blue-1\/70:hover{outline-color:rgb(var(--blue-1)/.7)}.hover\:outline-blue-1\/75:hover{outline-color:rgb(var(--blue-1)/.75)}.hover\:outline-blue-1\/80:hover{outline-color:rgb(var(--blue-1)/.8)}.hover\:outline-blue-1\/90:hover{outline-color:rgb(var(--blue-1)/.9)}.hover\:outline-blue-1\/95:hover{outline-color:rgb(var(--blue-1)/.95)}.hover\:outline-blue-10\/0:hover{outline-color:rgb(var(--blue-10)/0)}.hover\:outline-blue-10\/10:hover{outline-color:rgb(var(--blue-10)/.1)}.hover\:outline-blue-10\/100:hover{outline-color:rgb(var(--blue-10)/1)}.hover\:outline-blue-10\/20:hover{outline-color:rgb(var(--blue-10)/.2)}.hover\:outline-blue-10\/25:hover{outline-color:rgb(var(--blue-10)/.25)}.hover\:outline-blue-10\/30:hover{outline-color:rgb(var(--blue-10)/.3)}.hover\:outline-blue-10\/40:hover{outline-color:rgb(var(--blue-10)/.4)}.hover\:outline-blue-10\/5:hover{outline-color:rgb(var(--blue-10)/.05)}.hover\:outline-blue-10\/50:hover{outline-color:rgb(var(--blue-10)/.5)}.hover\:outline-blue-10\/60:hover{outline-color:rgb(var(--blue-10)/.6)}.hover\:outline-blue-10\/70:hover{outline-color:rgb(var(--blue-10)/.7)}.hover\:outline-blue-10\/75:hover{outline-color:rgb(var(--blue-10)/.75)}.hover\:outline-blue-10\/80:hover{outline-color:rgb(var(--blue-10)/.8)}.hover\:outline-blue-10\/90:hover{outline-color:rgb(var(--blue-10)/.9)}.hover\:outline-blue-10\/95:hover{outline-color:rgb(var(--blue-10)/.95)}.hover\:outline-blue-2\/0:hover{outline-color:rgb(var(--blue-2)/0)}.hover\:outline-blue-2\/10:hover{outline-color:rgb(var(--blue-2)/.1)}.hover\:outline-blue-2\/100:hover{outline-color:rgb(var(--blue-2)/1)}.hover\:outline-blue-2\/20:hover{outline-color:rgb(var(--blue-2)/.2)}.hover\:outline-blue-2\/25:hover{outline-color:rgb(var(--blue-2)/.25)}.hover\:outline-blue-2\/30:hover{outline-color:rgb(var(--blue-2)/.3)}.hover\:outline-blue-2\/40:hover{outline-color:rgb(var(--blue-2)/.4)}.hover\:outline-blue-2\/5:hover{outline-color:rgb(var(--blue-2)/.05)}.hover\:outline-blue-2\/50:hover{outline-color:rgb(var(--blue-2)/.5)}.hover\:outline-blue-2\/60:hover{outline-color:rgb(var(--blue-2)/.6)}.hover\:outline-blue-2\/70:hover{outline-color:rgb(var(--blue-2)/.7)}.hover\:outline-blue-2\/75:hover{outline-color:rgb(var(--blue-2)/.75)}.hover\:outline-blue-2\/80:hover{outline-color:rgb(var(--blue-2)/.8)}.hover\:outline-blue-2\/90:hover{outline-color:rgb(var(--blue-2)/.9)}.hover\:outline-blue-2\/95:hover{outline-color:rgb(var(--blue-2)/.95)}.hover\:outline-blue-3\/0:hover{outline-color:rgb(var(--blue-3)/0)}.hover\:outline-blue-3\/10:hover{outline-color:rgb(var(--blue-3)/.1)}.hover\:outline-blue-3\/100:hover{outline-color:rgb(var(--blue-3)/1)}.hover\:outline-blue-3\/20:hover{outline-color:rgb(var(--blue-3)/.2)}.hover\:outline-blue-3\/25:hover{outline-color:rgb(var(--blue-3)/.25)}.hover\:outline-blue-3\/30:hover{outline-color:rgb(var(--blue-3)/.3)}.hover\:outline-blue-3\/40:hover{outline-color:rgb(var(--blue-3)/.4)}.hover\:outline-blue-3\/5:hover{outline-color:rgb(var(--blue-3)/.05)}.hover\:outline-blue-3\/50:hover{outline-color:rgb(var(--blue-3)/.5)}.hover\:outline-blue-3\/60:hover{outline-color:rgb(var(--blue-3)/.6)}.hover\:outline-blue-3\/70:hover{outline-color:rgb(var(--blue-3)/.7)}.hover\:outline-blue-3\/75:hover{outline-color:rgb(var(--blue-3)/.75)}.hover\:outline-blue-3\/80:hover{outline-color:rgb(var(--blue-3)/.8)}.hover\:outline-blue-3\/90:hover{outline-color:rgb(var(--blue-3)/.9)}.hover\:outline-blue-3\/95:hover{outline-color:rgb(var(--blue-3)/.95)}.hover\:outline-blue-4\/0:hover{outline-color:rgb(var(--blue-4)/0)}.hover\:outline-blue-4\/10:hover{outline-color:rgb(var(--blue-4)/.1)}.hover\:outline-blue-4\/100:hover{outline-color:rgb(var(--blue-4)/1)}.hover\:outline-blue-4\/20:hover{outline-color:rgb(var(--blue-4)/.2)}.hover\:outline-blue-4\/25:hover{outline-color:rgb(var(--blue-4)/.25)}.hover\:outline-blue-4\/30:hover{outline-color:rgb(var(--blue-4)/.3)}.hover\:outline-blue-4\/40:hover{outline-color:rgb(var(--blue-4)/.4)}.hover\:outline-blue-4\/5:hover{outline-color:rgb(var(--blue-4)/.05)}.hover\:outline-blue-4\/50:hover{outline-color:rgb(var(--blue-4)/.5)}.hover\:outline-blue-4\/60:hover{outline-color:rgb(var(--blue-4)/.6)}.hover\:outline-blue-4\/70:hover{outline-color:rgb(var(--blue-4)/.7)}.hover\:outline-blue-4\/75:hover{outline-color:rgb(var(--blue-4)/.75)}.hover\:outline-blue-4\/80:hover{outline-color:rgb(var(--blue-4)/.8)}.hover\:outline-blue-4\/90:hover{outline-color:rgb(var(--blue-4)/.9)}.hover\:outline-blue-4\/95:hover{outline-color:rgb(var(--blue-4)/.95)}.hover\:outline-blue-5\/0:hover{outline-color:rgb(var(--blue-5)/0)}.hover\:outline-blue-5\/10:hover{outline-color:rgb(var(--blue-5)/.1)}.hover\:outline-blue-5\/100:hover{outline-color:rgb(var(--blue-5)/1)}.hover\:outline-blue-5\/20:hover{outline-color:rgb(var(--blue-5)/.2)}.hover\:outline-blue-5\/25:hover{outline-color:rgb(var(--blue-5)/.25)}.hover\:outline-blue-5\/30:hover{outline-color:rgb(var(--blue-5)/.3)}.hover\:outline-blue-5\/40:hover{outline-color:rgb(var(--blue-5)/.4)}.hover\:outline-blue-5\/5:hover{outline-color:rgb(var(--blue-5)/.05)}.hover\:outline-blue-5\/50:hover{outline-color:rgb(var(--blue-5)/.5)}.hover\:outline-blue-5\/60:hover{outline-color:rgb(var(--blue-5)/.6)}.hover\:outline-blue-5\/70:hover{outline-color:rgb(var(--blue-5)/.7)}.hover\:outline-blue-5\/75:hover{outline-color:rgb(var(--blue-5)/.75)}.hover\:outline-blue-5\/80:hover{outline-color:rgb(var(--blue-5)/.8)}.hover\:outline-blue-5\/90:hover{outline-color:rgb(var(--blue-5)/.9)}.hover\:outline-blue-5\/95:hover{outline-color:rgb(var(--blue-5)/.95)}.hover\:outline-blue-6\/0:hover{outline-color:rgb(var(--blue-6)/0)}.hover\:outline-blue-6\/10:hover{outline-color:rgb(var(--blue-6)/.1)}.hover\:outline-blue-6\/100:hover{outline-color:rgb(var(--blue-6)/1)}.hover\:outline-blue-6\/20:hover{outline-color:rgb(var(--blue-6)/.2)}.hover\:outline-blue-6\/25:hover{outline-color:rgb(var(--blue-6)/.25)}.hover\:outline-blue-6\/30:hover{outline-color:rgb(var(--blue-6)/.3)}.hover\:outline-blue-6\/40:hover{outline-color:rgb(var(--blue-6)/.4)}.hover\:outline-blue-6\/5:hover{outline-color:rgb(var(--blue-6)/.05)}.hover\:outline-blue-6\/50:hover{outline-color:rgb(var(--blue-6)/.5)}.hover\:outline-blue-6\/60:hover{outline-color:rgb(var(--blue-6)/.6)}.hover\:outline-blue-6\/70:hover{outline-color:rgb(var(--blue-6)/.7)}.hover\:outline-blue-6\/75:hover{outline-color:rgb(var(--blue-6)/.75)}.hover\:outline-blue-6\/80:hover{outline-color:rgb(var(--blue-6)/.8)}.hover\:outline-blue-6\/90:hover{outline-color:rgb(var(--blue-6)/.9)}.hover\:outline-blue-6\/95:hover{outline-color:rgb(var(--blue-6)/.95)}.hover\:outline-blue-7\/0:hover{outline-color:rgb(var(--blue-7)/0)}.hover\:outline-blue-7\/10:hover{outline-color:rgb(var(--blue-7)/.1)}.hover\:outline-blue-7\/100:hover{outline-color:rgb(var(--blue-7)/1)}.hover\:outline-blue-7\/20:hover{outline-color:rgb(var(--blue-7)/.2)}.hover\:outline-blue-7\/25:hover{outline-color:rgb(var(--blue-7)/.25)}.hover\:outline-blue-7\/30:hover{outline-color:rgb(var(--blue-7)/.3)}.hover\:outline-blue-7\/40:hover{outline-color:rgb(var(--blue-7)/.4)}.hover\:outline-blue-7\/5:hover{outline-color:rgb(var(--blue-7)/.05)}.hover\:outline-blue-7\/50:hover{outline-color:rgb(var(--blue-7)/.5)}.hover\:outline-blue-7\/60:hover{outline-color:rgb(var(--blue-7)/.6)}.hover\:outline-blue-7\/70:hover{outline-color:rgb(var(--blue-7)/.7)}.hover\:outline-blue-7\/75:hover{outline-color:rgb(var(--blue-7)/.75)}.hover\:outline-blue-7\/80:hover{outline-color:rgb(var(--blue-7)/.8)}.hover\:outline-blue-7\/90:hover{outline-color:rgb(var(--blue-7)/.9)}.hover\:outline-blue-7\/95:hover{outline-color:rgb(var(--blue-7)/.95)}.hover\:outline-blue-8\/0:hover{outline-color:rgb(var(--blue-8)/0)}.hover\:outline-blue-8\/10:hover{outline-color:rgb(var(--blue-8)/.1)}.hover\:outline-blue-8\/100:hover{outline-color:rgb(var(--blue-8)/1)}.hover\:outline-blue-8\/20:hover{outline-color:rgb(var(--blue-8)/.2)}.hover\:outline-blue-8\/25:hover{outline-color:rgb(var(--blue-8)/.25)}.hover\:outline-blue-8\/30:hover{outline-color:rgb(var(--blue-8)/.3)}.hover\:outline-blue-8\/40:hover{outline-color:rgb(var(--blue-8)/.4)}.hover\:outline-blue-8\/5:hover{outline-color:rgb(var(--blue-8)/.05)}.hover\:outline-blue-8\/50:hover{outline-color:rgb(var(--blue-8)/.5)}.hover\:outline-blue-8\/60:hover{outline-color:rgb(var(--blue-8)/.6)}.hover\:outline-blue-8\/70:hover{outline-color:rgb(var(--blue-8)/.7)}.hover\:outline-blue-8\/75:hover{outline-color:rgb(var(--blue-8)/.75)}.hover\:outline-blue-8\/80:hover{outline-color:rgb(var(--blue-8)/.8)}.hover\:outline-blue-8\/90:hover{outline-color:rgb(var(--blue-8)/.9)}.hover\:outline-blue-8\/95:hover{outline-color:rgb(var(--blue-8)/.95)}.hover\:outline-blue-9\/0:hover{outline-color:rgb(var(--blue-9)/0)}.hover\:outline-blue-9\/10:hover{outline-color:rgb(var(--blue-9)/.1)}.hover\:outline-blue-9\/100:hover{outline-color:rgb(var(--blue-9)/1)}.hover\:outline-blue-9\/20:hover{outline-color:rgb(var(--blue-9)/.2)}.hover\:outline-blue-9\/25:hover{outline-color:rgb(var(--blue-9)/.25)}.hover\:outline-blue-9\/30:hover{outline-color:rgb(var(--blue-9)/.3)}.hover\:outline-blue-9\/40:hover{outline-color:rgb(var(--blue-9)/.4)}.hover\:outline-blue-9\/5:hover{outline-color:rgb(var(--blue-9)/.05)}.hover\:outline-blue-9\/50:hover{outline-color:rgb(var(--blue-9)/.5)}.hover\:outline-blue-9\/60:hover{outline-color:rgb(var(--blue-9)/.6)}.hover\:outline-blue-9\/70:hover{outline-color:rgb(var(--blue-9)/.7)}.hover\:outline-blue-9\/75:hover{outline-color:rgb(var(--blue-9)/.75)}.hover\:outline-blue-9\/80:hover{outline-color:rgb(var(--blue-9)/.8)}.hover\:outline-blue-9\/90:hover{outline-color:rgb(var(--blue-9)/.9)}.hover\:outline-blue-9\/95:hover{outline-color:rgb(var(--blue-9)/.95)}.hover\:outline-border:hover{outline-color:rgb(var(--border))}.hover\:outline-border\/0:hover{outline-color:rgb(var(--border)/0)}.hover\:outline-border\/10:hover{outline-color:rgb(var(--border)/.1)}.hover\:outline-border\/100:hover{outline-color:rgb(var(--border)/1)}.hover\:outline-border\/20:hover{outline-color:rgb(var(--border)/.2)}.hover\:outline-border\/25:hover{outline-color:rgb(var(--border)/.25)}.hover\:outline-border\/30:hover{outline-color:rgb(var(--border)/.3)}.hover\:outline-border\/40:hover{outline-color:rgb(var(--border)/.4)}.hover\:outline-border\/5:hover{outline-color:rgb(var(--border)/.05)}.hover\:outline-border\/50:hover{outline-color:rgb(var(--border)/.5)}.hover\:outline-border\/60:hover{outline-color:rgb(var(--border)/.6)}.hover\:outline-border\/70:hover{outline-color:rgb(var(--border)/.7)}.hover\:outline-border\/75:hover{outline-color:rgb(var(--border)/.75)}.hover\:outline-border\/80:hover{outline-color:rgb(var(--border)/.8)}.hover\:outline-border\/90:hover{outline-color:rgb(var(--border)/.9)}.hover\:outline-border\/95:hover{outline-color:rgb(var(--border)/.95)}.hover\:outline-content1:hover{outline-color:rgb(var(--content1))}.hover\:outline-content1\/0:hover{outline-color:rgb(var(--content1)/0)}.hover\:outline-content1\/10:hover{outline-color:rgb(var(--content1)/.1)}.hover\:outline-content1\/100:hover{outline-color:rgb(var(--content1)/1)}.hover\:outline-content1\/20:hover{outline-color:rgb(var(--content1)/.2)}.hover\:outline-content1\/25:hover{outline-color:rgb(var(--content1)/.25)}.hover\:outline-content1\/30:hover{outline-color:rgb(var(--content1)/.3)}.hover\:outline-content1\/40:hover{outline-color:rgb(var(--content1)/.4)}.hover\:outline-content1\/5:hover{outline-color:rgb(var(--content1)/.05)}.hover\:outline-content1\/50:hover{outline-color:rgb(var(--content1)/.5)}.hover\:outline-content1\/60:hover{outline-color:rgb(var(--content1)/.6)}.hover\:outline-content1\/70:hover{outline-color:rgb(var(--content1)/.7)}.hover\:outline-content1\/75:hover{outline-color:rgb(var(--content1)/.75)}.hover\:outline-content1\/80:hover{outline-color:rgb(var(--content1)/.8)}.hover\:outline-content1\/90:hover{outline-color:rgb(var(--content1)/.9)}.hover\:outline-content1\/95:hover{outline-color:rgb(var(--content1)/.95)}.hover\:outline-content2:hover{outline-color:rgb(var(--content2))}.hover\:outline-content2\/0:hover{outline-color:rgb(var(--content2)/0)}.hover\:outline-content2\/10:hover{outline-color:rgb(var(--content2)/.1)}.hover\:outline-content2\/100:hover{outline-color:rgb(var(--content2)/1)}.hover\:outline-content2\/20:hover{outline-color:rgb(var(--content2)/.2)}.hover\:outline-content2\/25:hover{outline-color:rgb(var(--content2)/.25)}.hover\:outline-content2\/30:hover{outline-color:rgb(var(--content2)/.3)}.hover\:outline-content2\/40:hover{outline-color:rgb(var(--content2)/.4)}.hover\:outline-content2\/5:hover{outline-color:rgb(var(--content2)/.05)}.hover\:outline-content2\/50:hover{outline-color:rgb(var(--content2)/.5)}.hover\:outline-content2\/60:hover{outline-color:rgb(var(--content2)/.6)}.hover\:outline-content2\/70:hover{outline-color:rgb(var(--content2)/.7)}.hover\:outline-content2\/75:hover{outline-color:rgb(var(--content2)/.75)}.hover\:outline-content2\/80:hover{outline-color:rgb(var(--content2)/.8)}.hover\:outline-content2\/90:hover{outline-color:rgb(var(--content2)/.9)}.hover\:outline-content2\/95:hover{outline-color:rgb(var(--content2)/.95)}.hover\:outline-content3:hover{outline-color:rgb(var(--content3))}.hover\:outline-content3\/0:hover{outline-color:rgb(var(--content3)/0)}.hover\:outline-content3\/10:hover{outline-color:rgb(var(--content3)/.1)}.hover\:outline-content3\/100:hover{outline-color:rgb(var(--content3)/1)}.hover\:outline-content3\/20:hover{outline-color:rgb(var(--content3)/.2)}.hover\:outline-content3\/25:hover{outline-color:rgb(var(--content3)/.25)}.hover\:outline-content3\/30:hover{outline-color:rgb(var(--content3)/.3)}.hover\:outline-content3\/40:hover{outline-color:rgb(var(--content3)/.4)}.hover\:outline-content3\/5:hover{outline-color:rgb(var(--content3)/.05)}.hover\:outline-content3\/50:hover{outline-color:rgb(var(--content3)/.5)}.hover\:outline-content3\/60:hover{outline-color:rgb(var(--content3)/.6)}.hover\:outline-content3\/70:hover{outline-color:rgb(var(--content3)/.7)}.hover\:outline-content3\/75:hover{outline-color:rgb(var(--content3)/.75)}.hover\:outline-content3\/80:hover{outline-color:rgb(var(--content3)/.8)}.hover\:outline-content3\/90:hover{outline-color:rgb(var(--content3)/.9)}.hover\:outline-content3\/95:hover{outline-color:rgb(var(--content3)/.95)}.hover\:outline-cyan-1\/0:hover{outline-color:rgb(var(--cyan-1)/0)}.hover\:outline-cyan-1\/10:hover{outline-color:rgb(var(--cyan-1)/.1)}.hover\:outline-cyan-1\/100:hover{outline-color:rgb(var(--cyan-1)/1)}.hover\:outline-cyan-1\/20:hover{outline-color:rgb(var(--cyan-1)/.2)}.hover\:outline-cyan-1\/25:hover{outline-color:rgb(var(--cyan-1)/.25)}.hover\:outline-cyan-1\/30:hover{outline-color:rgb(var(--cyan-1)/.3)}.hover\:outline-cyan-1\/40:hover{outline-color:rgb(var(--cyan-1)/.4)}.hover\:outline-cyan-1\/5:hover{outline-color:rgb(var(--cyan-1)/.05)}.hover\:outline-cyan-1\/50:hover{outline-color:rgb(var(--cyan-1)/.5)}.hover\:outline-cyan-1\/60:hover{outline-color:rgb(var(--cyan-1)/.6)}.hover\:outline-cyan-1\/70:hover{outline-color:rgb(var(--cyan-1)/.7)}.hover\:outline-cyan-1\/75:hover{outline-color:rgb(var(--cyan-1)/.75)}.hover\:outline-cyan-1\/80:hover{outline-color:rgb(var(--cyan-1)/.8)}.hover\:outline-cyan-1\/90:hover{outline-color:rgb(var(--cyan-1)/.9)}.hover\:outline-cyan-1\/95:hover{outline-color:rgb(var(--cyan-1)/.95)}.hover\:outline-cyan-10\/0:hover{outline-color:rgb(var(--cyan-10)/0)}.hover\:outline-cyan-10\/10:hover{outline-color:rgb(var(--cyan-10)/.1)}.hover\:outline-cyan-10\/100:hover{outline-color:rgb(var(--cyan-10)/1)}.hover\:outline-cyan-10\/20:hover{outline-color:rgb(var(--cyan-10)/.2)}.hover\:outline-cyan-10\/25:hover{outline-color:rgb(var(--cyan-10)/.25)}.hover\:outline-cyan-10\/30:hover{outline-color:rgb(var(--cyan-10)/.3)}.hover\:outline-cyan-10\/40:hover{outline-color:rgb(var(--cyan-10)/.4)}.hover\:outline-cyan-10\/5:hover{outline-color:rgb(var(--cyan-10)/.05)}.hover\:outline-cyan-10\/50:hover{outline-color:rgb(var(--cyan-10)/.5)}.hover\:outline-cyan-10\/60:hover{outline-color:rgb(var(--cyan-10)/.6)}.hover\:outline-cyan-10\/70:hover{outline-color:rgb(var(--cyan-10)/.7)}.hover\:outline-cyan-10\/75:hover{outline-color:rgb(var(--cyan-10)/.75)}.hover\:outline-cyan-10\/80:hover{outline-color:rgb(var(--cyan-10)/.8)}.hover\:outline-cyan-10\/90:hover{outline-color:rgb(var(--cyan-10)/.9)}.hover\:outline-cyan-10\/95:hover{outline-color:rgb(var(--cyan-10)/.95)}.hover\:outline-cyan-2\/0:hover{outline-color:rgb(var(--cyan-2)/0)}.hover\:outline-cyan-2\/10:hover{outline-color:rgb(var(--cyan-2)/.1)}.hover\:outline-cyan-2\/100:hover{outline-color:rgb(var(--cyan-2)/1)}.hover\:outline-cyan-2\/20:hover{outline-color:rgb(var(--cyan-2)/.2)}.hover\:outline-cyan-2\/25:hover{outline-color:rgb(var(--cyan-2)/.25)}.hover\:outline-cyan-2\/30:hover{outline-color:rgb(var(--cyan-2)/.3)}.hover\:outline-cyan-2\/40:hover{outline-color:rgb(var(--cyan-2)/.4)}.hover\:outline-cyan-2\/5:hover{outline-color:rgb(var(--cyan-2)/.05)}.hover\:outline-cyan-2\/50:hover{outline-color:rgb(var(--cyan-2)/.5)}.hover\:outline-cyan-2\/60:hover{outline-color:rgb(var(--cyan-2)/.6)}.hover\:outline-cyan-2\/70:hover{outline-color:rgb(var(--cyan-2)/.7)}.hover\:outline-cyan-2\/75:hover{outline-color:rgb(var(--cyan-2)/.75)}.hover\:outline-cyan-2\/80:hover{outline-color:rgb(var(--cyan-2)/.8)}.hover\:outline-cyan-2\/90:hover{outline-color:rgb(var(--cyan-2)/.9)}.hover\:outline-cyan-2\/95:hover{outline-color:rgb(var(--cyan-2)/.95)}.hover\:outline-cyan-3\/0:hover{outline-color:rgb(var(--cyan-3)/0)}.hover\:outline-cyan-3\/10:hover{outline-color:rgb(var(--cyan-3)/.1)}.hover\:outline-cyan-3\/100:hover{outline-color:rgb(var(--cyan-3)/1)}.hover\:outline-cyan-3\/20:hover{outline-color:rgb(var(--cyan-3)/.2)}.hover\:outline-cyan-3\/25:hover{outline-color:rgb(var(--cyan-3)/.25)}.hover\:outline-cyan-3\/30:hover{outline-color:rgb(var(--cyan-3)/.3)}.hover\:outline-cyan-3\/40:hover{outline-color:rgb(var(--cyan-3)/.4)}.hover\:outline-cyan-3\/5:hover{outline-color:rgb(var(--cyan-3)/.05)}.hover\:outline-cyan-3\/50:hover{outline-color:rgb(var(--cyan-3)/.5)}.hover\:outline-cyan-3\/60:hover{outline-color:rgb(var(--cyan-3)/.6)}.hover\:outline-cyan-3\/70:hover{outline-color:rgb(var(--cyan-3)/.7)}.hover\:outline-cyan-3\/75:hover{outline-color:rgb(var(--cyan-3)/.75)}.hover\:outline-cyan-3\/80:hover{outline-color:rgb(var(--cyan-3)/.8)}.hover\:outline-cyan-3\/90:hover{outline-color:rgb(var(--cyan-3)/.9)}.hover\:outline-cyan-3\/95:hover{outline-color:rgb(var(--cyan-3)/.95)}.hover\:outline-cyan-4\/0:hover{outline-color:rgb(var(--cyan-4)/0)}.hover\:outline-cyan-4\/10:hover{outline-color:rgb(var(--cyan-4)/.1)}.hover\:outline-cyan-4\/100:hover{outline-color:rgb(var(--cyan-4)/1)}.hover\:outline-cyan-4\/20:hover{outline-color:rgb(var(--cyan-4)/.2)}.hover\:outline-cyan-4\/25:hover{outline-color:rgb(var(--cyan-4)/.25)}.hover\:outline-cyan-4\/30:hover{outline-color:rgb(var(--cyan-4)/.3)}.hover\:outline-cyan-4\/40:hover{outline-color:rgb(var(--cyan-4)/.4)}.hover\:outline-cyan-4\/5:hover{outline-color:rgb(var(--cyan-4)/.05)}.hover\:outline-cyan-4\/50:hover{outline-color:rgb(var(--cyan-4)/.5)}.hover\:outline-cyan-4\/60:hover{outline-color:rgb(var(--cyan-4)/.6)}.hover\:outline-cyan-4\/70:hover{outline-color:rgb(var(--cyan-4)/.7)}.hover\:outline-cyan-4\/75:hover{outline-color:rgb(var(--cyan-4)/.75)}.hover\:outline-cyan-4\/80:hover{outline-color:rgb(var(--cyan-4)/.8)}.hover\:outline-cyan-4\/90:hover{outline-color:rgb(var(--cyan-4)/.9)}.hover\:outline-cyan-4\/95:hover{outline-color:rgb(var(--cyan-4)/.95)}.hover\:outline-cyan-5\/0:hover{outline-color:rgb(var(--cyan-5)/0)}.hover\:outline-cyan-5\/10:hover{outline-color:rgb(var(--cyan-5)/.1)}.hover\:outline-cyan-5\/100:hover{outline-color:rgb(var(--cyan-5)/1)}.hover\:outline-cyan-5\/20:hover{outline-color:rgb(var(--cyan-5)/.2)}.hover\:outline-cyan-5\/25:hover{outline-color:rgb(var(--cyan-5)/.25)}.hover\:outline-cyan-5\/30:hover{outline-color:rgb(var(--cyan-5)/.3)}.hover\:outline-cyan-5\/40:hover{outline-color:rgb(var(--cyan-5)/.4)}.hover\:outline-cyan-5\/5:hover{outline-color:rgb(var(--cyan-5)/.05)}.hover\:outline-cyan-5\/50:hover{outline-color:rgb(var(--cyan-5)/.5)}.hover\:outline-cyan-5\/60:hover{outline-color:rgb(var(--cyan-5)/.6)}.hover\:outline-cyan-5\/70:hover{outline-color:rgb(var(--cyan-5)/.7)}.hover\:outline-cyan-5\/75:hover{outline-color:rgb(var(--cyan-5)/.75)}.hover\:outline-cyan-5\/80:hover{outline-color:rgb(var(--cyan-5)/.8)}.hover\:outline-cyan-5\/90:hover{outline-color:rgb(var(--cyan-5)/.9)}.hover\:outline-cyan-5\/95:hover{outline-color:rgb(var(--cyan-5)/.95)}.hover\:outline-cyan-6\/0:hover{outline-color:rgb(var(--cyan-6)/0)}.hover\:outline-cyan-6\/10:hover{outline-color:rgb(var(--cyan-6)/.1)}.hover\:outline-cyan-6\/100:hover{outline-color:rgb(var(--cyan-6)/1)}.hover\:outline-cyan-6\/20:hover{outline-color:rgb(var(--cyan-6)/.2)}.hover\:outline-cyan-6\/25:hover{outline-color:rgb(var(--cyan-6)/.25)}.hover\:outline-cyan-6\/30:hover{outline-color:rgb(var(--cyan-6)/.3)}.hover\:outline-cyan-6\/40:hover{outline-color:rgb(var(--cyan-6)/.4)}.hover\:outline-cyan-6\/5:hover{outline-color:rgb(var(--cyan-6)/.05)}.hover\:outline-cyan-6\/50:hover{outline-color:rgb(var(--cyan-6)/.5)}.hover\:outline-cyan-6\/60:hover{outline-color:rgb(var(--cyan-6)/.6)}.hover\:outline-cyan-6\/70:hover{outline-color:rgb(var(--cyan-6)/.7)}.hover\:outline-cyan-6\/75:hover{outline-color:rgb(var(--cyan-6)/.75)}.hover\:outline-cyan-6\/80:hover{outline-color:rgb(var(--cyan-6)/.8)}.hover\:outline-cyan-6\/90:hover{outline-color:rgb(var(--cyan-6)/.9)}.hover\:outline-cyan-6\/95:hover{outline-color:rgb(var(--cyan-6)/.95)}.hover\:outline-cyan-7\/0:hover{outline-color:rgb(var(--cyan-7)/0)}.hover\:outline-cyan-7\/10:hover{outline-color:rgb(var(--cyan-7)/.1)}.hover\:outline-cyan-7\/100:hover{outline-color:rgb(var(--cyan-7)/1)}.hover\:outline-cyan-7\/20:hover{outline-color:rgb(var(--cyan-7)/.2)}.hover\:outline-cyan-7\/25:hover{outline-color:rgb(var(--cyan-7)/.25)}.hover\:outline-cyan-7\/30:hover{outline-color:rgb(var(--cyan-7)/.3)}.hover\:outline-cyan-7\/40:hover{outline-color:rgb(var(--cyan-7)/.4)}.hover\:outline-cyan-7\/5:hover{outline-color:rgb(var(--cyan-7)/.05)}.hover\:outline-cyan-7\/50:hover{outline-color:rgb(var(--cyan-7)/.5)}.hover\:outline-cyan-7\/60:hover{outline-color:rgb(var(--cyan-7)/.6)}.hover\:outline-cyan-7\/70:hover{outline-color:rgb(var(--cyan-7)/.7)}.hover\:outline-cyan-7\/75:hover{outline-color:rgb(var(--cyan-7)/.75)}.hover\:outline-cyan-7\/80:hover{outline-color:rgb(var(--cyan-7)/.8)}.hover\:outline-cyan-7\/90:hover{outline-color:rgb(var(--cyan-7)/.9)}.hover\:outline-cyan-7\/95:hover{outline-color:rgb(var(--cyan-7)/.95)}.hover\:outline-cyan-8\/0:hover{outline-color:rgb(var(--cyan-8)/0)}.hover\:outline-cyan-8\/10:hover{outline-color:rgb(var(--cyan-8)/.1)}.hover\:outline-cyan-8\/100:hover{outline-color:rgb(var(--cyan-8)/1)}.hover\:outline-cyan-8\/20:hover{outline-color:rgb(var(--cyan-8)/.2)}.hover\:outline-cyan-8\/25:hover{outline-color:rgb(var(--cyan-8)/.25)}.hover\:outline-cyan-8\/30:hover{outline-color:rgb(var(--cyan-8)/.3)}.hover\:outline-cyan-8\/40:hover{outline-color:rgb(var(--cyan-8)/.4)}.hover\:outline-cyan-8\/5:hover{outline-color:rgb(var(--cyan-8)/.05)}.hover\:outline-cyan-8\/50:hover{outline-color:rgb(var(--cyan-8)/.5)}.hover\:outline-cyan-8\/60:hover{outline-color:rgb(var(--cyan-8)/.6)}.hover\:outline-cyan-8\/70:hover{outline-color:rgb(var(--cyan-8)/.7)}.hover\:outline-cyan-8\/75:hover{outline-color:rgb(var(--cyan-8)/.75)}.hover\:outline-cyan-8\/80:hover{outline-color:rgb(var(--cyan-8)/.8)}.hover\:outline-cyan-8\/90:hover{outline-color:rgb(var(--cyan-8)/.9)}.hover\:outline-cyan-8\/95:hover{outline-color:rgb(var(--cyan-8)/.95)}.hover\:outline-cyan-9\/0:hover{outline-color:rgb(var(--cyan-9)/0)}.hover\:outline-cyan-9\/10:hover{outline-color:rgb(var(--cyan-9)/.1)}.hover\:outline-cyan-9\/100:hover{outline-color:rgb(var(--cyan-9)/1)}.hover\:outline-cyan-9\/20:hover{outline-color:rgb(var(--cyan-9)/.2)}.hover\:outline-cyan-9\/25:hover{outline-color:rgb(var(--cyan-9)/.25)}.hover\:outline-cyan-9\/30:hover{outline-color:rgb(var(--cyan-9)/.3)}.hover\:outline-cyan-9\/40:hover{outline-color:rgb(var(--cyan-9)/.4)}.hover\:outline-cyan-9\/5:hover{outline-color:rgb(var(--cyan-9)/.05)}.hover\:outline-cyan-9\/50:hover{outline-color:rgb(var(--cyan-9)/.5)}.hover\:outline-cyan-9\/60:hover{outline-color:rgb(var(--cyan-9)/.6)}.hover\:outline-cyan-9\/70:hover{outline-color:rgb(var(--cyan-9)/.7)}.hover\:outline-cyan-9\/75:hover{outline-color:rgb(var(--cyan-9)/.75)}.hover\:outline-cyan-9\/80:hover{outline-color:rgb(var(--cyan-9)/.8)}.hover\:outline-cyan-9\/90:hover{outline-color:rgb(var(--cyan-9)/.9)}.hover\:outline-cyan-9\/95:hover{outline-color:rgb(var(--cyan-9)/.95)}.hover\:outline-error:hover{outline-color:rgb(var(--error))}.hover\:outline-error\/0:hover{outline-color:rgb(var(--error)/0)}.hover\:outline-error\/10:hover{outline-color:rgb(var(--error)/.1)}.hover\:outline-error\/100:hover{outline-color:rgb(var(--error)/1)}.hover\:outline-error\/20:hover{outline-color:rgb(var(--error)/.2)}.hover\:outline-error\/25:hover{outline-color:rgb(var(--error)/.25)}.hover\:outline-error\/30:hover{outline-color:rgb(var(--error)/.3)}.hover\:outline-error\/40:hover{outline-color:rgb(var(--error)/.4)}.hover\:outline-error\/5:hover{outline-color:rgb(var(--error)/.05)}.hover\:outline-error\/50:hover{outline-color:rgb(var(--error)/.5)}.hover\:outline-error\/60:hover{outline-color:rgb(var(--error)/.6)}.hover\:outline-error\/70:hover{outline-color:rgb(var(--error)/.7)}.hover\:outline-error\/75:hover{outline-color:rgb(var(--error)/.75)}.hover\:outline-error\/80:hover{outline-color:rgb(var(--error)/.8)}.hover\:outline-error\/90:hover{outline-color:rgb(var(--error)/.9)}.hover\:outline-error\/95:hover{outline-color:rgb(var(--error)/.95)}.hover\:outline-gray-1\/0:hover{outline-color:rgb(var(--gray-1)/0)}.hover\:outline-gray-1\/10:hover{outline-color:rgb(var(--gray-1)/.1)}.hover\:outline-gray-1\/100:hover{outline-color:rgb(var(--gray-1)/1)}.hover\:outline-gray-1\/20:hover{outline-color:rgb(var(--gray-1)/.2)}.hover\:outline-gray-1\/25:hover{outline-color:rgb(var(--gray-1)/.25)}.hover\:outline-gray-1\/30:hover{outline-color:rgb(var(--gray-1)/.3)}.hover\:outline-gray-1\/40:hover{outline-color:rgb(var(--gray-1)/.4)}.hover\:outline-gray-1\/5:hover{outline-color:rgb(var(--gray-1)/.05)}.hover\:outline-gray-1\/50:hover{outline-color:rgb(var(--gray-1)/.5)}.hover\:outline-gray-1\/60:hover{outline-color:rgb(var(--gray-1)/.6)}.hover\:outline-gray-1\/70:hover{outline-color:rgb(var(--gray-1)/.7)}.hover\:outline-gray-1\/75:hover{outline-color:rgb(var(--gray-1)/.75)}.hover\:outline-gray-1\/80:hover{outline-color:rgb(var(--gray-1)/.8)}.hover\:outline-gray-1\/90:hover{outline-color:rgb(var(--gray-1)/.9)}.hover\:outline-gray-1\/95:hover{outline-color:rgb(var(--gray-1)/.95)}.hover\:outline-gray-10\/0:hover{outline-color:rgb(var(--gray-10)/0)}.hover\:outline-gray-10\/10:hover{outline-color:rgb(var(--gray-10)/.1)}.hover\:outline-gray-10\/100:hover{outline-color:rgb(var(--gray-10)/1)}.hover\:outline-gray-10\/20:hover{outline-color:rgb(var(--gray-10)/.2)}.hover\:outline-gray-10\/25:hover{outline-color:rgb(var(--gray-10)/.25)}.hover\:outline-gray-10\/30:hover{outline-color:rgb(var(--gray-10)/.3)}.hover\:outline-gray-10\/40:hover{outline-color:rgb(var(--gray-10)/.4)}.hover\:outline-gray-10\/5:hover{outline-color:rgb(var(--gray-10)/.05)}.hover\:outline-gray-10\/50:hover{outline-color:rgb(var(--gray-10)/.5)}.hover\:outline-gray-10\/60:hover{outline-color:rgb(var(--gray-10)/.6)}.hover\:outline-gray-10\/70:hover{outline-color:rgb(var(--gray-10)/.7)}.hover\:outline-gray-10\/75:hover{outline-color:rgb(var(--gray-10)/.75)}.hover\:outline-gray-10\/80:hover{outline-color:rgb(var(--gray-10)/.8)}.hover\:outline-gray-10\/90:hover{outline-color:rgb(var(--gray-10)/.9)}.hover\:outline-gray-10\/95:hover{outline-color:rgb(var(--gray-10)/.95)}.hover\:outline-gray-2\/0:hover{outline-color:rgb(var(--gray-2)/0)}.hover\:outline-gray-2\/10:hover{outline-color:rgb(var(--gray-2)/.1)}.hover\:outline-gray-2\/100:hover{outline-color:rgb(var(--gray-2)/1)}.hover\:outline-gray-2\/20:hover{outline-color:rgb(var(--gray-2)/.2)}.hover\:outline-gray-2\/25:hover{outline-color:rgb(var(--gray-2)/.25)}.hover\:outline-gray-2\/30:hover{outline-color:rgb(var(--gray-2)/.3)}.hover\:outline-gray-2\/40:hover{outline-color:rgb(var(--gray-2)/.4)}.hover\:outline-gray-2\/5:hover{outline-color:rgb(var(--gray-2)/.05)}.hover\:outline-gray-2\/50:hover{outline-color:rgb(var(--gray-2)/.5)}.hover\:outline-gray-2\/60:hover{outline-color:rgb(var(--gray-2)/.6)}.hover\:outline-gray-2\/70:hover{outline-color:rgb(var(--gray-2)/.7)}.hover\:outline-gray-2\/75:hover{outline-color:rgb(var(--gray-2)/.75)}.hover\:outline-gray-2\/80:hover{outline-color:rgb(var(--gray-2)/.8)}.hover\:outline-gray-2\/90:hover{outline-color:rgb(var(--gray-2)/.9)}.hover\:outline-gray-2\/95:hover{outline-color:rgb(var(--gray-2)/.95)}.hover\:outline-gray-3\/0:hover{outline-color:rgb(var(--gray-3)/0)}.hover\:outline-gray-3\/10:hover{outline-color:rgb(var(--gray-3)/.1)}.hover\:outline-gray-3\/100:hover{outline-color:rgb(var(--gray-3)/1)}.hover\:outline-gray-3\/20:hover{outline-color:rgb(var(--gray-3)/.2)}.hover\:outline-gray-3\/25:hover{outline-color:rgb(var(--gray-3)/.25)}.hover\:outline-gray-3\/30:hover{outline-color:rgb(var(--gray-3)/.3)}.hover\:outline-gray-3\/40:hover{outline-color:rgb(var(--gray-3)/.4)}.hover\:outline-gray-3\/5:hover{outline-color:rgb(var(--gray-3)/.05)}.hover\:outline-gray-3\/50:hover{outline-color:rgb(var(--gray-3)/.5)}.hover\:outline-gray-3\/60:hover{outline-color:rgb(var(--gray-3)/.6)}.hover\:outline-gray-3\/70:hover{outline-color:rgb(var(--gray-3)/.7)}.hover\:outline-gray-3\/75:hover{outline-color:rgb(var(--gray-3)/.75)}.hover\:outline-gray-3\/80:hover{outline-color:rgb(var(--gray-3)/.8)}.hover\:outline-gray-3\/90:hover{outline-color:rgb(var(--gray-3)/.9)}.hover\:outline-gray-3\/95:hover{outline-color:rgb(var(--gray-3)/.95)}.hover\:outline-gray-4\/0:hover{outline-color:rgb(var(--gray-4)/0)}.hover\:outline-gray-4\/10:hover{outline-color:rgb(var(--gray-4)/.1)}.hover\:outline-gray-4\/100:hover{outline-color:rgb(var(--gray-4)/1)}.hover\:outline-gray-4\/20:hover{outline-color:rgb(var(--gray-4)/.2)}.hover\:outline-gray-4\/25:hover{outline-color:rgb(var(--gray-4)/.25)}.hover\:outline-gray-4\/30:hover{outline-color:rgb(var(--gray-4)/.3)}.hover\:outline-gray-4\/40:hover{outline-color:rgb(var(--gray-4)/.4)}.hover\:outline-gray-4\/5:hover{outline-color:rgb(var(--gray-4)/.05)}.hover\:outline-gray-4\/50:hover{outline-color:rgb(var(--gray-4)/.5)}.hover\:outline-gray-4\/60:hover{outline-color:rgb(var(--gray-4)/.6)}.hover\:outline-gray-4\/70:hover{outline-color:rgb(var(--gray-4)/.7)}.hover\:outline-gray-4\/75:hover{outline-color:rgb(var(--gray-4)/.75)}.hover\:outline-gray-4\/80:hover{outline-color:rgb(var(--gray-4)/.8)}.hover\:outline-gray-4\/90:hover{outline-color:rgb(var(--gray-4)/.9)}.hover\:outline-gray-4\/95:hover{outline-color:rgb(var(--gray-4)/.95)}.hover\:outline-gray-5\/0:hover{outline-color:rgb(var(--gray-5)/0)}.hover\:outline-gray-5\/10:hover{outline-color:rgb(var(--gray-5)/.1)}.hover\:outline-gray-5\/100:hover{outline-color:rgb(var(--gray-5)/1)}.hover\:outline-gray-5\/20:hover{outline-color:rgb(var(--gray-5)/.2)}.hover\:outline-gray-5\/25:hover{outline-color:rgb(var(--gray-5)/.25)}.hover\:outline-gray-5\/30:hover{outline-color:rgb(var(--gray-5)/.3)}.hover\:outline-gray-5\/40:hover{outline-color:rgb(var(--gray-5)/.4)}.hover\:outline-gray-5\/5:hover{outline-color:rgb(var(--gray-5)/.05)}.hover\:outline-gray-5\/50:hover{outline-color:rgb(var(--gray-5)/.5)}.hover\:outline-gray-5\/60:hover{outline-color:rgb(var(--gray-5)/.6)}.hover\:outline-gray-5\/70:hover{outline-color:rgb(var(--gray-5)/.7)}.hover\:outline-gray-5\/75:hover{outline-color:rgb(var(--gray-5)/.75)}.hover\:outline-gray-5\/80:hover{outline-color:rgb(var(--gray-5)/.8)}.hover\:outline-gray-5\/90:hover{outline-color:rgb(var(--gray-5)/.9)}.hover\:outline-gray-5\/95:hover{outline-color:rgb(var(--gray-5)/.95)}.hover\:outline-gray-6\/0:hover{outline-color:rgb(var(--gray-6)/0)}.hover\:outline-gray-6\/10:hover{outline-color:rgb(var(--gray-6)/.1)}.hover\:outline-gray-6\/100:hover{outline-color:rgb(var(--gray-6)/1)}.hover\:outline-gray-6\/20:hover{outline-color:rgb(var(--gray-6)/.2)}.hover\:outline-gray-6\/25:hover{outline-color:rgb(var(--gray-6)/.25)}.hover\:outline-gray-6\/30:hover{outline-color:rgb(var(--gray-6)/.3)}.hover\:outline-gray-6\/40:hover{outline-color:rgb(var(--gray-6)/.4)}.hover\:outline-gray-6\/5:hover{outline-color:rgb(var(--gray-6)/.05)}.hover\:outline-gray-6\/50:hover{outline-color:rgb(var(--gray-6)/.5)}.hover\:outline-gray-6\/60:hover{outline-color:rgb(var(--gray-6)/.6)}.hover\:outline-gray-6\/70:hover{outline-color:rgb(var(--gray-6)/.7)}.hover\:outline-gray-6\/75:hover{outline-color:rgb(var(--gray-6)/.75)}.hover\:outline-gray-6\/80:hover{outline-color:rgb(var(--gray-6)/.8)}.hover\:outline-gray-6\/90:hover{outline-color:rgb(var(--gray-6)/.9)}.hover\:outline-gray-6\/95:hover{outline-color:rgb(var(--gray-6)/.95)}.hover\:outline-gray-7\/0:hover{outline-color:rgb(var(--gray-7)/0)}.hover\:outline-gray-7\/10:hover{outline-color:rgb(var(--gray-7)/.1)}.hover\:outline-gray-7\/100:hover{outline-color:rgb(var(--gray-7)/1)}.hover\:outline-gray-7\/20:hover{outline-color:rgb(var(--gray-7)/.2)}.hover\:outline-gray-7\/25:hover{outline-color:rgb(var(--gray-7)/.25)}.hover\:outline-gray-7\/30:hover{outline-color:rgb(var(--gray-7)/.3)}.hover\:outline-gray-7\/40:hover{outline-color:rgb(var(--gray-7)/.4)}.hover\:outline-gray-7\/5:hover{outline-color:rgb(var(--gray-7)/.05)}.hover\:outline-gray-7\/50:hover{outline-color:rgb(var(--gray-7)/.5)}.hover\:outline-gray-7\/60:hover{outline-color:rgb(var(--gray-7)/.6)}.hover\:outline-gray-7\/70:hover{outline-color:rgb(var(--gray-7)/.7)}.hover\:outline-gray-7\/75:hover{outline-color:rgb(var(--gray-7)/.75)}.hover\:outline-gray-7\/80:hover{outline-color:rgb(var(--gray-7)/.8)}.hover\:outline-gray-7\/90:hover{outline-color:rgb(var(--gray-7)/.9)}.hover\:outline-gray-7\/95:hover{outline-color:rgb(var(--gray-7)/.95)}.hover\:outline-gray-8\/0:hover{outline-color:rgb(var(--gray-8)/0)}.hover\:outline-gray-8\/10:hover{outline-color:rgb(var(--gray-8)/.1)}.hover\:outline-gray-8\/100:hover{outline-color:rgb(var(--gray-8)/1)}.hover\:outline-gray-8\/20:hover{outline-color:rgb(var(--gray-8)/.2)}.hover\:outline-gray-8\/25:hover{outline-color:rgb(var(--gray-8)/.25)}.hover\:outline-gray-8\/30:hover{outline-color:rgb(var(--gray-8)/.3)}.hover\:outline-gray-8\/40:hover{outline-color:rgb(var(--gray-8)/.4)}.hover\:outline-gray-8\/5:hover{outline-color:rgb(var(--gray-8)/.05)}.hover\:outline-gray-8\/50:hover{outline-color:rgb(var(--gray-8)/.5)}.hover\:outline-gray-8\/60:hover{outline-color:rgb(var(--gray-8)/.6)}.hover\:outline-gray-8\/70:hover{outline-color:rgb(var(--gray-8)/.7)}.hover\:outline-gray-8\/75:hover{outline-color:rgb(var(--gray-8)/.75)}.hover\:outline-gray-8\/80:hover{outline-color:rgb(var(--gray-8)/.8)}.hover\:outline-gray-8\/90:hover{outline-color:rgb(var(--gray-8)/.9)}.hover\:outline-gray-8\/95:hover{outline-color:rgb(var(--gray-8)/.95)}.hover\:outline-gray-9\/0:hover{outline-color:rgb(var(--gray-9)/0)}.hover\:outline-gray-9\/10:hover{outline-color:rgb(var(--gray-9)/.1)}.hover\:outline-gray-9\/100:hover{outline-color:rgb(var(--gray-9)/1)}.hover\:outline-gray-9\/20:hover{outline-color:rgb(var(--gray-9)/.2)}.hover\:outline-gray-9\/25:hover{outline-color:rgb(var(--gray-9)/.25)}.hover\:outline-gray-9\/30:hover{outline-color:rgb(var(--gray-9)/.3)}.hover\:outline-gray-9\/40:hover{outline-color:rgb(var(--gray-9)/.4)}.hover\:outline-gray-9\/5:hover{outline-color:rgb(var(--gray-9)/.05)}.hover\:outline-gray-9\/50:hover{outline-color:rgb(var(--gray-9)/.5)}.hover\:outline-gray-9\/60:hover{outline-color:rgb(var(--gray-9)/.6)}.hover\:outline-gray-9\/70:hover{outline-color:rgb(var(--gray-9)/.7)}.hover\:outline-gray-9\/75:hover{outline-color:rgb(var(--gray-9)/.75)}.hover\:outline-gray-9\/80:hover{outline-color:rgb(var(--gray-9)/.8)}.hover\:outline-gray-9\/90:hover{outline-color:rgb(var(--gray-9)/.9)}.hover\:outline-gray-9\/95:hover{outline-color:rgb(var(--gray-9)/.95)}.hover\:outline-green-1\/0:hover{outline-color:rgb(var(--green-1)/0)}.hover\:outline-green-1\/10:hover{outline-color:rgb(var(--green-1)/.1)}.hover\:outline-green-1\/100:hover{outline-color:rgb(var(--green-1)/1)}.hover\:outline-green-1\/20:hover{outline-color:rgb(var(--green-1)/.2)}.hover\:outline-green-1\/25:hover{outline-color:rgb(var(--green-1)/.25)}.hover\:outline-green-1\/30:hover{outline-color:rgb(var(--green-1)/.3)}.hover\:outline-green-1\/40:hover{outline-color:rgb(var(--green-1)/.4)}.hover\:outline-green-1\/5:hover{outline-color:rgb(var(--green-1)/.05)}.hover\:outline-green-1\/50:hover{outline-color:rgb(var(--green-1)/.5)}.hover\:outline-green-1\/60:hover{outline-color:rgb(var(--green-1)/.6)}.hover\:outline-green-1\/70:hover{outline-color:rgb(var(--green-1)/.7)}.hover\:outline-green-1\/75:hover{outline-color:rgb(var(--green-1)/.75)}.hover\:outline-green-1\/80:hover{outline-color:rgb(var(--green-1)/.8)}.hover\:outline-green-1\/90:hover{outline-color:rgb(var(--green-1)/.9)}.hover\:outline-green-1\/95:hover{outline-color:rgb(var(--green-1)/.95)}.hover\:outline-green-10\/0:hover{outline-color:rgb(var(--green-10)/0)}.hover\:outline-green-10\/10:hover{outline-color:rgb(var(--green-10)/.1)}.hover\:outline-green-10\/100:hover{outline-color:rgb(var(--green-10)/1)}.hover\:outline-green-10\/20:hover{outline-color:rgb(var(--green-10)/.2)}.hover\:outline-green-10\/25:hover{outline-color:rgb(var(--green-10)/.25)}.hover\:outline-green-10\/30:hover{outline-color:rgb(var(--green-10)/.3)}.hover\:outline-green-10\/40:hover{outline-color:rgb(var(--green-10)/.4)}.hover\:outline-green-10\/5:hover{outline-color:rgb(var(--green-10)/.05)}.hover\:outline-green-10\/50:hover{outline-color:rgb(var(--green-10)/.5)}.hover\:outline-green-10\/60:hover{outline-color:rgb(var(--green-10)/.6)}.hover\:outline-green-10\/70:hover{outline-color:rgb(var(--green-10)/.7)}.hover\:outline-green-10\/75:hover{outline-color:rgb(var(--green-10)/.75)}.hover\:outline-green-10\/80:hover{outline-color:rgb(var(--green-10)/.8)}.hover\:outline-green-10\/90:hover{outline-color:rgb(var(--green-10)/.9)}.hover\:outline-green-10\/95:hover{outline-color:rgb(var(--green-10)/.95)}.hover\:outline-green-2\/0:hover{outline-color:rgb(var(--green-2)/0)}.hover\:outline-green-2\/10:hover{outline-color:rgb(var(--green-2)/.1)}.hover\:outline-green-2\/100:hover{outline-color:rgb(var(--green-2)/1)}.hover\:outline-green-2\/20:hover{outline-color:rgb(var(--green-2)/.2)}.hover\:outline-green-2\/25:hover{outline-color:rgb(var(--green-2)/.25)}.hover\:outline-green-2\/30:hover{outline-color:rgb(var(--green-2)/.3)}.hover\:outline-green-2\/40:hover{outline-color:rgb(var(--green-2)/.4)}.hover\:outline-green-2\/5:hover{outline-color:rgb(var(--green-2)/.05)}.hover\:outline-green-2\/50:hover{outline-color:rgb(var(--green-2)/.5)}.hover\:outline-green-2\/60:hover{outline-color:rgb(var(--green-2)/.6)}.hover\:outline-green-2\/70:hover{outline-color:rgb(var(--green-2)/.7)}.hover\:outline-green-2\/75:hover{outline-color:rgb(var(--green-2)/.75)}.hover\:outline-green-2\/80:hover{outline-color:rgb(var(--green-2)/.8)}.hover\:outline-green-2\/90:hover{outline-color:rgb(var(--green-2)/.9)}.hover\:outline-green-2\/95:hover{outline-color:rgb(var(--green-2)/.95)}.hover\:outline-green-3\/0:hover{outline-color:rgb(var(--green-3)/0)}.hover\:outline-green-3\/10:hover{outline-color:rgb(var(--green-3)/.1)}.hover\:outline-green-3\/100:hover{outline-color:rgb(var(--green-3)/1)}.hover\:outline-green-3\/20:hover{outline-color:rgb(var(--green-3)/.2)}.hover\:outline-green-3\/25:hover{outline-color:rgb(var(--green-3)/.25)}.hover\:outline-green-3\/30:hover{outline-color:rgb(var(--green-3)/.3)}.hover\:outline-green-3\/40:hover{outline-color:rgb(var(--green-3)/.4)}.hover\:outline-green-3\/5:hover{outline-color:rgb(var(--green-3)/.05)}.hover\:outline-green-3\/50:hover{outline-color:rgb(var(--green-3)/.5)}.hover\:outline-green-3\/60:hover{outline-color:rgb(var(--green-3)/.6)}.hover\:outline-green-3\/70:hover{outline-color:rgb(var(--green-3)/.7)}.hover\:outline-green-3\/75:hover{outline-color:rgb(var(--green-3)/.75)}.hover\:outline-green-3\/80:hover{outline-color:rgb(var(--green-3)/.8)}.hover\:outline-green-3\/90:hover{outline-color:rgb(var(--green-3)/.9)}.hover\:outline-green-3\/95:hover{outline-color:rgb(var(--green-3)/.95)}.hover\:outline-green-4\/0:hover{outline-color:rgb(var(--green-4)/0)}.hover\:outline-green-4\/10:hover{outline-color:rgb(var(--green-4)/.1)}.hover\:outline-green-4\/100:hover{outline-color:rgb(var(--green-4)/1)}.hover\:outline-green-4\/20:hover{outline-color:rgb(var(--green-4)/.2)}.hover\:outline-green-4\/25:hover{outline-color:rgb(var(--green-4)/.25)}.hover\:outline-green-4\/30:hover{outline-color:rgb(var(--green-4)/.3)}.hover\:outline-green-4\/40:hover{outline-color:rgb(var(--green-4)/.4)}.hover\:outline-green-4\/5:hover{outline-color:rgb(var(--green-4)/.05)}.hover\:outline-green-4\/50:hover{outline-color:rgb(var(--green-4)/.5)}.hover\:outline-green-4\/60:hover{outline-color:rgb(var(--green-4)/.6)}.hover\:outline-green-4\/70:hover{outline-color:rgb(var(--green-4)/.7)}.hover\:outline-green-4\/75:hover{outline-color:rgb(var(--green-4)/.75)}.hover\:outline-green-4\/80:hover{outline-color:rgb(var(--green-4)/.8)}.hover\:outline-green-4\/90:hover{outline-color:rgb(var(--green-4)/.9)}.hover\:outline-green-4\/95:hover{outline-color:rgb(var(--green-4)/.95)}.hover\:outline-green-5\/0:hover{outline-color:rgb(var(--green-5)/0)}.hover\:outline-green-5\/10:hover{outline-color:rgb(var(--green-5)/.1)}.hover\:outline-green-5\/100:hover{outline-color:rgb(var(--green-5)/1)}.hover\:outline-green-5\/20:hover{outline-color:rgb(var(--green-5)/.2)}.hover\:outline-green-5\/25:hover{outline-color:rgb(var(--green-5)/.25)}.hover\:outline-green-5\/30:hover{outline-color:rgb(var(--green-5)/.3)}.hover\:outline-green-5\/40:hover{outline-color:rgb(var(--green-5)/.4)}.hover\:outline-green-5\/5:hover{outline-color:rgb(var(--green-5)/.05)}.hover\:outline-green-5\/50:hover{outline-color:rgb(var(--green-5)/.5)}.hover\:outline-green-5\/60:hover{outline-color:rgb(var(--green-5)/.6)}.hover\:outline-green-5\/70:hover{outline-color:rgb(var(--green-5)/.7)}.hover\:outline-green-5\/75:hover{outline-color:rgb(var(--green-5)/.75)}.hover\:outline-green-5\/80:hover{outline-color:rgb(var(--green-5)/.8)}.hover\:outline-green-5\/90:hover{outline-color:rgb(var(--green-5)/.9)}.hover\:outline-green-5\/95:hover{outline-color:rgb(var(--green-5)/.95)}.hover\:outline-green-6\/0:hover{outline-color:rgb(var(--green-6)/0)}.hover\:outline-green-6\/10:hover{outline-color:rgb(var(--green-6)/.1)}.hover\:outline-green-6\/100:hover{outline-color:rgb(var(--green-6)/1)}.hover\:outline-green-6\/20:hover{outline-color:rgb(var(--green-6)/.2)}.hover\:outline-green-6\/25:hover{outline-color:rgb(var(--green-6)/.25)}.hover\:outline-green-6\/30:hover{outline-color:rgb(var(--green-6)/.3)}.hover\:outline-green-6\/40:hover{outline-color:rgb(var(--green-6)/.4)}.hover\:outline-green-6\/5:hover{outline-color:rgb(var(--green-6)/.05)}.hover\:outline-green-6\/50:hover{outline-color:rgb(var(--green-6)/.5)}.hover\:outline-green-6\/60:hover{outline-color:rgb(var(--green-6)/.6)}.hover\:outline-green-6\/70:hover{outline-color:rgb(var(--green-6)/.7)}.hover\:outline-green-6\/75:hover{outline-color:rgb(var(--green-6)/.75)}.hover\:outline-green-6\/80:hover{outline-color:rgb(var(--green-6)/.8)}.hover\:outline-green-6\/90:hover{outline-color:rgb(var(--green-6)/.9)}.hover\:outline-green-6\/95:hover{outline-color:rgb(var(--green-6)/.95)}.hover\:outline-green-7\/0:hover{outline-color:rgb(var(--green-7)/0)}.hover\:outline-green-7\/10:hover{outline-color:rgb(var(--green-7)/.1)}.hover\:outline-green-7\/100:hover{outline-color:rgb(var(--green-7)/1)}.hover\:outline-green-7\/20:hover{outline-color:rgb(var(--green-7)/.2)}.hover\:outline-green-7\/25:hover{outline-color:rgb(var(--green-7)/.25)}.hover\:outline-green-7\/30:hover{outline-color:rgb(var(--green-7)/.3)}.hover\:outline-green-7\/40:hover{outline-color:rgb(var(--green-7)/.4)}.hover\:outline-green-7\/5:hover{outline-color:rgb(var(--green-7)/.05)}.hover\:outline-green-7\/50:hover{outline-color:rgb(var(--green-7)/.5)}.hover\:outline-green-7\/60:hover{outline-color:rgb(var(--green-7)/.6)}.hover\:outline-green-7\/70:hover{outline-color:rgb(var(--green-7)/.7)}.hover\:outline-green-7\/75:hover{outline-color:rgb(var(--green-7)/.75)}.hover\:outline-green-7\/80:hover{outline-color:rgb(var(--green-7)/.8)}.hover\:outline-green-7\/90:hover{outline-color:rgb(var(--green-7)/.9)}.hover\:outline-green-7\/95:hover{outline-color:rgb(var(--green-7)/.95)}.hover\:outline-green-8\/0:hover{outline-color:rgb(var(--green-8)/0)}.hover\:outline-green-8\/10:hover{outline-color:rgb(var(--green-8)/.1)}.hover\:outline-green-8\/100:hover{outline-color:rgb(var(--green-8)/1)}.hover\:outline-green-8\/20:hover{outline-color:rgb(var(--green-8)/.2)}.hover\:outline-green-8\/25:hover{outline-color:rgb(var(--green-8)/.25)}.hover\:outline-green-8\/30:hover{outline-color:rgb(var(--green-8)/.3)}.hover\:outline-green-8\/40:hover{outline-color:rgb(var(--green-8)/.4)}.hover\:outline-green-8\/5:hover{outline-color:rgb(var(--green-8)/.05)}.hover\:outline-green-8\/50:hover{outline-color:rgb(var(--green-8)/.5)}.hover\:outline-green-8\/60:hover{outline-color:rgb(var(--green-8)/.6)}.hover\:outline-green-8\/70:hover{outline-color:rgb(var(--green-8)/.7)}.hover\:outline-green-8\/75:hover{outline-color:rgb(var(--green-8)/.75)}.hover\:outline-green-8\/80:hover{outline-color:rgb(var(--green-8)/.8)}.hover\:outline-green-8\/90:hover{outline-color:rgb(var(--green-8)/.9)}.hover\:outline-green-8\/95:hover{outline-color:rgb(var(--green-8)/.95)}.hover\:outline-green-9\/0:hover{outline-color:rgb(var(--green-9)/0)}.hover\:outline-green-9\/10:hover{outline-color:rgb(var(--green-9)/.1)}.hover\:outline-green-9\/100:hover{outline-color:rgb(var(--green-9)/1)}.hover\:outline-green-9\/20:hover{outline-color:rgb(var(--green-9)/.2)}.hover\:outline-green-9\/25:hover{outline-color:rgb(var(--green-9)/.25)}.hover\:outline-green-9\/30:hover{outline-color:rgb(var(--green-9)/.3)}.hover\:outline-green-9\/40:hover{outline-color:rgb(var(--green-9)/.4)}.hover\:outline-green-9\/5:hover{outline-color:rgb(var(--green-9)/.05)}.hover\:outline-green-9\/50:hover{outline-color:rgb(var(--green-9)/.5)}.hover\:outline-green-9\/60:hover{outline-color:rgb(var(--green-9)/.6)}.hover\:outline-green-9\/70:hover{outline-color:rgb(var(--green-9)/.7)}.hover\:outline-green-9\/75:hover{outline-color:rgb(var(--green-9)/.75)}.hover\:outline-green-9\/80:hover{outline-color:rgb(var(--green-9)/.8)}.hover\:outline-green-9\/90:hover{outline-color:rgb(var(--green-9)/.9)}.hover\:outline-green-9\/95:hover{outline-color:rgb(var(--green-9)/.95)}.hover\:outline-pink-1\/0:hover{outline-color:rgb(var(--pink-1)/0)}.hover\:outline-pink-1\/10:hover{outline-color:rgb(var(--pink-1)/.1)}.hover\:outline-pink-1\/100:hover{outline-color:rgb(var(--pink-1)/1)}.hover\:outline-pink-1\/20:hover{outline-color:rgb(var(--pink-1)/.2)}.hover\:outline-pink-1\/25:hover{outline-color:rgb(var(--pink-1)/.25)}.hover\:outline-pink-1\/30:hover{outline-color:rgb(var(--pink-1)/.3)}.hover\:outline-pink-1\/40:hover{outline-color:rgb(var(--pink-1)/.4)}.hover\:outline-pink-1\/5:hover{outline-color:rgb(var(--pink-1)/.05)}.hover\:outline-pink-1\/50:hover{outline-color:rgb(var(--pink-1)/.5)}.hover\:outline-pink-1\/60:hover{outline-color:rgb(var(--pink-1)/.6)}.hover\:outline-pink-1\/70:hover{outline-color:rgb(var(--pink-1)/.7)}.hover\:outline-pink-1\/75:hover{outline-color:rgb(var(--pink-1)/.75)}.hover\:outline-pink-1\/80:hover{outline-color:rgb(var(--pink-1)/.8)}.hover\:outline-pink-1\/90:hover{outline-color:rgb(var(--pink-1)/.9)}.hover\:outline-pink-1\/95:hover{outline-color:rgb(var(--pink-1)/.95)}.hover\:outline-pink-10\/0:hover{outline-color:rgb(var(--pink-10)/0)}.hover\:outline-pink-10\/10:hover{outline-color:rgb(var(--pink-10)/.1)}.hover\:outline-pink-10\/100:hover{outline-color:rgb(var(--pink-10)/1)}.hover\:outline-pink-10\/20:hover{outline-color:rgb(var(--pink-10)/.2)}.hover\:outline-pink-10\/25:hover{outline-color:rgb(var(--pink-10)/.25)}.hover\:outline-pink-10\/30:hover{outline-color:rgb(var(--pink-10)/.3)}.hover\:outline-pink-10\/40:hover{outline-color:rgb(var(--pink-10)/.4)}.hover\:outline-pink-10\/5:hover{outline-color:rgb(var(--pink-10)/.05)}.hover\:outline-pink-10\/50:hover{outline-color:rgb(var(--pink-10)/.5)}.hover\:outline-pink-10\/60:hover{outline-color:rgb(var(--pink-10)/.6)}.hover\:outline-pink-10\/70:hover{outline-color:rgb(var(--pink-10)/.7)}.hover\:outline-pink-10\/75:hover{outline-color:rgb(var(--pink-10)/.75)}.hover\:outline-pink-10\/80:hover{outline-color:rgb(var(--pink-10)/.8)}.hover\:outline-pink-10\/90:hover{outline-color:rgb(var(--pink-10)/.9)}.hover\:outline-pink-10\/95:hover{outline-color:rgb(var(--pink-10)/.95)}.hover\:outline-pink-2\/0:hover{outline-color:rgb(var(--pink-2)/0)}.hover\:outline-pink-2\/10:hover{outline-color:rgb(var(--pink-2)/.1)}.hover\:outline-pink-2\/100:hover{outline-color:rgb(var(--pink-2)/1)}.hover\:outline-pink-2\/20:hover{outline-color:rgb(var(--pink-2)/.2)}.hover\:outline-pink-2\/25:hover{outline-color:rgb(var(--pink-2)/.25)}.hover\:outline-pink-2\/30:hover{outline-color:rgb(var(--pink-2)/.3)}.hover\:outline-pink-2\/40:hover{outline-color:rgb(var(--pink-2)/.4)}.hover\:outline-pink-2\/5:hover{outline-color:rgb(var(--pink-2)/.05)}.hover\:outline-pink-2\/50:hover{outline-color:rgb(var(--pink-2)/.5)}.hover\:outline-pink-2\/60:hover{outline-color:rgb(var(--pink-2)/.6)}.hover\:outline-pink-2\/70:hover{outline-color:rgb(var(--pink-2)/.7)}.hover\:outline-pink-2\/75:hover{outline-color:rgb(var(--pink-2)/.75)}.hover\:outline-pink-2\/80:hover{outline-color:rgb(var(--pink-2)/.8)}.hover\:outline-pink-2\/90:hover{outline-color:rgb(var(--pink-2)/.9)}.hover\:outline-pink-2\/95:hover{outline-color:rgb(var(--pink-2)/.95)}.hover\:outline-pink-3\/0:hover{outline-color:rgb(var(--pink-3)/0)}.hover\:outline-pink-3\/10:hover{outline-color:rgb(var(--pink-3)/.1)}.hover\:outline-pink-3\/100:hover{outline-color:rgb(var(--pink-3)/1)}.hover\:outline-pink-3\/20:hover{outline-color:rgb(var(--pink-3)/.2)}.hover\:outline-pink-3\/25:hover{outline-color:rgb(var(--pink-3)/.25)}.hover\:outline-pink-3\/30:hover{outline-color:rgb(var(--pink-3)/.3)}.hover\:outline-pink-3\/40:hover{outline-color:rgb(var(--pink-3)/.4)}.hover\:outline-pink-3\/5:hover{outline-color:rgb(var(--pink-3)/.05)}.hover\:outline-pink-3\/50:hover{outline-color:rgb(var(--pink-3)/.5)}.hover\:outline-pink-3\/60:hover{outline-color:rgb(var(--pink-3)/.6)}.hover\:outline-pink-3\/70:hover{outline-color:rgb(var(--pink-3)/.7)}.hover\:outline-pink-3\/75:hover{outline-color:rgb(var(--pink-3)/.75)}.hover\:outline-pink-3\/80:hover{outline-color:rgb(var(--pink-3)/.8)}.hover\:outline-pink-3\/90:hover{outline-color:rgb(var(--pink-3)/.9)}.hover\:outline-pink-3\/95:hover{outline-color:rgb(var(--pink-3)/.95)}.hover\:outline-pink-4\/0:hover{outline-color:rgb(var(--pink-4)/0)}.hover\:outline-pink-4\/10:hover{outline-color:rgb(var(--pink-4)/.1)}.hover\:outline-pink-4\/100:hover{outline-color:rgb(var(--pink-4)/1)}.hover\:outline-pink-4\/20:hover{outline-color:rgb(var(--pink-4)/.2)}.hover\:outline-pink-4\/25:hover{outline-color:rgb(var(--pink-4)/.25)}.hover\:outline-pink-4\/30:hover{outline-color:rgb(var(--pink-4)/.3)}.hover\:outline-pink-4\/40:hover{outline-color:rgb(var(--pink-4)/.4)}.hover\:outline-pink-4\/5:hover{outline-color:rgb(var(--pink-4)/.05)}.hover\:outline-pink-4\/50:hover{outline-color:rgb(var(--pink-4)/.5)}.hover\:outline-pink-4\/60:hover{outline-color:rgb(var(--pink-4)/.6)}.hover\:outline-pink-4\/70:hover{outline-color:rgb(var(--pink-4)/.7)}.hover\:outline-pink-4\/75:hover{outline-color:rgb(var(--pink-4)/.75)}.hover\:outline-pink-4\/80:hover{outline-color:rgb(var(--pink-4)/.8)}.hover\:outline-pink-4\/90:hover{outline-color:rgb(var(--pink-4)/.9)}.hover\:outline-pink-4\/95:hover{outline-color:rgb(var(--pink-4)/.95)}.hover\:outline-pink-5\/0:hover{outline-color:rgb(var(--pink-5)/0)}.hover\:outline-pink-5\/10:hover{outline-color:rgb(var(--pink-5)/.1)}.hover\:outline-pink-5\/100:hover{outline-color:rgb(var(--pink-5)/1)}.hover\:outline-pink-5\/20:hover{outline-color:rgb(var(--pink-5)/.2)}.hover\:outline-pink-5\/25:hover{outline-color:rgb(var(--pink-5)/.25)}.hover\:outline-pink-5\/30:hover{outline-color:rgb(var(--pink-5)/.3)}.hover\:outline-pink-5\/40:hover{outline-color:rgb(var(--pink-5)/.4)}.hover\:outline-pink-5\/5:hover{outline-color:rgb(var(--pink-5)/.05)}.hover\:outline-pink-5\/50:hover{outline-color:rgb(var(--pink-5)/.5)}.hover\:outline-pink-5\/60:hover{outline-color:rgb(var(--pink-5)/.6)}.hover\:outline-pink-5\/70:hover{outline-color:rgb(var(--pink-5)/.7)}.hover\:outline-pink-5\/75:hover{outline-color:rgb(var(--pink-5)/.75)}.hover\:outline-pink-5\/80:hover{outline-color:rgb(var(--pink-5)/.8)}.hover\:outline-pink-5\/90:hover{outline-color:rgb(var(--pink-5)/.9)}.hover\:outline-pink-5\/95:hover{outline-color:rgb(var(--pink-5)/.95)}.hover\:outline-pink-6\/0:hover{outline-color:rgb(var(--pink-6)/0)}.hover\:outline-pink-6\/10:hover{outline-color:rgb(var(--pink-6)/.1)}.hover\:outline-pink-6\/100:hover{outline-color:rgb(var(--pink-6)/1)}.hover\:outline-pink-6\/20:hover{outline-color:rgb(var(--pink-6)/.2)}.hover\:outline-pink-6\/25:hover{outline-color:rgb(var(--pink-6)/.25)}.hover\:outline-pink-6\/30:hover{outline-color:rgb(var(--pink-6)/.3)}.hover\:outline-pink-6\/40:hover{outline-color:rgb(var(--pink-6)/.4)}.hover\:outline-pink-6\/5:hover{outline-color:rgb(var(--pink-6)/.05)}.hover\:outline-pink-6\/50:hover{outline-color:rgb(var(--pink-6)/.5)}.hover\:outline-pink-6\/60:hover{outline-color:rgb(var(--pink-6)/.6)}.hover\:outline-pink-6\/70:hover{outline-color:rgb(var(--pink-6)/.7)}.hover\:outline-pink-6\/75:hover{outline-color:rgb(var(--pink-6)/.75)}.hover\:outline-pink-6\/80:hover{outline-color:rgb(var(--pink-6)/.8)}.hover\:outline-pink-6\/90:hover{outline-color:rgb(var(--pink-6)/.9)}.hover\:outline-pink-6\/95:hover{outline-color:rgb(var(--pink-6)/.95)}.hover\:outline-pink-7\/0:hover{outline-color:rgb(var(--pink-7)/0)}.hover\:outline-pink-7\/10:hover{outline-color:rgb(var(--pink-7)/.1)}.hover\:outline-pink-7\/100:hover{outline-color:rgb(var(--pink-7)/1)}.hover\:outline-pink-7\/20:hover{outline-color:rgb(var(--pink-7)/.2)}.hover\:outline-pink-7\/25:hover{outline-color:rgb(var(--pink-7)/.25)}.hover\:outline-pink-7\/30:hover{outline-color:rgb(var(--pink-7)/.3)}.hover\:outline-pink-7\/40:hover{outline-color:rgb(var(--pink-7)/.4)}.hover\:outline-pink-7\/5:hover{outline-color:rgb(var(--pink-7)/.05)}.hover\:outline-pink-7\/50:hover{outline-color:rgb(var(--pink-7)/.5)}.hover\:outline-pink-7\/60:hover{outline-color:rgb(var(--pink-7)/.6)}.hover\:outline-pink-7\/70:hover{outline-color:rgb(var(--pink-7)/.7)}.hover\:outline-pink-7\/75:hover{outline-color:rgb(var(--pink-7)/.75)}.hover\:outline-pink-7\/80:hover{outline-color:rgb(var(--pink-7)/.8)}.hover\:outline-pink-7\/90:hover{outline-color:rgb(var(--pink-7)/.9)}.hover\:outline-pink-7\/95:hover{outline-color:rgb(var(--pink-7)/.95)}.hover\:outline-pink-8\/0:hover{outline-color:rgb(var(--pink-8)/0)}.hover\:outline-pink-8\/10:hover{outline-color:rgb(var(--pink-8)/.1)}.hover\:outline-pink-8\/100:hover{outline-color:rgb(var(--pink-8)/1)}.hover\:outline-pink-8\/20:hover{outline-color:rgb(var(--pink-8)/.2)}.hover\:outline-pink-8\/25:hover{outline-color:rgb(var(--pink-8)/.25)}.hover\:outline-pink-8\/30:hover{outline-color:rgb(var(--pink-8)/.3)}.hover\:outline-pink-8\/40:hover{outline-color:rgb(var(--pink-8)/.4)}.hover\:outline-pink-8\/5:hover{outline-color:rgb(var(--pink-8)/.05)}.hover\:outline-pink-8\/50:hover{outline-color:rgb(var(--pink-8)/.5)}.hover\:outline-pink-8\/60:hover{outline-color:rgb(var(--pink-8)/.6)}.hover\:outline-pink-8\/70:hover{outline-color:rgb(var(--pink-8)/.7)}.hover\:outline-pink-8\/75:hover{outline-color:rgb(var(--pink-8)/.75)}.hover\:outline-pink-8\/80:hover{outline-color:rgb(var(--pink-8)/.8)}.hover\:outline-pink-8\/90:hover{outline-color:rgb(var(--pink-8)/.9)}.hover\:outline-pink-8\/95:hover{outline-color:rgb(var(--pink-8)/.95)}.hover\:outline-pink-9\/0:hover{outline-color:rgb(var(--pink-9)/0)}.hover\:outline-pink-9\/10:hover{outline-color:rgb(var(--pink-9)/.1)}.hover\:outline-pink-9\/100:hover{outline-color:rgb(var(--pink-9)/1)}.hover\:outline-pink-9\/20:hover{outline-color:rgb(var(--pink-9)/.2)}.hover\:outline-pink-9\/25:hover{outline-color:rgb(var(--pink-9)/.25)}.hover\:outline-pink-9\/30:hover{outline-color:rgb(var(--pink-9)/.3)}.hover\:outline-pink-9\/40:hover{outline-color:rgb(var(--pink-9)/.4)}.hover\:outline-pink-9\/5:hover{outline-color:rgb(var(--pink-9)/.05)}.hover\:outline-pink-9\/50:hover{outline-color:rgb(var(--pink-9)/.5)}.hover\:outline-pink-9\/60:hover{outline-color:rgb(var(--pink-9)/.6)}.hover\:outline-pink-9\/70:hover{outline-color:rgb(var(--pink-9)/.7)}.hover\:outline-pink-9\/75:hover{outline-color:rgb(var(--pink-9)/.75)}.hover\:outline-pink-9\/80:hover{outline-color:rgb(var(--pink-9)/.8)}.hover\:outline-pink-9\/90:hover{outline-color:rgb(var(--pink-9)/.9)}.hover\:outline-pink-9\/95:hover{outline-color:rgb(var(--pink-9)/.95)}.hover\:outline-primary:hover{outline-color:rgb(var(--primary))}.hover\:outline-primary\/0:hover{outline-color:rgb(var(--primary)/0)}.hover\:outline-primary\/10:hover{outline-color:rgb(var(--primary)/.1)}.hover\:outline-primary\/100:hover{outline-color:rgb(var(--primary)/1)}.hover\:outline-primary\/20:hover{outline-color:rgb(var(--primary)/.2)}.hover\:outline-primary\/25:hover{outline-color:rgb(var(--primary)/.25)}.hover\:outline-primary\/30:hover{outline-color:rgb(var(--primary)/.3)}.hover\:outline-primary\/40:hover{outline-color:rgb(var(--primary)/.4)}.hover\:outline-primary\/5:hover{outline-color:rgb(var(--primary)/.05)}.hover\:outline-primary\/50:hover{outline-color:rgb(var(--primary)/.5)}.hover\:outline-primary\/60:hover{outline-color:rgb(var(--primary)/.6)}.hover\:outline-primary\/70:hover{outline-color:rgb(var(--primary)/.7)}.hover\:outline-primary\/75:hover{outline-color:rgb(var(--primary)/.75)}.hover\:outline-primary\/80:hover{outline-color:rgb(var(--primary)/.8)}.hover\:outline-primary\/90:hover{outline-color:rgb(var(--primary)/.9)}.hover\:outline-primary\/95:hover{outline-color:rgb(var(--primary)/.95)}.hover\:outline-purple-1\/0:hover{outline-color:rgb(var(--purple-1)/0)}.hover\:outline-purple-1\/10:hover{outline-color:rgb(var(--purple-1)/.1)}.hover\:outline-purple-1\/100:hover{outline-color:rgb(var(--purple-1)/1)}.hover\:outline-purple-1\/20:hover{outline-color:rgb(var(--purple-1)/.2)}.hover\:outline-purple-1\/25:hover{outline-color:rgb(var(--purple-1)/.25)}.hover\:outline-purple-1\/30:hover{outline-color:rgb(var(--purple-1)/.3)}.hover\:outline-purple-1\/40:hover{outline-color:rgb(var(--purple-1)/.4)}.hover\:outline-purple-1\/5:hover{outline-color:rgb(var(--purple-1)/.05)}.hover\:outline-purple-1\/50:hover{outline-color:rgb(var(--purple-1)/.5)}.hover\:outline-purple-1\/60:hover{outline-color:rgb(var(--purple-1)/.6)}.hover\:outline-purple-1\/70:hover{outline-color:rgb(var(--purple-1)/.7)}.hover\:outline-purple-1\/75:hover{outline-color:rgb(var(--purple-1)/.75)}.hover\:outline-purple-1\/80:hover{outline-color:rgb(var(--purple-1)/.8)}.hover\:outline-purple-1\/90:hover{outline-color:rgb(var(--purple-1)/.9)}.hover\:outline-purple-1\/95:hover{outline-color:rgb(var(--purple-1)/.95)}.hover\:outline-purple-10\/0:hover{outline-color:rgb(var(--purple-10)/0)}.hover\:outline-purple-10\/10:hover{outline-color:rgb(var(--purple-10)/.1)}.hover\:outline-purple-10\/100:hover{outline-color:rgb(var(--purple-10)/1)}.hover\:outline-purple-10\/20:hover{outline-color:rgb(var(--purple-10)/.2)}.hover\:outline-purple-10\/25:hover{outline-color:rgb(var(--purple-10)/.25)}.hover\:outline-purple-10\/30:hover{outline-color:rgb(var(--purple-10)/.3)}.hover\:outline-purple-10\/40:hover{outline-color:rgb(var(--purple-10)/.4)}.hover\:outline-purple-10\/5:hover{outline-color:rgb(var(--purple-10)/.05)}.hover\:outline-purple-10\/50:hover{outline-color:rgb(var(--purple-10)/.5)}.hover\:outline-purple-10\/60:hover{outline-color:rgb(var(--purple-10)/.6)}.hover\:outline-purple-10\/70:hover{outline-color:rgb(var(--purple-10)/.7)}.hover\:outline-purple-10\/75:hover{outline-color:rgb(var(--purple-10)/.75)}.hover\:outline-purple-10\/80:hover{outline-color:rgb(var(--purple-10)/.8)}.hover\:outline-purple-10\/90:hover{outline-color:rgb(var(--purple-10)/.9)}.hover\:outline-purple-10\/95:hover{outline-color:rgb(var(--purple-10)/.95)}.hover\:outline-purple-2\/0:hover{outline-color:rgb(var(--purple-2)/0)}.hover\:outline-purple-2\/10:hover{outline-color:rgb(var(--purple-2)/.1)}.hover\:outline-purple-2\/100:hover{outline-color:rgb(var(--purple-2)/1)}.hover\:outline-purple-2\/20:hover{outline-color:rgb(var(--purple-2)/.2)}.hover\:outline-purple-2\/25:hover{outline-color:rgb(var(--purple-2)/.25)}.hover\:outline-purple-2\/30:hover{outline-color:rgb(var(--purple-2)/.3)}.hover\:outline-purple-2\/40:hover{outline-color:rgb(var(--purple-2)/.4)}.hover\:outline-purple-2\/5:hover{outline-color:rgb(var(--purple-2)/.05)}.hover\:outline-purple-2\/50:hover{outline-color:rgb(var(--purple-2)/.5)}.hover\:outline-purple-2\/60:hover{outline-color:rgb(var(--purple-2)/.6)}.hover\:outline-purple-2\/70:hover{outline-color:rgb(var(--purple-2)/.7)}.hover\:outline-purple-2\/75:hover{outline-color:rgb(var(--purple-2)/.75)}.hover\:outline-purple-2\/80:hover{outline-color:rgb(var(--purple-2)/.8)}.hover\:outline-purple-2\/90:hover{outline-color:rgb(var(--purple-2)/.9)}.hover\:outline-purple-2\/95:hover{outline-color:rgb(var(--purple-2)/.95)}.hover\:outline-purple-3\/0:hover{outline-color:rgb(var(--purple-3)/0)}.hover\:outline-purple-3\/10:hover{outline-color:rgb(var(--purple-3)/.1)}.hover\:outline-purple-3\/100:hover{outline-color:rgb(var(--purple-3)/1)}.hover\:outline-purple-3\/20:hover{outline-color:rgb(var(--purple-3)/.2)}.hover\:outline-purple-3\/25:hover{outline-color:rgb(var(--purple-3)/.25)}.hover\:outline-purple-3\/30:hover{outline-color:rgb(var(--purple-3)/.3)}.hover\:outline-purple-3\/40:hover{outline-color:rgb(var(--purple-3)/.4)}.hover\:outline-purple-3\/5:hover{outline-color:rgb(var(--purple-3)/.05)}.hover\:outline-purple-3\/50:hover{outline-color:rgb(var(--purple-3)/.5)}.hover\:outline-purple-3\/60:hover{outline-color:rgb(var(--purple-3)/.6)}.hover\:outline-purple-3\/70:hover{outline-color:rgb(var(--purple-3)/.7)}.hover\:outline-purple-3\/75:hover{outline-color:rgb(var(--purple-3)/.75)}.hover\:outline-purple-3\/80:hover{outline-color:rgb(var(--purple-3)/.8)}.hover\:outline-purple-3\/90:hover{outline-color:rgb(var(--purple-3)/.9)}.hover\:outline-purple-3\/95:hover{outline-color:rgb(var(--purple-3)/.95)}.hover\:outline-purple-4\/0:hover{outline-color:rgb(var(--purple-4)/0)}.hover\:outline-purple-4\/10:hover{outline-color:rgb(var(--purple-4)/.1)}.hover\:outline-purple-4\/100:hover{outline-color:rgb(var(--purple-4)/1)}.hover\:outline-purple-4\/20:hover{outline-color:rgb(var(--purple-4)/.2)}.hover\:outline-purple-4\/25:hover{outline-color:rgb(var(--purple-4)/.25)}.hover\:outline-purple-4\/30:hover{outline-color:rgb(var(--purple-4)/.3)}.hover\:outline-purple-4\/40:hover{outline-color:rgb(var(--purple-4)/.4)}.hover\:outline-purple-4\/5:hover{outline-color:rgb(var(--purple-4)/.05)}.hover\:outline-purple-4\/50:hover{outline-color:rgb(var(--purple-4)/.5)}.hover\:outline-purple-4\/60:hover{outline-color:rgb(var(--purple-4)/.6)}.hover\:outline-purple-4\/70:hover{outline-color:rgb(var(--purple-4)/.7)}.hover\:outline-purple-4\/75:hover{outline-color:rgb(var(--purple-4)/.75)}.hover\:outline-purple-4\/80:hover{outline-color:rgb(var(--purple-4)/.8)}.hover\:outline-purple-4\/90:hover{outline-color:rgb(var(--purple-4)/.9)}.hover\:outline-purple-4\/95:hover{outline-color:rgb(var(--purple-4)/.95)}.hover\:outline-purple-5\/0:hover{outline-color:rgb(var(--purple-5)/0)}.hover\:outline-purple-5\/10:hover{outline-color:rgb(var(--purple-5)/.1)}.hover\:outline-purple-5\/100:hover{outline-color:rgb(var(--purple-5)/1)}.hover\:outline-purple-5\/20:hover{outline-color:rgb(var(--purple-5)/.2)}.hover\:outline-purple-5\/25:hover{outline-color:rgb(var(--purple-5)/.25)}.hover\:outline-purple-5\/30:hover{outline-color:rgb(var(--purple-5)/.3)}.hover\:outline-purple-5\/40:hover{outline-color:rgb(var(--purple-5)/.4)}.hover\:outline-purple-5\/5:hover{outline-color:rgb(var(--purple-5)/.05)}.hover\:outline-purple-5\/50:hover{outline-color:rgb(var(--purple-5)/.5)}.hover\:outline-purple-5\/60:hover{outline-color:rgb(var(--purple-5)/.6)}.hover\:outline-purple-5\/70:hover{outline-color:rgb(var(--purple-5)/.7)}.hover\:outline-purple-5\/75:hover{outline-color:rgb(var(--purple-5)/.75)}.hover\:outline-purple-5\/80:hover{outline-color:rgb(var(--purple-5)/.8)}.hover\:outline-purple-5\/90:hover{outline-color:rgb(var(--purple-5)/.9)}.hover\:outline-purple-5\/95:hover{outline-color:rgb(var(--purple-5)/.95)}.hover\:outline-purple-6\/0:hover{outline-color:rgb(var(--purple-6)/0)}.hover\:outline-purple-6\/10:hover{outline-color:rgb(var(--purple-6)/.1)}.hover\:outline-purple-6\/100:hover{outline-color:rgb(var(--purple-6)/1)}.hover\:outline-purple-6\/20:hover{outline-color:rgb(var(--purple-6)/.2)}.hover\:outline-purple-6\/25:hover{outline-color:rgb(var(--purple-6)/.25)}.hover\:outline-purple-6\/30:hover{outline-color:rgb(var(--purple-6)/.3)}.hover\:outline-purple-6\/40:hover{outline-color:rgb(var(--purple-6)/.4)}.hover\:outline-purple-6\/5:hover{outline-color:rgb(var(--purple-6)/.05)}.hover\:outline-purple-6\/50:hover{outline-color:rgb(var(--purple-6)/.5)}.hover\:outline-purple-6\/60:hover{outline-color:rgb(var(--purple-6)/.6)}.hover\:outline-purple-6\/70:hover{outline-color:rgb(var(--purple-6)/.7)}.hover\:outline-purple-6\/75:hover{outline-color:rgb(var(--purple-6)/.75)}.hover\:outline-purple-6\/80:hover{outline-color:rgb(var(--purple-6)/.8)}.hover\:outline-purple-6\/90:hover{outline-color:rgb(var(--purple-6)/.9)}.hover\:outline-purple-6\/95:hover{outline-color:rgb(var(--purple-6)/.95)}.hover\:outline-purple-7\/0:hover{outline-color:rgb(var(--purple-7)/0)}.hover\:outline-purple-7\/10:hover{outline-color:rgb(var(--purple-7)/.1)}.hover\:outline-purple-7\/100:hover{outline-color:rgb(var(--purple-7)/1)}.hover\:outline-purple-7\/20:hover{outline-color:rgb(var(--purple-7)/.2)}.hover\:outline-purple-7\/25:hover{outline-color:rgb(var(--purple-7)/.25)}.hover\:outline-purple-7\/30:hover{outline-color:rgb(var(--purple-7)/.3)}.hover\:outline-purple-7\/40:hover{outline-color:rgb(var(--purple-7)/.4)}.hover\:outline-purple-7\/5:hover{outline-color:rgb(var(--purple-7)/.05)}.hover\:outline-purple-7\/50:hover{outline-color:rgb(var(--purple-7)/.5)}.hover\:outline-purple-7\/60:hover{outline-color:rgb(var(--purple-7)/.6)}.hover\:outline-purple-7\/70:hover{outline-color:rgb(var(--purple-7)/.7)}.hover\:outline-purple-7\/75:hover{outline-color:rgb(var(--purple-7)/.75)}.hover\:outline-purple-7\/80:hover{outline-color:rgb(var(--purple-7)/.8)}.hover\:outline-purple-7\/90:hover{outline-color:rgb(var(--purple-7)/.9)}.hover\:outline-purple-7\/95:hover{outline-color:rgb(var(--purple-7)/.95)}.hover\:outline-purple-8\/0:hover{outline-color:rgb(var(--purple-8)/0)}.hover\:outline-purple-8\/10:hover{outline-color:rgb(var(--purple-8)/.1)}.hover\:outline-purple-8\/100:hover{outline-color:rgb(var(--purple-8)/1)}.hover\:outline-purple-8\/20:hover{outline-color:rgb(var(--purple-8)/.2)}.hover\:outline-purple-8\/25:hover{outline-color:rgb(var(--purple-8)/.25)}.hover\:outline-purple-8\/30:hover{outline-color:rgb(var(--purple-8)/.3)}.hover\:outline-purple-8\/40:hover{outline-color:rgb(var(--purple-8)/.4)}.hover\:outline-purple-8\/5:hover{outline-color:rgb(var(--purple-8)/.05)}.hover\:outline-purple-8\/50:hover{outline-color:rgb(var(--purple-8)/.5)}.hover\:outline-purple-8\/60:hover{outline-color:rgb(var(--purple-8)/.6)}.hover\:outline-purple-8\/70:hover{outline-color:rgb(var(--purple-8)/.7)}.hover\:outline-purple-8\/75:hover{outline-color:rgb(var(--purple-8)/.75)}.hover\:outline-purple-8\/80:hover{outline-color:rgb(var(--purple-8)/.8)}.hover\:outline-purple-8\/90:hover{outline-color:rgb(var(--purple-8)/.9)}.hover\:outline-purple-8\/95:hover{outline-color:rgb(var(--purple-8)/.95)}.hover\:outline-purple-9\/0:hover{outline-color:rgb(var(--purple-9)/0)}.hover\:outline-purple-9\/10:hover{outline-color:rgb(var(--purple-9)/.1)}.hover\:outline-purple-9\/100:hover{outline-color:rgb(var(--purple-9)/1)}.hover\:outline-purple-9\/20:hover{outline-color:rgb(var(--purple-9)/.2)}.hover\:outline-purple-9\/25:hover{outline-color:rgb(var(--purple-9)/.25)}.hover\:outline-purple-9\/30:hover{outline-color:rgb(var(--purple-9)/.3)}.hover\:outline-purple-9\/40:hover{outline-color:rgb(var(--purple-9)/.4)}.hover\:outline-purple-9\/5:hover{outline-color:rgb(var(--purple-9)/.05)}.hover\:outline-purple-9\/50:hover{outline-color:rgb(var(--purple-9)/.5)}.hover\:outline-purple-9\/60:hover{outline-color:rgb(var(--purple-9)/.6)}.hover\:outline-purple-9\/70:hover{outline-color:rgb(var(--purple-9)/.7)}.hover\:outline-purple-9\/75:hover{outline-color:rgb(var(--purple-9)/.75)}.hover\:outline-purple-9\/80:hover{outline-color:rgb(var(--purple-9)/.8)}.hover\:outline-purple-9\/90:hover{outline-color:rgb(var(--purple-9)/.9)}.hover\:outline-purple-9\/95:hover{outline-color:rgb(var(--purple-9)/.95)}.hover\:outline-red-1\/0:hover{outline-color:rgb(var(--red-1)/0)}.hover\:outline-red-1\/10:hover{outline-color:rgb(var(--red-1)/.1)}.hover\:outline-red-1\/100:hover{outline-color:rgb(var(--red-1)/1)}.hover\:outline-red-1\/20:hover{outline-color:rgb(var(--red-1)/.2)}.hover\:outline-red-1\/25:hover{outline-color:rgb(var(--red-1)/.25)}.hover\:outline-red-1\/30:hover{outline-color:rgb(var(--red-1)/.3)}.hover\:outline-red-1\/40:hover{outline-color:rgb(var(--red-1)/.4)}.hover\:outline-red-1\/5:hover{outline-color:rgb(var(--red-1)/.05)}.hover\:outline-red-1\/50:hover{outline-color:rgb(var(--red-1)/.5)}.hover\:outline-red-1\/60:hover{outline-color:rgb(var(--red-1)/.6)}.hover\:outline-red-1\/70:hover{outline-color:rgb(var(--red-1)/.7)}.hover\:outline-red-1\/75:hover{outline-color:rgb(var(--red-1)/.75)}.hover\:outline-red-1\/80:hover{outline-color:rgb(var(--red-1)/.8)}.hover\:outline-red-1\/90:hover{outline-color:rgb(var(--red-1)/.9)}.hover\:outline-red-1\/95:hover{outline-color:rgb(var(--red-1)/.95)}.hover\:outline-red-10\/0:hover{outline-color:rgb(var(--red-10)/0)}.hover\:outline-red-10\/10:hover{outline-color:rgb(var(--red-10)/.1)}.hover\:outline-red-10\/100:hover{outline-color:rgb(var(--red-10)/1)}.hover\:outline-red-10\/20:hover{outline-color:rgb(var(--red-10)/.2)}.hover\:outline-red-10\/25:hover{outline-color:rgb(var(--red-10)/.25)}.hover\:outline-red-10\/30:hover{outline-color:rgb(var(--red-10)/.3)}.hover\:outline-red-10\/40:hover{outline-color:rgb(var(--red-10)/.4)}.hover\:outline-red-10\/5:hover{outline-color:rgb(var(--red-10)/.05)}.hover\:outline-red-10\/50:hover{outline-color:rgb(var(--red-10)/.5)}.hover\:outline-red-10\/60:hover{outline-color:rgb(var(--red-10)/.6)}.hover\:outline-red-10\/70:hover{outline-color:rgb(var(--red-10)/.7)}.hover\:outline-red-10\/75:hover{outline-color:rgb(var(--red-10)/.75)}.hover\:outline-red-10\/80:hover{outline-color:rgb(var(--red-10)/.8)}.hover\:outline-red-10\/90:hover{outline-color:rgb(var(--red-10)/.9)}.hover\:outline-red-10\/95:hover{outline-color:rgb(var(--red-10)/.95)}.hover\:outline-red-2\/0:hover{outline-color:rgb(var(--red-2)/0)}.hover\:outline-red-2\/10:hover{outline-color:rgb(var(--red-2)/.1)}.hover\:outline-red-2\/100:hover{outline-color:rgb(var(--red-2)/1)}.hover\:outline-red-2\/20:hover{outline-color:rgb(var(--red-2)/.2)}.hover\:outline-red-2\/25:hover{outline-color:rgb(var(--red-2)/.25)}.hover\:outline-red-2\/30:hover{outline-color:rgb(var(--red-2)/.3)}.hover\:outline-red-2\/40:hover{outline-color:rgb(var(--red-2)/.4)}.hover\:outline-red-2\/5:hover{outline-color:rgb(var(--red-2)/.05)}.hover\:outline-red-2\/50:hover{outline-color:rgb(var(--red-2)/.5)}.hover\:outline-red-2\/60:hover{outline-color:rgb(var(--red-2)/.6)}.hover\:outline-red-2\/70:hover{outline-color:rgb(var(--red-2)/.7)}.hover\:outline-red-2\/75:hover{outline-color:rgb(var(--red-2)/.75)}.hover\:outline-red-2\/80:hover{outline-color:rgb(var(--red-2)/.8)}.hover\:outline-red-2\/90:hover{outline-color:rgb(var(--red-2)/.9)}.hover\:outline-red-2\/95:hover{outline-color:rgb(var(--red-2)/.95)}.hover\:outline-red-3\/0:hover{outline-color:rgb(var(--red-3)/0)}.hover\:outline-red-3\/10:hover{outline-color:rgb(var(--red-3)/.1)}.hover\:outline-red-3\/100:hover{outline-color:rgb(var(--red-3)/1)}.hover\:outline-red-3\/20:hover{outline-color:rgb(var(--red-3)/.2)}.hover\:outline-red-3\/25:hover{outline-color:rgb(var(--red-3)/.25)}.hover\:outline-red-3\/30:hover{outline-color:rgb(var(--red-3)/.3)}.hover\:outline-red-3\/40:hover{outline-color:rgb(var(--red-3)/.4)}.hover\:outline-red-3\/5:hover{outline-color:rgb(var(--red-3)/.05)}.hover\:outline-red-3\/50:hover{outline-color:rgb(var(--red-3)/.5)}.hover\:outline-red-3\/60:hover{outline-color:rgb(var(--red-3)/.6)}.hover\:outline-red-3\/70:hover{outline-color:rgb(var(--red-3)/.7)}.hover\:outline-red-3\/75:hover{outline-color:rgb(var(--red-3)/.75)}.hover\:outline-red-3\/80:hover{outline-color:rgb(var(--red-3)/.8)}.hover\:outline-red-3\/90:hover{outline-color:rgb(var(--red-3)/.9)}.hover\:outline-red-3\/95:hover{outline-color:rgb(var(--red-3)/.95)}.hover\:outline-red-4\/0:hover{outline-color:rgb(var(--red-4)/0)}.hover\:outline-red-4\/10:hover{outline-color:rgb(var(--red-4)/.1)}.hover\:outline-red-4\/100:hover{outline-color:rgb(var(--red-4)/1)}.hover\:outline-red-4\/20:hover{outline-color:rgb(var(--red-4)/.2)}.hover\:outline-red-4\/25:hover{outline-color:rgb(var(--red-4)/.25)}.hover\:outline-red-4\/30:hover{outline-color:rgb(var(--red-4)/.3)}.hover\:outline-red-4\/40:hover{outline-color:rgb(var(--red-4)/.4)}.hover\:outline-red-4\/5:hover{outline-color:rgb(var(--red-4)/.05)}.hover\:outline-red-4\/50:hover{outline-color:rgb(var(--red-4)/.5)}.hover\:outline-red-4\/60:hover{outline-color:rgb(var(--red-4)/.6)}.hover\:outline-red-4\/70:hover{outline-color:rgb(var(--red-4)/.7)}.hover\:outline-red-4\/75:hover{outline-color:rgb(var(--red-4)/.75)}.hover\:outline-red-4\/80:hover{outline-color:rgb(var(--red-4)/.8)}.hover\:outline-red-4\/90:hover{outline-color:rgb(var(--red-4)/.9)}.hover\:outline-red-4\/95:hover{outline-color:rgb(var(--red-4)/.95)}.hover\:outline-red-5\/0:hover{outline-color:rgb(var(--red-5)/0)}.hover\:outline-red-5\/10:hover{outline-color:rgb(var(--red-5)/.1)}.hover\:outline-red-5\/100:hover{outline-color:rgb(var(--red-5)/1)}.hover\:outline-red-5\/20:hover{outline-color:rgb(var(--red-5)/.2)}.hover\:outline-red-5\/25:hover{outline-color:rgb(var(--red-5)/.25)}.hover\:outline-red-5\/30:hover{outline-color:rgb(var(--red-5)/.3)}.hover\:outline-red-5\/40:hover{outline-color:rgb(var(--red-5)/.4)}.hover\:outline-red-5\/5:hover{outline-color:rgb(var(--red-5)/.05)}.hover\:outline-red-5\/50:hover{outline-color:rgb(var(--red-5)/.5)}.hover\:outline-red-5\/60:hover{outline-color:rgb(var(--red-5)/.6)}.hover\:outline-red-5\/70:hover{outline-color:rgb(var(--red-5)/.7)}.hover\:outline-red-5\/75:hover{outline-color:rgb(var(--red-5)/.75)}.hover\:outline-red-5\/80:hover{outline-color:rgb(var(--red-5)/.8)}.hover\:outline-red-5\/90:hover{outline-color:rgb(var(--red-5)/.9)}.hover\:outline-red-5\/95:hover{outline-color:rgb(var(--red-5)/.95)}.hover\:outline-red-6\/0:hover{outline-color:rgb(var(--red-6)/0)}.hover\:outline-red-6\/10:hover{outline-color:rgb(var(--red-6)/.1)}.hover\:outline-red-6\/100:hover{outline-color:rgb(var(--red-6)/1)}.hover\:outline-red-6\/20:hover{outline-color:rgb(var(--red-6)/.2)}.hover\:outline-red-6\/25:hover{outline-color:rgb(var(--red-6)/.25)}.hover\:outline-red-6\/30:hover{outline-color:rgb(var(--red-6)/.3)}.hover\:outline-red-6\/40:hover{outline-color:rgb(var(--red-6)/.4)}.hover\:outline-red-6\/5:hover{outline-color:rgb(var(--red-6)/.05)}.hover\:outline-red-6\/50:hover{outline-color:rgb(var(--red-6)/.5)}.hover\:outline-red-6\/60:hover{outline-color:rgb(var(--red-6)/.6)}.hover\:outline-red-6\/70:hover{outline-color:rgb(var(--red-6)/.7)}.hover\:outline-red-6\/75:hover{outline-color:rgb(var(--red-6)/.75)}.hover\:outline-red-6\/80:hover{outline-color:rgb(var(--red-6)/.8)}.hover\:outline-red-6\/90:hover{outline-color:rgb(var(--red-6)/.9)}.hover\:outline-red-6\/95:hover{outline-color:rgb(var(--red-6)/.95)}.hover\:outline-red-7\/0:hover{outline-color:rgb(var(--red-7)/0)}.hover\:outline-red-7\/10:hover{outline-color:rgb(var(--red-7)/.1)}.hover\:outline-red-7\/100:hover{outline-color:rgb(var(--red-7)/1)}.hover\:outline-red-7\/20:hover{outline-color:rgb(var(--red-7)/.2)}.hover\:outline-red-7\/25:hover{outline-color:rgb(var(--red-7)/.25)}.hover\:outline-red-7\/30:hover{outline-color:rgb(var(--red-7)/.3)}.hover\:outline-red-7\/40:hover{outline-color:rgb(var(--red-7)/.4)}.hover\:outline-red-7\/5:hover{outline-color:rgb(var(--red-7)/.05)}.hover\:outline-red-7\/50:hover{outline-color:rgb(var(--red-7)/.5)}.hover\:outline-red-7\/60:hover{outline-color:rgb(var(--red-7)/.6)}.hover\:outline-red-7\/70:hover{outline-color:rgb(var(--red-7)/.7)}.hover\:outline-red-7\/75:hover{outline-color:rgb(var(--red-7)/.75)}.hover\:outline-red-7\/80:hover{outline-color:rgb(var(--red-7)/.8)}.hover\:outline-red-7\/90:hover{outline-color:rgb(var(--red-7)/.9)}.hover\:outline-red-7\/95:hover{outline-color:rgb(var(--red-7)/.95)}.hover\:outline-red-8\/0:hover{outline-color:rgb(var(--red-8)/0)}.hover\:outline-red-8\/10:hover{outline-color:rgb(var(--red-8)/.1)}.hover\:outline-red-8\/100:hover{outline-color:rgb(var(--red-8)/1)}.hover\:outline-red-8\/20:hover{outline-color:rgb(var(--red-8)/.2)}.hover\:outline-red-8\/25:hover{outline-color:rgb(var(--red-8)/.25)}.hover\:outline-red-8\/30:hover{outline-color:rgb(var(--red-8)/.3)}.hover\:outline-red-8\/40:hover{outline-color:rgb(var(--red-8)/.4)}.hover\:outline-red-8\/5:hover{outline-color:rgb(var(--red-8)/.05)}.hover\:outline-red-8\/50:hover{outline-color:rgb(var(--red-8)/.5)}.hover\:outline-red-8\/60:hover{outline-color:rgb(var(--red-8)/.6)}.hover\:outline-red-8\/70:hover{outline-color:rgb(var(--red-8)/.7)}.hover\:outline-red-8\/75:hover{outline-color:rgb(var(--red-8)/.75)}.hover\:outline-red-8\/80:hover{outline-color:rgb(var(--red-8)/.8)}.hover\:outline-red-8\/90:hover{outline-color:rgb(var(--red-8)/.9)}.hover\:outline-red-8\/95:hover{outline-color:rgb(var(--red-8)/.95)}.hover\:outline-red-9\/0:hover{outline-color:rgb(var(--red-9)/0)}.hover\:outline-red-9\/10:hover{outline-color:rgb(var(--red-9)/.1)}.hover\:outline-red-9\/100:hover{outline-color:rgb(var(--red-9)/1)}.hover\:outline-red-9\/20:hover{outline-color:rgb(var(--red-9)/.2)}.hover\:outline-red-9\/25:hover{outline-color:rgb(var(--red-9)/.25)}.hover\:outline-red-9\/30:hover{outline-color:rgb(var(--red-9)/.3)}.hover\:outline-red-9\/40:hover{outline-color:rgb(var(--red-9)/.4)}.hover\:outline-red-9\/5:hover{outline-color:rgb(var(--red-9)/.05)}.hover\:outline-red-9\/50:hover{outline-color:rgb(var(--red-9)/.5)}.hover\:outline-red-9\/60:hover{outline-color:rgb(var(--red-9)/.6)}.hover\:outline-red-9\/70:hover{outline-color:rgb(var(--red-9)/.7)}.hover\:outline-red-9\/75:hover{outline-color:rgb(var(--red-9)/.75)}.hover\:outline-red-9\/80:hover{outline-color:rgb(var(--red-9)/.8)}.hover\:outline-red-9\/90:hover{outline-color:rgb(var(--red-9)/.9)}.hover\:outline-red-9\/95:hover{outline-color:rgb(var(--red-9)/.95)}.hover\:outline-secondary:hover{outline-color:rgb(var(--secondary))}.hover\:outline-secondary\/0:hover{outline-color:rgb(var(--secondary)/0)}.hover\:outline-secondary\/10:hover{outline-color:rgb(var(--secondary)/.1)}.hover\:outline-secondary\/100:hover{outline-color:rgb(var(--secondary)/1)}.hover\:outline-secondary\/20:hover{outline-color:rgb(var(--secondary)/.2)}.hover\:outline-secondary\/25:hover{outline-color:rgb(var(--secondary)/.25)}.hover\:outline-secondary\/30:hover{outline-color:rgb(var(--secondary)/.3)}.hover\:outline-secondary\/40:hover{outline-color:rgb(var(--secondary)/.4)}.hover\:outline-secondary\/5:hover{outline-color:rgb(var(--secondary)/.05)}.hover\:outline-secondary\/50:hover{outline-color:rgb(var(--secondary)/.5)}.hover\:outline-secondary\/60:hover{outline-color:rgb(var(--secondary)/.6)}.hover\:outline-secondary\/70:hover{outline-color:rgb(var(--secondary)/.7)}.hover\:outline-secondary\/75:hover{outline-color:rgb(var(--secondary)/.75)}.hover\:outline-secondary\/80:hover{outline-color:rgb(var(--secondary)/.8)}.hover\:outline-secondary\/90:hover{outline-color:rgb(var(--secondary)/.9)}.hover\:outline-secondary\/95:hover{outline-color:rgb(var(--secondary)/.95)}.hover\:outline-slate-1\/0:hover{outline-color:rgb(var(--slate-1)/0)}.hover\:outline-slate-1\/10:hover{outline-color:rgb(var(--slate-1)/.1)}.hover\:outline-slate-1\/100:hover{outline-color:rgb(var(--slate-1)/1)}.hover\:outline-slate-1\/20:hover{outline-color:rgb(var(--slate-1)/.2)}.hover\:outline-slate-1\/25:hover{outline-color:rgb(var(--slate-1)/.25)}.hover\:outline-slate-1\/30:hover{outline-color:rgb(var(--slate-1)/.3)}.hover\:outline-slate-1\/40:hover{outline-color:rgb(var(--slate-1)/.4)}.hover\:outline-slate-1\/5:hover{outline-color:rgb(var(--slate-1)/.05)}.hover\:outline-slate-1\/50:hover{outline-color:rgb(var(--slate-1)/.5)}.hover\:outline-slate-1\/60:hover{outline-color:rgb(var(--slate-1)/.6)}.hover\:outline-slate-1\/70:hover{outline-color:rgb(var(--slate-1)/.7)}.hover\:outline-slate-1\/75:hover{outline-color:rgb(var(--slate-1)/.75)}.hover\:outline-slate-1\/80:hover{outline-color:rgb(var(--slate-1)/.8)}.hover\:outline-slate-1\/90:hover{outline-color:rgb(var(--slate-1)/.9)}.hover\:outline-slate-1\/95:hover{outline-color:rgb(var(--slate-1)/.95)}.hover\:outline-slate-10\/0:hover{outline-color:rgb(var(--slate-10)/0)}.hover\:outline-slate-10\/10:hover{outline-color:rgb(var(--slate-10)/.1)}.hover\:outline-slate-10\/100:hover{outline-color:rgb(var(--slate-10)/1)}.hover\:outline-slate-10\/20:hover{outline-color:rgb(var(--slate-10)/.2)}.hover\:outline-slate-10\/25:hover{outline-color:rgb(var(--slate-10)/.25)}.hover\:outline-slate-10\/30:hover{outline-color:rgb(var(--slate-10)/.3)}.hover\:outline-slate-10\/40:hover{outline-color:rgb(var(--slate-10)/.4)}.hover\:outline-slate-10\/5:hover{outline-color:rgb(var(--slate-10)/.05)}.hover\:outline-slate-10\/50:hover{outline-color:rgb(var(--slate-10)/.5)}.hover\:outline-slate-10\/60:hover{outline-color:rgb(var(--slate-10)/.6)}.hover\:outline-slate-10\/70:hover{outline-color:rgb(var(--slate-10)/.7)}.hover\:outline-slate-10\/75:hover{outline-color:rgb(var(--slate-10)/.75)}.hover\:outline-slate-10\/80:hover{outline-color:rgb(var(--slate-10)/.8)}.hover\:outline-slate-10\/90:hover{outline-color:rgb(var(--slate-10)/.9)}.hover\:outline-slate-10\/95:hover{outline-color:rgb(var(--slate-10)/.95)}.hover\:outline-slate-2\/0:hover{outline-color:rgb(var(--slate-2)/0)}.hover\:outline-slate-2\/10:hover{outline-color:rgb(var(--slate-2)/.1)}.hover\:outline-slate-2\/100:hover{outline-color:rgb(var(--slate-2)/1)}.hover\:outline-slate-2\/20:hover{outline-color:rgb(var(--slate-2)/.2)}.hover\:outline-slate-2\/25:hover{outline-color:rgb(var(--slate-2)/.25)}.hover\:outline-slate-2\/30:hover{outline-color:rgb(var(--slate-2)/.3)}.hover\:outline-slate-2\/40:hover{outline-color:rgb(var(--slate-2)/.4)}.hover\:outline-slate-2\/5:hover{outline-color:rgb(var(--slate-2)/.05)}.hover\:outline-slate-2\/50:hover{outline-color:rgb(var(--slate-2)/.5)}.hover\:outline-slate-2\/60:hover{outline-color:rgb(var(--slate-2)/.6)}.hover\:outline-slate-2\/70:hover{outline-color:rgb(var(--slate-2)/.7)}.hover\:outline-slate-2\/75:hover{outline-color:rgb(var(--slate-2)/.75)}.hover\:outline-slate-2\/80:hover{outline-color:rgb(var(--slate-2)/.8)}.hover\:outline-slate-2\/90:hover{outline-color:rgb(var(--slate-2)/.9)}.hover\:outline-slate-2\/95:hover{outline-color:rgb(var(--slate-2)/.95)}.hover\:outline-slate-3\/0:hover{outline-color:rgb(var(--slate-3)/0)}.hover\:outline-slate-3\/10:hover{outline-color:rgb(var(--slate-3)/.1)}.hover\:outline-slate-3\/100:hover{outline-color:rgb(var(--slate-3)/1)}.hover\:outline-slate-3\/20:hover{outline-color:rgb(var(--slate-3)/.2)}.hover\:outline-slate-3\/25:hover{outline-color:rgb(var(--slate-3)/.25)}.hover\:outline-slate-3\/30:hover{outline-color:rgb(var(--slate-3)/.3)}.hover\:outline-slate-3\/40:hover{outline-color:rgb(var(--slate-3)/.4)}.hover\:outline-slate-3\/5:hover{outline-color:rgb(var(--slate-3)/.05)}.hover\:outline-slate-3\/50:hover{outline-color:rgb(var(--slate-3)/.5)}.hover\:outline-slate-3\/60:hover{outline-color:rgb(var(--slate-3)/.6)}.hover\:outline-slate-3\/70:hover{outline-color:rgb(var(--slate-3)/.7)}.hover\:outline-slate-3\/75:hover{outline-color:rgb(var(--slate-3)/.75)}.hover\:outline-slate-3\/80:hover{outline-color:rgb(var(--slate-3)/.8)}.hover\:outline-slate-3\/90:hover{outline-color:rgb(var(--slate-3)/.9)}.hover\:outline-slate-3\/95:hover{outline-color:rgb(var(--slate-3)/.95)}.hover\:outline-slate-4\/0:hover{outline-color:rgb(var(--slate-4)/0)}.hover\:outline-slate-4\/10:hover{outline-color:rgb(var(--slate-4)/.1)}.hover\:outline-slate-4\/100:hover{outline-color:rgb(var(--slate-4)/1)}.hover\:outline-slate-4\/20:hover{outline-color:rgb(var(--slate-4)/.2)}.hover\:outline-slate-4\/25:hover{outline-color:rgb(var(--slate-4)/.25)}.hover\:outline-slate-4\/30:hover{outline-color:rgb(var(--slate-4)/.3)}.hover\:outline-slate-4\/40:hover{outline-color:rgb(var(--slate-4)/.4)}.hover\:outline-slate-4\/5:hover{outline-color:rgb(var(--slate-4)/.05)}.hover\:outline-slate-4\/50:hover{outline-color:rgb(var(--slate-4)/.5)}.hover\:outline-slate-4\/60:hover{outline-color:rgb(var(--slate-4)/.6)}.hover\:outline-slate-4\/70:hover{outline-color:rgb(var(--slate-4)/.7)}.hover\:outline-slate-4\/75:hover{outline-color:rgb(var(--slate-4)/.75)}.hover\:outline-slate-4\/80:hover{outline-color:rgb(var(--slate-4)/.8)}.hover\:outline-slate-4\/90:hover{outline-color:rgb(var(--slate-4)/.9)}.hover\:outline-slate-4\/95:hover{outline-color:rgb(var(--slate-4)/.95)}.hover\:outline-slate-5\/0:hover{outline-color:rgb(var(--slate-5)/0)}.hover\:outline-slate-5\/10:hover{outline-color:rgb(var(--slate-5)/.1)}.hover\:outline-slate-5\/100:hover{outline-color:rgb(var(--slate-5)/1)}.hover\:outline-slate-5\/20:hover{outline-color:rgb(var(--slate-5)/.2)}.hover\:outline-slate-5\/25:hover{outline-color:rgb(var(--slate-5)/.25)}.hover\:outline-slate-5\/30:hover{outline-color:rgb(var(--slate-5)/.3)}.hover\:outline-slate-5\/40:hover{outline-color:rgb(var(--slate-5)/.4)}.hover\:outline-slate-5\/5:hover{outline-color:rgb(var(--slate-5)/.05)}.hover\:outline-slate-5\/50:hover{outline-color:rgb(var(--slate-5)/.5)}.hover\:outline-slate-5\/60:hover{outline-color:rgb(var(--slate-5)/.6)}.hover\:outline-slate-5\/70:hover{outline-color:rgb(var(--slate-5)/.7)}.hover\:outline-slate-5\/75:hover{outline-color:rgb(var(--slate-5)/.75)}.hover\:outline-slate-5\/80:hover{outline-color:rgb(var(--slate-5)/.8)}.hover\:outline-slate-5\/90:hover{outline-color:rgb(var(--slate-5)/.9)}.hover\:outline-slate-5\/95:hover{outline-color:rgb(var(--slate-5)/.95)}.hover\:outline-slate-6\/0:hover{outline-color:rgb(var(--slate-6)/0)}.hover\:outline-slate-6\/10:hover{outline-color:rgb(var(--slate-6)/.1)}.hover\:outline-slate-6\/100:hover{outline-color:rgb(var(--slate-6)/1)}.hover\:outline-slate-6\/20:hover{outline-color:rgb(var(--slate-6)/.2)}.hover\:outline-slate-6\/25:hover{outline-color:rgb(var(--slate-6)/.25)}.hover\:outline-slate-6\/30:hover{outline-color:rgb(var(--slate-6)/.3)}.hover\:outline-slate-6\/40:hover{outline-color:rgb(var(--slate-6)/.4)}.hover\:outline-slate-6\/5:hover{outline-color:rgb(var(--slate-6)/.05)}.hover\:outline-slate-6\/50:hover{outline-color:rgb(var(--slate-6)/.5)}.hover\:outline-slate-6\/60:hover{outline-color:rgb(var(--slate-6)/.6)}.hover\:outline-slate-6\/70:hover{outline-color:rgb(var(--slate-6)/.7)}.hover\:outline-slate-6\/75:hover{outline-color:rgb(var(--slate-6)/.75)}.hover\:outline-slate-6\/80:hover{outline-color:rgb(var(--slate-6)/.8)}.hover\:outline-slate-6\/90:hover{outline-color:rgb(var(--slate-6)/.9)}.hover\:outline-slate-6\/95:hover{outline-color:rgb(var(--slate-6)/.95)}.hover\:outline-slate-7\/0:hover{outline-color:rgb(var(--slate-7)/0)}.hover\:outline-slate-7\/10:hover{outline-color:rgb(var(--slate-7)/.1)}.hover\:outline-slate-7\/100:hover{outline-color:rgb(var(--slate-7)/1)}.hover\:outline-slate-7\/20:hover{outline-color:rgb(var(--slate-7)/.2)}.hover\:outline-slate-7\/25:hover{outline-color:rgb(var(--slate-7)/.25)}.hover\:outline-slate-7\/30:hover{outline-color:rgb(var(--slate-7)/.3)}.hover\:outline-slate-7\/40:hover{outline-color:rgb(var(--slate-7)/.4)}.hover\:outline-slate-7\/5:hover{outline-color:rgb(var(--slate-7)/.05)}.hover\:outline-slate-7\/50:hover{outline-color:rgb(var(--slate-7)/.5)}.hover\:outline-slate-7\/60:hover{outline-color:rgb(var(--slate-7)/.6)}.hover\:outline-slate-7\/70:hover{outline-color:rgb(var(--slate-7)/.7)}.hover\:outline-slate-7\/75:hover{outline-color:rgb(var(--slate-7)/.75)}.hover\:outline-slate-7\/80:hover{outline-color:rgb(var(--slate-7)/.8)}.hover\:outline-slate-7\/90:hover{outline-color:rgb(var(--slate-7)/.9)}.hover\:outline-slate-7\/95:hover{outline-color:rgb(var(--slate-7)/.95)}.hover\:outline-slate-8\/0:hover{outline-color:rgb(var(--slate-8)/0)}.hover\:outline-slate-8\/10:hover{outline-color:rgb(var(--slate-8)/.1)}.hover\:outline-slate-8\/100:hover{outline-color:rgb(var(--slate-8)/1)}.hover\:outline-slate-8\/20:hover{outline-color:rgb(var(--slate-8)/.2)}.hover\:outline-slate-8\/25:hover{outline-color:rgb(var(--slate-8)/.25)}.hover\:outline-slate-8\/30:hover{outline-color:rgb(var(--slate-8)/.3)}.hover\:outline-slate-8\/40:hover{outline-color:rgb(var(--slate-8)/.4)}.hover\:outline-slate-8\/5:hover{outline-color:rgb(var(--slate-8)/.05)}.hover\:outline-slate-8\/50:hover{outline-color:rgb(var(--slate-8)/.5)}.hover\:outline-slate-8\/60:hover{outline-color:rgb(var(--slate-8)/.6)}.hover\:outline-slate-8\/70:hover{outline-color:rgb(var(--slate-8)/.7)}.hover\:outline-slate-8\/75:hover{outline-color:rgb(var(--slate-8)/.75)}.hover\:outline-slate-8\/80:hover{outline-color:rgb(var(--slate-8)/.8)}.hover\:outline-slate-8\/90:hover{outline-color:rgb(var(--slate-8)/.9)}.hover\:outline-slate-8\/95:hover{outline-color:rgb(var(--slate-8)/.95)}.hover\:outline-slate-9\/0:hover{outline-color:rgb(var(--slate-9)/0)}.hover\:outline-slate-9\/10:hover{outline-color:rgb(var(--slate-9)/.1)}.hover\:outline-slate-9\/100:hover{outline-color:rgb(var(--slate-9)/1)}.hover\:outline-slate-9\/20:hover{outline-color:rgb(var(--slate-9)/.2)}.hover\:outline-slate-9\/25:hover{outline-color:rgb(var(--slate-9)/.25)}.hover\:outline-slate-9\/30:hover{outline-color:rgb(var(--slate-9)/.3)}.hover\:outline-slate-9\/40:hover{outline-color:rgb(var(--slate-9)/.4)}.hover\:outline-slate-9\/5:hover{outline-color:rgb(var(--slate-9)/.05)}.hover\:outline-slate-9\/50:hover{outline-color:rgb(var(--slate-9)/.5)}.hover\:outline-slate-9\/60:hover{outline-color:rgb(var(--slate-9)/.6)}.hover\:outline-slate-9\/70:hover{outline-color:rgb(var(--slate-9)/.7)}.hover\:outline-slate-9\/75:hover{outline-color:rgb(var(--slate-9)/.75)}.hover\:outline-slate-9\/80:hover{outline-color:rgb(var(--slate-9)/.8)}.hover\:outline-slate-9\/90:hover{outline-color:rgb(var(--slate-9)/.9)}.hover\:outline-slate-9\/95:hover{outline-color:rgb(var(--slate-9)/.95)}.hover\:outline-success:hover{outline-color:rgb(var(--success))}.hover\:outline-success\/0:hover{outline-color:rgb(var(--success)/0)}.hover\:outline-success\/10:hover{outline-color:rgb(var(--success)/.1)}.hover\:outline-success\/100:hover{outline-color:rgb(var(--success)/1)}.hover\:outline-success\/20:hover{outline-color:rgb(var(--success)/.2)}.hover\:outline-success\/25:hover{outline-color:rgb(var(--success)/.25)}.hover\:outline-success\/30:hover{outline-color:rgb(var(--success)/.3)}.hover\:outline-success\/40:hover{outline-color:rgb(var(--success)/.4)}.hover\:outline-success\/5:hover{outline-color:rgb(var(--success)/.05)}.hover\:outline-success\/50:hover{outline-color:rgb(var(--success)/.5)}.hover\:outline-success\/60:hover{outline-color:rgb(var(--success)/.6)}.hover\:outline-success\/70:hover{outline-color:rgb(var(--success)/.7)}.hover\:outline-success\/75:hover{outline-color:rgb(var(--success)/.75)}.hover\:outline-success\/80:hover{outline-color:rgb(var(--success)/.8)}.hover\:outline-success\/90:hover{outline-color:rgb(var(--success)/.9)}.hover\:outline-success\/95:hover{outline-color:rgb(var(--success)/.95)}.hover\:outline-warning:hover{outline-color:rgb(var(--warning))}.hover\:outline-warning\/0:hover{outline-color:rgb(var(--warning)/0)}.hover\:outline-warning\/10:hover{outline-color:rgb(var(--warning)/.1)}.hover\:outline-warning\/100:hover{outline-color:rgb(var(--warning)/1)}.hover\:outline-warning\/20:hover{outline-color:rgb(var(--warning)/.2)}.hover\:outline-warning\/25:hover{outline-color:rgb(var(--warning)/.25)}.hover\:outline-warning\/30:hover{outline-color:rgb(var(--warning)/.3)}.hover\:outline-warning\/40:hover{outline-color:rgb(var(--warning)/.4)}.hover\:outline-warning\/5:hover{outline-color:rgb(var(--warning)/.05)}.hover\:outline-warning\/50:hover{outline-color:rgb(var(--warning)/.5)}.hover\:outline-warning\/60:hover{outline-color:rgb(var(--warning)/.6)}.hover\:outline-warning\/70:hover{outline-color:rgb(var(--warning)/.7)}.hover\:outline-warning\/75:hover{outline-color:rgb(var(--warning)/.75)}.hover\:outline-warning\/80:hover{outline-color:rgb(var(--warning)/.8)}.hover\:outline-warning\/90:hover{outline-color:rgb(var(--warning)/.9)}.hover\:outline-warning\/95:hover{outline-color:rgb(var(--warning)/.95)}.hover\:outline-white:hover{outline-color:#fff}.hover\:outline-white\/0:hover{outline-color:hsla(0,0%,100%,0)}.hover\:outline-white\/10:hover{outline-color:hsla(0,0%,100%,.1)}.hover\:outline-white\/100:hover{outline-color:#fff}.hover\:outline-white\/20:hover{outline-color:hsla(0,0%,100%,.2)}.hover\:outline-white\/25:hover{outline-color:hsla(0,0%,100%,.25)}.hover\:outline-white\/30:hover{outline-color:hsla(0,0%,100%,.3)}.hover\:outline-white\/40:hover{outline-color:hsla(0,0%,100%,.4)}.hover\:outline-white\/5:hover{outline-color:hsla(0,0%,100%,.05)}.hover\:outline-white\/50:hover{outline-color:hsla(0,0%,100%,.5)}.hover\:outline-white\/60:hover{outline-color:hsla(0,0%,100%,.6)}.hover\:outline-white\/70:hover{outline-color:hsla(0,0%,100%,.7)}.hover\:outline-white\/75:hover{outline-color:hsla(0,0%,100%,.75)}.hover\:outline-white\/80:hover{outline-color:hsla(0,0%,100%,.8)}.hover\:outline-white\/90:hover{outline-color:hsla(0,0%,100%,.9)}.hover\:outline-white\/95:hover{outline-color:hsla(0,0%,100%,.95)}.hover\:outline-whiteInverted:hover{outline-color:rgb(var(--whiteInverted))}.hover\:outline-whiteInverted\/0:hover{outline-color:rgb(var(--whiteInverted)/0)}.hover\:outline-whiteInverted\/10:hover{outline-color:rgb(var(--whiteInverted)/.1)}.hover\:outline-whiteInverted\/100:hover{outline-color:rgb(var(--whiteInverted)/1)}.hover\:outline-whiteInverted\/20:hover{outline-color:rgb(var(--whiteInverted)/.2)}.hover\:outline-whiteInverted\/25:hover{outline-color:rgb(var(--whiteInverted)/.25)}.hover\:outline-whiteInverted\/30:hover{outline-color:rgb(var(--whiteInverted)/.3)}.hover\:outline-whiteInverted\/40:hover{outline-color:rgb(var(--whiteInverted)/.4)}.hover\:outline-whiteInverted\/5:hover{outline-color:rgb(var(--whiteInverted)/.05)}.hover\:outline-whiteInverted\/50:hover{outline-color:rgb(var(--whiteInverted)/.5)}.hover\:outline-whiteInverted\/60:hover{outline-color:rgb(var(--whiteInverted)/.6)}.hover\:outline-whiteInverted\/70:hover{outline-color:rgb(var(--whiteInverted)/.7)}.hover\:outline-whiteInverted\/75:hover{outline-color:rgb(var(--whiteInverted)/.75)}.hover\:outline-whiteInverted\/80:hover{outline-color:rgb(var(--whiteInverted)/.8)}.hover\:outline-whiteInverted\/90:hover{outline-color:rgb(var(--whiteInverted)/.9)}.hover\:outline-whiteInverted\/95:hover{outline-color:rgb(var(--whiteInverted)/.95)}.focus\:border-backgroundPrimary:focus{--tw-border-opacity:1;border-color:rgb(var(--backgroundPrimary)/var(--tw-border-opacity))}.focus\:border-backgroundPrimary\/0:focus{border-color:rgb(var(--backgroundPrimary)/0)}.focus\:border-backgroundPrimary\/10:focus{border-color:rgb(var(--backgroundPrimary)/.1)}.focus\:border-backgroundPrimary\/100:focus{border-color:rgb(var(--backgroundPrimary)/1)}.focus\:border-backgroundPrimary\/20:focus{border-color:rgb(var(--backgroundPrimary)/.2)}.focus\:border-backgroundPrimary\/25:focus{border-color:rgb(var(--backgroundPrimary)/.25)}.focus\:border-backgroundPrimary\/30:focus{border-color:rgb(var(--backgroundPrimary)/.3)}.focus\:border-backgroundPrimary\/40:focus{border-color:rgb(var(--backgroundPrimary)/.4)}.focus\:border-backgroundPrimary\/5:focus{border-color:rgb(var(--backgroundPrimary)/.05)}.focus\:border-backgroundPrimary\/50:focus{border-color:rgb(var(--backgroundPrimary)/.5)}.focus\:border-backgroundPrimary\/60:focus{border-color:rgb(var(--backgroundPrimary)/.6)}.focus\:border-backgroundPrimary\/70:focus{border-color:rgb(var(--backgroundPrimary)/.7)}.focus\:border-backgroundPrimary\/75:focus{border-color:rgb(var(--backgroundPrimary)/.75)}.focus\:border-backgroundPrimary\/80:focus{border-color:rgb(var(--backgroundPrimary)/.8)}.focus\:border-backgroundPrimary\/90:focus{border-color:rgb(var(--backgroundPrimary)/.9)}.focus\:border-backgroundPrimary\/95:focus{border-color:rgb(var(--backgroundPrimary)/.95)}.focus\:border-backgroundSecondary:focus{--tw-border-opacity:1;border-color:rgb(var(--backgroundSecondary)/var(--tw-border-opacity))}.focus\:border-backgroundSecondary\/0:focus{border-color:rgb(var(--backgroundSecondary)/0)}.focus\:border-backgroundSecondary\/10:focus{border-color:rgb(var(--backgroundSecondary)/.1)}.focus\:border-backgroundSecondary\/100:focus{border-color:rgb(var(--backgroundSecondary)/1)}.focus\:border-backgroundSecondary\/20:focus{border-color:rgb(var(--backgroundSecondary)/.2)}.focus\:border-backgroundSecondary\/25:focus{border-color:rgb(var(--backgroundSecondary)/.25)}.focus\:border-backgroundSecondary\/30:focus{border-color:rgb(var(--backgroundSecondary)/.3)}.focus\:border-backgroundSecondary\/40:focus{border-color:rgb(var(--backgroundSecondary)/.4)}.focus\:border-backgroundSecondary\/5:focus{border-color:rgb(var(--backgroundSecondary)/.05)}.focus\:border-backgroundSecondary\/50:focus{border-color:rgb(var(--backgroundSecondary)/.5)}.focus\:border-backgroundSecondary\/60:focus{border-color:rgb(var(--backgroundSecondary)/.6)}.focus\:border-backgroundSecondary\/70:focus{border-color:rgb(var(--backgroundSecondary)/.7)}.focus\:border-backgroundSecondary\/75:focus{border-color:rgb(var(--backgroundSecondary)/.75)}.focus\:border-backgroundSecondary\/80:focus{border-color:rgb(var(--backgroundSecondary)/.8)}.focus\:border-backgroundSecondary\/90:focus{border-color:rgb(var(--backgroundSecondary)/.9)}.focus\:border-backgroundSecondary\/95:focus{border-color:rgb(var(--backgroundSecondary)/.95)}.focus\:border-black:focus{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.focus\:border-black\/0:focus{border-color:transparent}.focus\:border-black\/10:focus{border-color:rgba(0,0,0,.1)}.focus\:border-black\/100:focus{border-color:#000}.focus\:border-black\/20:focus{border-color:rgba(0,0,0,.2)}.focus\:border-black\/25:focus{border-color:rgba(0,0,0,.25)}.focus\:border-black\/30:focus{border-color:rgba(0,0,0,.3)}.focus\:border-black\/40:focus{border-color:rgba(0,0,0,.4)}.focus\:border-black\/5:focus{border-color:rgba(0,0,0,.05)}.focus\:border-black\/50:focus{border-color:rgba(0,0,0,.5)}.focus\:border-black\/60:focus{border-color:rgba(0,0,0,.6)}.focus\:border-black\/70:focus{border-color:rgba(0,0,0,.7)}.focus\:border-black\/75:focus{border-color:rgba(0,0,0,.75)}.focus\:border-black\/80:focus{border-color:rgba(0,0,0,.8)}.focus\:border-black\/90:focus{border-color:rgba(0,0,0,.9)}.focus\:border-black\/95:focus{border-color:rgba(0,0,0,.95)}.focus\:border-blackInverted:focus{--tw-border-opacity:1;border-color:rgb(var(--blackInverted)/var(--tw-border-opacity))}.focus\:border-blackInverted\/0:focus{border-color:rgb(var(--blackInverted)/0)}.focus\:border-blackInverted\/10:focus{border-color:rgb(var(--blackInverted)/.1)}.focus\:border-blackInverted\/100:focus{border-color:rgb(var(--blackInverted)/1)}.focus\:border-blackInverted\/20:focus{border-color:rgb(var(--blackInverted)/.2)}.focus\:border-blackInverted\/25:focus{border-color:rgb(var(--blackInverted)/.25)}.focus\:border-blackInverted\/30:focus{border-color:rgb(var(--blackInverted)/.3)}.focus\:border-blackInverted\/40:focus{border-color:rgb(var(--blackInverted)/.4)}.focus\:border-blackInverted\/5:focus{border-color:rgb(var(--blackInverted)/.05)}.focus\:border-blackInverted\/50:focus{border-color:rgb(var(--blackInverted)/.5)}.focus\:border-blackInverted\/60:focus{border-color:rgb(var(--blackInverted)/.6)}.focus\:border-blackInverted\/70:focus{border-color:rgb(var(--blackInverted)/.7)}.focus\:border-blackInverted\/75:focus{border-color:rgb(var(--blackInverted)/.75)}.focus\:border-blackInverted\/80:focus{border-color:rgb(var(--blackInverted)/.8)}.focus\:border-blackInverted\/90:focus{border-color:rgb(var(--blackInverted)/.9)}.focus\:border-blackInverted\/95:focus{border-color:rgb(var(--blackInverted)/.95)}.focus\:border-blue-1\/0:focus{border-color:rgb(var(--blue-1)/0)}.focus\:border-blue-1\/10:focus{border-color:rgb(var(--blue-1)/.1)}.focus\:border-blue-1\/100:focus{border-color:rgb(var(--blue-1)/1)}.focus\:border-blue-1\/20:focus{border-color:rgb(var(--blue-1)/.2)}.focus\:border-blue-1\/25:focus{border-color:rgb(var(--blue-1)/.25)}.focus\:border-blue-1\/30:focus{border-color:rgb(var(--blue-1)/.3)}.focus\:border-blue-1\/40:focus{border-color:rgb(var(--blue-1)/.4)}.focus\:border-blue-1\/5:focus{border-color:rgb(var(--blue-1)/.05)}.focus\:border-blue-1\/50:focus{border-color:rgb(var(--blue-1)/.5)}.focus\:border-blue-1\/60:focus{border-color:rgb(var(--blue-1)/.6)}.focus\:border-blue-1\/70:focus{border-color:rgb(var(--blue-1)/.7)}.focus\:border-blue-1\/75:focus{border-color:rgb(var(--blue-1)/.75)}.focus\:border-blue-1\/80:focus{border-color:rgb(var(--blue-1)/.8)}.focus\:border-blue-1\/90:focus{border-color:rgb(var(--blue-1)/.9)}.focus\:border-blue-1\/95:focus{border-color:rgb(var(--blue-1)/.95)}.focus\:border-blue-10\/0:focus{border-color:rgb(var(--blue-10)/0)}.focus\:border-blue-10\/10:focus{border-color:rgb(var(--blue-10)/.1)}.focus\:border-blue-10\/100:focus{border-color:rgb(var(--blue-10)/1)}.focus\:border-blue-10\/20:focus{border-color:rgb(var(--blue-10)/.2)}.focus\:border-blue-10\/25:focus{border-color:rgb(var(--blue-10)/.25)}.focus\:border-blue-10\/30:focus{border-color:rgb(var(--blue-10)/.3)}.focus\:border-blue-10\/40:focus{border-color:rgb(var(--blue-10)/.4)}.focus\:border-blue-10\/5:focus{border-color:rgb(var(--blue-10)/.05)}.focus\:border-blue-10\/50:focus{border-color:rgb(var(--blue-10)/.5)}.focus\:border-blue-10\/60:focus{border-color:rgb(var(--blue-10)/.6)}.focus\:border-blue-10\/70:focus{border-color:rgb(var(--blue-10)/.7)}.focus\:border-blue-10\/75:focus{border-color:rgb(var(--blue-10)/.75)}.focus\:border-blue-10\/80:focus{border-color:rgb(var(--blue-10)/.8)}.focus\:border-blue-10\/90:focus{border-color:rgb(var(--blue-10)/.9)}.focus\:border-blue-10\/95:focus{border-color:rgb(var(--blue-10)/.95)}.focus\:border-blue-2\/0:focus{border-color:rgb(var(--blue-2)/0)}.focus\:border-blue-2\/10:focus{border-color:rgb(var(--blue-2)/.1)}.focus\:border-blue-2\/100:focus{border-color:rgb(var(--blue-2)/1)}.focus\:border-blue-2\/20:focus{border-color:rgb(var(--blue-2)/.2)}.focus\:border-blue-2\/25:focus{border-color:rgb(var(--blue-2)/.25)}.focus\:border-blue-2\/30:focus{border-color:rgb(var(--blue-2)/.3)}.focus\:border-blue-2\/40:focus{border-color:rgb(var(--blue-2)/.4)}.focus\:border-blue-2\/5:focus{border-color:rgb(var(--blue-2)/.05)}.focus\:border-blue-2\/50:focus{border-color:rgb(var(--blue-2)/.5)}.focus\:border-blue-2\/60:focus{border-color:rgb(var(--blue-2)/.6)}.focus\:border-blue-2\/70:focus{border-color:rgb(var(--blue-2)/.7)}.focus\:border-blue-2\/75:focus{border-color:rgb(var(--blue-2)/.75)}.focus\:border-blue-2\/80:focus{border-color:rgb(var(--blue-2)/.8)}.focus\:border-blue-2\/90:focus{border-color:rgb(var(--blue-2)/.9)}.focus\:border-blue-2\/95:focus{border-color:rgb(var(--blue-2)/.95)}.focus\:border-blue-3\/0:focus{border-color:rgb(var(--blue-3)/0)}.focus\:border-blue-3\/10:focus{border-color:rgb(var(--blue-3)/.1)}.focus\:border-blue-3\/100:focus{border-color:rgb(var(--blue-3)/1)}.focus\:border-blue-3\/20:focus{border-color:rgb(var(--blue-3)/.2)}.focus\:border-blue-3\/25:focus{border-color:rgb(var(--blue-3)/.25)}.focus\:border-blue-3\/30:focus{border-color:rgb(var(--blue-3)/.3)}.focus\:border-blue-3\/40:focus{border-color:rgb(var(--blue-3)/.4)}.focus\:border-blue-3\/5:focus{border-color:rgb(var(--blue-3)/.05)}.focus\:border-blue-3\/50:focus{border-color:rgb(var(--blue-3)/.5)}.focus\:border-blue-3\/60:focus{border-color:rgb(var(--blue-3)/.6)}.focus\:border-blue-3\/70:focus{border-color:rgb(var(--blue-3)/.7)}.focus\:border-blue-3\/75:focus{border-color:rgb(var(--blue-3)/.75)}.focus\:border-blue-3\/80:focus{border-color:rgb(var(--blue-3)/.8)}.focus\:border-blue-3\/90:focus{border-color:rgb(var(--blue-3)/.9)}.focus\:border-blue-3\/95:focus{border-color:rgb(var(--blue-3)/.95)}.focus\:border-blue-4\/0:focus{border-color:rgb(var(--blue-4)/0)}.focus\:border-blue-4\/10:focus{border-color:rgb(var(--blue-4)/.1)}.focus\:border-blue-4\/100:focus{border-color:rgb(var(--blue-4)/1)}.focus\:border-blue-4\/20:focus{border-color:rgb(var(--blue-4)/.2)}.focus\:border-blue-4\/25:focus{border-color:rgb(var(--blue-4)/.25)}.focus\:border-blue-4\/30:focus{border-color:rgb(var(--blue-4)/.3)}.focus\:border-blue-4\/40:focus{border-color:rgb(var(--blue-4)/.4)}.focus\:border-blue-4\/5:focus{border-color:rgb(var(--blue-4)/.05)}.focus\:border-blue-4\/50:focus{border-color:rgb(var(--blue-4)/.5)}.focus\:border-blue-4\/60:focus{border-color:rgb(var(--blue-4)/.6)}.focus\:border-blue-4\/70:focus{border-color:rgb(var(--blue-4)/.7)}.focus\:border-blue-4\/75:focus{border-color:rgb(var(--blue-4)/.75)}.focus\:border-blue-4\/80:focus{border-color:rgb(var(--blue-4)/.8)}.focus\:border-blue-4\/90:focus{border-color:rgb(var(--blue-4)/.9)}.focus\:border-blue-4\/95:focus{border-color:rgb(var(--blue-4)/.95)}.focus\:border-blue-5\/0:focus{border-color:rgb(var(--blue-5)/0)}.focus\:border-blue-5\/10:focus{border-color:rgb(var(--blue-5)/.1)}.focus\:border-blue-5\/100:focus{border-color:rgb(var(--blue-5)/1)}.focus\:border-blue-5\/20:focus{border-color:rgb(var(--blue-5)/.2)}.focus\:border-blue-5\/25:focus{border-color:rgb(var(--blue-5)/.25)}.focus\:border-blue-5\/30:focus{border-color:rgb(var(--blue-5)/.3)}.focus\:border-blue-5\/40:focus{border-color:rgb(var(--blue-5)/.4)}.focus\:border-blue-5\/5:focus{border-color:rgb(var(--blue-5)/.05)}.focus\:border-blue-5\/50:focus{border-color:rgb(var(--blue-5)/.5)}.focus\:border-blue-5\/60:focus{border-color:rgb(var(--blue-5)/.6)}.focus\:border-blue-5\/70:focus{border-color:rgb(var(--blue-5)/.7)}.focus\:border-blue-5\/75:focus{border-color:rgb(var(--blue-5)/.75)}.focus\:border-blue-5\/80:focus{border-color:rgb(var(--blue-5)/.8)}.focus\:border-blue-5\/90:focus{border-color:rgb(var(--blue-5)/.9)}.focus\:border-blue-5\/95:focus{border-color:rgb(var(--blue-5)/.95)}.focus\:border-blue-6\/0:focus{border-color:rgb(var(--blue-6)/0)}.focus\:border-blue-6\/10:focus{border-color:rgb(var(--blue-6)/.1)}.focus\:border-blue-6\/100:focus{border-color:rgb(var(--blue-6)/1)}.focus\:border-blue-6\/20:focus{border-color:rgb(var(--blue-6)/.2)}.focus\:border-blue-6\/25:focus{border-color:rgb(var(--blue-6)/.25)}.focus\:border-blue-6\/30:focus{border-color:rgb(var(--blue-6)/.3)}.focus\:border-blue-6\/40:focus{border-color:rgb(var(--blue-6)/.4)}.focus\:border-blue-6\/5:focus{border-color:rgb(var(--blue-6)/.05)}.focus\:border-blue-6\/50:focus{border-color:rgb(var(--blue-6)/.5)}.focus\:border-blue-6\/60:focus{border-color:rgb(var(--blue-6)/.6)}.focus\:border-blue-6\/70:focus{border-color:rgb(var(--blue-6)/.7)}.focus\:border-blue-6\/75:focus{border-color:rgb(var(--blue-6)/.75)}.focus\:border-blue-6\/80:focus{border-color:rgb(var(--blue-6)/.8)}.focus\:border-blue-6\/90:focus{border-color:rgb(var(--blue-6)/.9)}.focus\:border-blue-6\/95:focus{border-color:rgb(var(--blue-6)/.95)}.focus\:border-blue-7\/0:focus{border-color:rgb(var(--blue-7)/0)}.focus\:border-blue-7\/10:focus{border-color:rgb(var(--blue-7)/.1)}.focus\:border-blue-7\/100:focus{border-color:rgb(var(--blue-7)/1)}.focus\:border-blue-7\/20:focus{border-color:rgb(var(--blue-7)/.2)}.focus\:border-blue-7\/25:focus{border-color:rgb(var(--blue-7)/.25)}.focus\:border-blue-7\/30:focus{border-color:rgb(var(--blue-7)/.3)}.focus\:border-blue-7\/40:focus{border-color:rgb(var(--blue-7)/.4)}.focus\:border-blue-7\/5:focus{border-color:rgb(var(--blue-7)/.05)}.focus\:border-blue-7\/50:focus{border-color:rgb(var(--blue-7)/.5)}.focus\:border-blue-7\/60:focus{border-color:rgb(var(--blue-7)/.6)}.focus\:border-blue-7\/70:focus{border-color:rgb(var(--blue-7)/.7)}.focus\:border-blue-7\/75:focus{border-color:rgb(var(--blue-7)/.75)}.focus\:border-blue-7\/80:focus{border-color:rgb(var(--blue-7)/.8)}.focus\:border-blue-7\/90:focus{border-color:rgb(var(--blue-7)/.9)}.focus\:border-blue-7\/95:focus{border-color:rgb(var(--blue-7)/.95)}.focus\:border-blue-8\/0:focus{border-color:rgb(var(--blue-8)/0)}.focus\:border-blue-8\/10:focus{border-color:rgb(var(--blue-8)/.1)}.focus\:border-blue-8\/100:focus{border-color:rgb(var(--blue-8)/1)}.focus\:border-blue-8\/20:focus{border-color:rgb(var(--blue-8)/.2)}.focus\:border-blue-8\/25:focus{border-color:rgb(var(--blue-8)/.25)}.focus\:border-blue-8\/30:focus{border-color:rgb(var(--blue-8)/.3)}.focus\:border-blue-8\/40:focus{border-color:rgb(var(--blue-8)/.4)}.focus\:border-blue-8\/5:focus{border-color:rgb(var(--blue-8)/.05)}.focus\:border-blue-8\/50:focus{border-color:rgb(var(--blue-8)/.5)}.focus\:border-blue-8\/60:focus{border-color:rgb(var(--blue-8)/.6)}.focus\:border-blue-8\/70:focus{border-color:rgb(var(--blue-8)/.7)}.focus\:border-blue-8\/75:focus{border-color:rgb(var(--blue-8)/.75)}.focus\:border-blue-8\/80:focus{border-color:rgb(var(--blue-8)/.8)}.focus\:border-blue-8\/90:focus{border-color:rgb(var(--blue-8)/.9)}.focus\:border-blue-8\/95:focus{border-color:rgb(var(--blue-8)/.95)}.focus\:border-blue-9\/0:focus{border-color:rgb(var(--blue-9)/0)}.focus\:border-blue-9\/10:focus{border-color:rgb(var(--blue-9)/.1)}.focus\:border-blue-9\/100:focus{border-color:rgb(var(--blue-9)/1)}.focus\:border-blue-9\/20:focus{border-color:rgb(var(--blue-9)/.2)}.focus\:border-blue-9\/25:focus{border-color:rgb(var(--blue-9)/.25)}.focus\:border-blue-9\/30:focus{border-color:rgb(var(--blue-9)/.3)}.focus\:border-blue-9\/40:focus{border-color:rgb(var(--blue-9)/.4)}.focus\:border-blue-9\/5:focus{border-color:rgb(var(--blue-9)/.05)}.focus\:border-blue-9\/50:focus{border-color:rgb(var(--blue-9)/.5)}.focus\:border-blue-9\/60:focus{border-color:rgb(var(--blue-9)/.6)}.focus\:border-blue-9\/70:focus{border-color:rgb(var(--blue-9)/.7)}.focus\:border-blue-9\/75:focus{border-color:rgb(var(--blue-9)/.75)}.focus\:border-blue-9\/80:focus{border-color:rgb(var(--blue-9)/.8)}.focus\:border-blue-9\/90:focus{border-color:rgb(var(--blue-9)/.9)}.focus\:border-blue-9\/95:focus{border-color:rgb(var(--blue-9)/.95)}.focus\:border-border:focus{--tw-border-opacity:1;border-color:rgb(var(--border)/var(--tw-border-opacity))}.focus\:border-border\/0:focus{border-color:rgb(var(--border)/0)}.focus\:border-border\/10:focus{border-color:rgb(var(--border)/.1)}.focus\:border-border\/100:focus{border-color:rgb(var(--border)/1)}.focus\:border-border\/20:focus{border-color:rgb(var(--border)/.2)}.focus\:border-border\/25:focus{border-color:rgb(var(--border)/.25)}.focus\:border-border\/30:focus{border-color:rgb(var(--border)/.3)}.focus\:border-border\/40:focus{border-color:rgb(var(--border)/.4)}.focus\:border-border\/5:focus{border-color:rgb(var(--border)/.05)}.focus\:border-border\/50:focus{border-color:rgb(var(--border)/.5)}.focus\:border-border\/60:focus{border-color:rgb(var(--border)/.6)}.focus\:border-border\/70:focus{border-color:rgb(var(--border)/.7)}.focus\:border-border\/75:focus{border-color:rgb(var(--border)/.75)}.focus\:border-border\/80:focus{border-color:rgb(var(--border)/.8)}.focus\:border-border\/90:focus{border-color:rgb(var(--border)/.9)}.focus\:border-border\/95:focus{border-color:rgb(var(--border)/.95)}.focus\:border-content1:focus{--tw-border-opacity:1;border-color:rgb(var(--content1)/var(--tw-border-opacity))}.focus\:border-content1\/0:focus{border-color:rgb(var(--content1)/0)}.focus\:border-content1\/10:focus{border-color:rgb(var(--content1)/.1)}.focus\:border-content1\/100:focus{border-color:rgb(var(--content1)/1)}.focus\:border-content1\/20:focus{border-color:rgb(var(--content1)/.2)}.focus\:border-content1\/25:focus{border-color:rgb(var(--content1)/.25)}.focus\:border-content1\/30:focus{border-color:rgb(var(--content1)/.3)}.focus\:border-content1\/40:focus{border-color:rgb(var(--content1)/.4)}.focus\:border-content1\/5:focus{border-color:rgb(var(--content1)/.05)}.focus\:border-content1\/50:focus{border-color:rgb(var(--content1)/.5)}.focus\:border-content1\/60:focus{border-color:rgb(var(--content1)/.6)}.focus\:border-content1\/70:focus{border-color:rgb(var(--content1)/.7)}.focus\:border-content1\/75:focus{border-color:rgb(var(--content1)/.75)}.focus\:border-content1\/80:focus{border-color:rgb(var(--content1)/.8)}.focus\:border-content1\/90:focus{border-color:rgb(var(--content1)/.9)}.focus\:border-content1\/95:focus{border-color:rgb(var(--content1)/.95)}.focus\:border-content2:focus{--tw-border-opacity:1;border-color:rgb(var(--content2)/var(--tw-border-opacity))}.focus\:border-content2\/0:focus{border-color:rgb(var(--content2)/0)}.focus\:border-content2\/10:focus{border-color:rgb(var(--content2)/.1)}.focus\:border-content2\/100:focus{border-color:rgb(var(--content2)/1)}.focus\:border-content2\/20:focus{border-color:rgb(var(--content2)/.2)}.focus\:border-content2\/25:focus{border-color:rgb(var(--content2)/.25)}.focus\:border-content2\/30:focus{border-color:rgb(var(--content2)/.3)}.focus\:border-content2\/40:focus{border-color:rgb(var(--content2)/.4)}.focus\:border-content2\/5:focus{border-color:rgb(var(--content2)/.05)}.focus\:border-content2\/50:focus{border-color:rgb(var(--content2)/.5)}.focus\:border-content2\/60:focus{border-color:rgb(var(--content2)/.6)}.focus\:border-content2\/70:focus{border-color:rgb(var(--content2)/.7)}.focus\:border-content2\/75:focus{border-color:rgb(var(--content2)/.75)}.focus\:border-content2\/80:focus{border-color:rgb(var(--content2)/.8)}.focus\:border-content2\/90:focus{border-color:rgb(var(--content2)/.9)}.focus\:border-content2\/95:focus{border-color:rgb(var(--content2)/.95)}.focus\:border-content3:focus{--tw-border-opacity:1;border-color:rgb(var(--content3)/var(--tw-border-opacity))}.focus\:border-content3\/0:focus{border-color:rgb(var(--content3)/0)}.focus\:border-content3\/10:focus{border-color:rgb(var(--content3)/.1)}.focus\:border-content3\/100:focus{border-color:rgb(var(--content3)/1)}.focus\:border-content3\/20:focus{border-color:rgb(var(--content3)/.2)}.focus\:border-content3\/25:focus{border-color:rgb(var(--content3)/.25)}.focus\:border-content3\/30:focus{border-color:rgb(var(--content3)/.3)}.focus\:border-content3\/40:focus{border-color:rgb(var(--content3)/.4)}.focus\:border-content3\/5:focus{border-color:rgb(var(--content3)/.05)}.focus\:border-content3\/50:focus{border-color:rgb(var(--content3)/.5)}.focus\:border-content3\/60:focus{border-color:rgb(var(--content3)/.6)}.focus\:border-content3\/70:focus{border-color:rgb(var(--content3)/.7)}.focus\:border-content3\/75:focus{border-color:rgb(var(--content3)/.75)}.focus\:border-content3\/80:focus{border-color:rgb(var(--content3)/.8)}.focus\:border-content3\/90:focus{border-color:rgb(var(--content3)/.9)}.focus\:border-content3\/95:focus{border-color:rgb(var(--content3)/.95)}.focus\:border-cyan-1\/0:focus{border-color:rgb(var(--cyan-1)/0)}.focus\:border-cyan-1\/10:focus{border-color:rgb(var(--cyan-1)/.1)}.focus\:border-cyan-1\/100:focus{border-color:rgb(var(--cyan-1)/1)}.focus\:border-cyan-1\/20:focus{border-color:rgb(var(--cyan-1)/.2)}.focus\:border-cyan-1\/25:focus{border-color:rgb(var(--cyan-1)/.25)}.focus\:border-cyan-1\/30:focus{border-color:rgb(var(--cyan-1)/.3)}.focus\:border-cyan-1\/40:focus{border-color:rgb(var(--cyan-1)/.4)}.focus\:border-cyan-1\/5:focus{border-color:rgb(var(--cyan-1)/.05)}.focus\:border-cyan-1\/50:focus{border-color:rgb(var(--cyan-1)/.5)}.focus\:border-cyan-1\/60:focus{border-color:rgb(var(--cyan-1)/.6)}.focus\:border-cyan-1\/70:focus{border-color:rgb(var(--cyan-1)/.7)}.focus\:border-cyan-1\/75:focus{border-color:rgb(var(--cyan-1)/.75)}.focus\:border-cyan-1\/80:focus{border-color:rgb(var(--cyan-1)/.8)}.focus\:border-cyan-1\/90:focus{border-color:rgb(var(--cyan-1)/.9)}.focus\:border-cyan-1\/95:focus{border-color:rgb(var(--cyan-1)/.95)}.focus\:border-cyan-10\/0:focus{border-color:rgb(var(--cyan-10)/0)}.focus\:border-cyan-10\/10:focus{border-color:rgb(var(--cyan-10)/.1)}.focus\:border-cyan-10\/100:focus{border-color:rgb(var(--cyan-10)/1)}.focus\:border-cyan-10\/20:focus{border-color:rgb(var(--cyan-10)/.2)}.focus\:border-cyan-10\/25:focus{border-color:rgb(var(--cyan-10)/.25)}.focus\:border-cyan-10\/30:focus{border-color:rgb(var(--cyan-10)/.3)}.focus\:border-cyan-10\/40:focus{border-color:rgb(var(--cyan-10)/.4)}.focus\:border-cyan-10\/5:focus{border-color:rgb(var(--cyan-10)/.05)}.focus\:border-cyan-10\/50:focus{border-color:rgb(var(--cyan-10)/.5)}.focus\:border-cyan-10\/60:focus{border-color:rgb(var(--cyan-10)/.6)}.focus\:border-cyan-10\/70:focus{border-color:rgb(var(--cyan-10)/.7)}.focus\:border-cyan-10\/75:focus{border-color:rgb(var(--cyan-10)/.75)}.focus\:border-cyan-10\/80:focus{border-color:rgb(var(--cyan-10)/.8)}.focus\:border-cyan-10\/90:focus{border-color:rgb(var(--cyan-10)/.9)}.focus\:border-cyan-10\/95:focus{border-color:rgb(var(--cyan-10)/.95)}.focus\:border-cyan-2\/0:focus{border-color:rgb(var(--cyan-2)/0)}.focus\:border-cyan-2\/10:focus{border-color:rgb(var(--cyan-2)/.1)}.focus\:border-cyan-2\/100:focus{border-color:rgb(var(--cyan-2)/1)}.focus\:border-cyan-2\/20:focus{border-color:rgb(var(--cyan-2)/.2)}.focus\:border-cyan-2\/25:focus{border-color:rgb(var(--cyan-2)/.25)}.focus\:border-cyan-2\/30:focus{border-color:rgb(var(--cyan-2)/.3)}.focus\:border-cyan-2\/40:focus{border-color:rgb(var(--cyan-2)/.4)}.focus\:border-cyan-2\/5:focus{border-color:rgb(var(--cyan-2)/.05)}.focus\:border-cyan-2\/50:focus{border-color:rgb(var(--cyan-2)/.5)}.focus\:border-cyan-2\/60:focus{border-color:rgb(var(--cyan-2)/.6)}.focus\:border-cyan-2\/70:focus{border-color:rgb(var(--cyan-2)/.7)}.focus\:border-cyan-2\/75:focus{border-color:rgb(var(--cyan-2)/.75)}.focus\:border-cyan-2\/80:focus{border-color:rgb(var(--cyan-2)/.8)}.focus\:border-cyan-2\/90:focus{border-color:rgb(var(--cyan-2)/.9)}.focus\:border-cyan-2\/95:focus{border-color:rgb(var(--cyan-2)/.95)}.focus\:border-cyan-3\/0:focus{border-color:rgb(var(--cyan-3)/0)}.focus\:border-cyan-3\/10:focus{border-color:rgb(var(--cyan-3)/.1)}.focus\:border-cyan-3\/100:focus{border-color:rgb(var(--cyan-3)/1)}.focus\:border-cyan-3\/20:focus{border-color:rgb(var(--cyan-3)/.2)}.focus\:border-cyan-3\/25:focus{border-color:rgb(var(--cyan-3)/.25)}.focus\:border-cyan-3\/30:focus{border-color:rgb(var(--cyan-3)/.3)}.focus\:border-cyan-3\/40:focus{border-color:rgb(var(--cyan-3)/.4)}.focus\:border-cyan-3\/5:focus{border-color:rgb(var(--cyan-3)/.05)}.focus\:border-cyan-3\/50:focus{border-color:rgb(var(--cyan-3)/.5)}.focus\:border-cyan-3\/60:focus{border-color:rgb(var(--cyan-3)/.6)}.focus\:border-cyan-3\/70:focus{border-color:rgb(var(--cyan-3)/.7)}.focus\:border-cyan-3\/75:focus{border-color:rgb(var(--cyan-3)/.75)}.focus\:border-cyan-3\/80:focus{border-color:rgb(var(--cyan-3)/.8)}.focus\:border-cyan-3\/90:focus{border-color:rgb(var(--cyan-3)/.9)}.focus\:border-cyan-3\/95:focus{border-color:rgb(var(--cyan-3)/.95)}.focus\:border-cyan-4\/0:focus{border-color:rgb(var(--cyan-4)/0)}.focus\:border-cyan-4\/10:focus{border-color:rgb(var(--cyan-4)/.1)}.focus\:border-cyan-4\/100:focus{border-color:rgb(var(--cyan-4)/1)}.focus\:border-cyan-4\/20:focus{border-color:rgb(var(--cyan-4)/.2)}.focus\:border-cyan-4\/25:focus{border-color:rgb(var(--cyan-4)/.25)}.focus\:border-cyan-4\/30:focus{border-color:rgb(var(--cyan-4)/.3)}.focus\:border-cyan-4\/40:focus{border-color:rgb(var(--cyan-4)/.4)}.focus\:border-cyan-4\/5:focus{border-color:rgb(var(--cyan-4)/.05)}.focus\:border-cyan-4\/50:focus{border-color:rgb(var(--cyan-4)/.5)}.focus\:border-cyan-4\/60:focus{border-color:rgb(var(--cyan-4)/.6)}.focus\:border-cyan-4\/70:focus{border-color:rgb(var(--cyan-4)/.7)}.focus\:border-cyan-4\/75:focus{border-color:rgb(var(--cyan-4)/.75)}.focus\:border-cyan-4\/80:focus{border-color:rgb(var(--cyan-4)/.8)}.focus\:border-cyan-4\/90:focus{border-color:rgb(var(--cyan-4)/.9)}.focus\:border-cyan-4\/95:focus{border-color:rgb(var(--cyan-4)/.95)}.focus\:border-cyan-5\/0:focus{border-color:rgb(var(--cyan-5)/0)}.focus\:border-cyan-5\/10:focus{border-color:rgb(var(--cyan-5)/.1)}.focus\:border-cyan-5\/100:focus{border-color:rgb(var(--cyan-5)/1)}.focus\:border-cyan-5\/20:focus{border-color:rgb(var(--cyan-5)/.2)}.focus\:border-cyan-5\/25:focus{border-color:rgb(var(--cyan-5)/.25)}.focus\:border-cyan-5\/30:focus{border-color:rgb(var(--cyan-5)/.3)}.focus\:border-cyan-5\/40:focus{border-color:rgb(var(--cyan-5)/.4)}.focus\:border-cyan-5\/5:focus{border-color:rgb(var(--cyan-5)/.05)}.focus\:border-cyan-5\/50:focus{border-color:rgb(var(--cyan-5)/.5)}.focus\:border-cyan-5\/60:focus{border-color:rgb(var(--cyan-5)/.6)}.focus\:border-cyan-5\/70:focus{border-color:rgb(var(--cyan-5)/.7)}.focus\:border-cyan-5\/75:focus{border-color:rgb(var(--cyan-5)/.75)}.focus\:border-cyan-5\/80:focus{border-color:rgb(var(--cyan-5)/.8)}.focus\:border-cyan-5\/90:focus{border-color:rgb(var(--cyan-5)/.9)}.focus\:border-cyan-5\/95:focus{border-color:rgb(var(--cyan-5)/.95)}.focus\:border-cyan-6\/0:focus{border-color:rgb(var(--cyan-6)/0)}.focus\:border-cyan-6\/10:focus{border-color:rgb(var(--cyan-6)/.1)}.focus\:border-cyan-6\/100:focus{border-color:rgb(var(--cyan-6)/1)}.focus\:border-cyan-6\/20:focus{border-color:rgb(var(--cyan-6)/.2)}.focus\:border-cyan-6\/25:focus{border-color:rgb(var(--cyan-6)/.25)}.focus\:border-cyan-6\/30:focus{border-color:rgb(var(--cyan-6)/.3)}.focus\:border-cyan-6\/40:focus{border-color:rgb(var(--cyan-6)/.4)}.focus\:border-cyan-6\/5:focus{border-color:rgb(var(--cyan-6)/.05)}.focus\:border-cyan-6\/50:focus{border-color:rgb(var(--cyan-6)/.5)}.focus\:border-cyan-6\/60:focus{border-color:rgb(var(--cyan-6)/.6)}.focus\:border-cyan-6\/70:focus{border-color:rgb(var(--cyan-6)/.7)}.focus\:border-cyan-6\/75:focus{border-color:rgb(var(--cyan-6)/.75)}.focus\:border-cyan-6\/80:focus{border-color:rgb(var(--cyan-6)/.8)}.focus\:border-cyan-6\/90:focus{border-color:rgb(var(--cyan-6)/.9)}.focus\:border-cyan-6\/95:focus{border-color:rgb(var(--cyan-6)/.95)}.focus\:border-cyan-7\/0:focus{border-color:rgb(var(--cyan-7)/0)}.focus\:border-cyan-7\/10:focus{border-color:rgb(var(--cyan-7)/.1)}.focus\:border-cyan-7\/100:focus{border-color:rgb(var(--cyan-7)/1)}.focus\:border-cyan-7\/20:focus{border-color:rgb(var(--cyan-7)/.2)}.focus\:border-cyan-7\/25:focus{border-color:rgb(var(--cyan-7)/.25)}.focus\:border-cyan-7\/30:focus{border-color:rgb(var(--cyan-7)/.3)}.focus\:border-cyan-7\/40:focus{border-color:rgb(var(--cyan-7)/.4)}.focus\:border-cyan-7\/5:focus{border-color:rgb(var(--cyan-7)/.05)}.focus\:border-cyan-7\/50:focus{border-color:rgb(var(--cyan-7)/.5)}.focus\:border-cyan-7\/60:focus{border-color:rgb(var(--cyan-7)/.6)}.focus\:border-cyan-7\/70:focus{border-color:rgb(var(--cyan-7)/.7)}.focus\:border-cyan-7\/75:focus{border-color:rgb(var(--cyan-7)/.75)}.focus\:border-cyan-7\/80:focus{border-color:rgb(var(--cyan-7)/.8)}.focus\:border-cyan-7\/90:focus{border-color:rgb(var(--cyan-7)/.9)}.focus\:border-cyan-7\/95:focus{border-color:rgb(var(--cyan-7)/.95)}.focus\:border-cyan-8\/0:focus{border-color:rgb(var(--cyan-8)/0)}.focus\:border-cyan-8\/10:focus{border-color:rgb(var(--cyan-8)/.1)}.focus\:border-cyan-8\/100:focus{border-color:rgb(var(--cyan-8)/1)}.focus\:border-cyan-8\/20:focus{border-color:rgb(var(--cyan-8)/.2)}.focus\:border-cyan-8\/25:focus{border-color:rgb(var(--cyan-8)/.25)}.focus\:border-cyan-8\/30:focus{border-color:rgb(var(--cyan-8)/.3)}.focus\:border-cyan-8\/40:focus{border-color:rgb(var(--cyan-8)/.4)}.focus\:border-cyan-8\/5:focus{border-color:rgb(var(--cyan-8)/.05)}.focus\:border-cyan-8\/50:focus{border-color:rgb(var(--cyan-8)/.5)}.focus\:border-cyan-8\/60:focus{border-color:rgb(var(--cyan-8)/.6)}.focus\:border-cyan-8\/70:focus{border-color:rgb(var(--cyan-8)/.7)}.focus\:border-cyan-8\/75:focus{border-color:rgb(var(--cyan-8)/.75)}.focus\:border-cyan-8\/80:focus{border-color:rgb(var(--cyan-8)/.8)}.focus\:border-cyan-8\/90:focus{border-color:rgb(var(--cyan-8)/.9)}.focus\:border-cyan-8\/95:focus{border-color:rgb(var(--cyan-8)/.95)}.focus\:border-cyan-9\/0:focus{border-color:rgb(var(--cyan-9)/0)}.focus\:border-cyan-9\/10:focus{border-color:rgb(var(--cyan-9)/.1)}.focus\:border-cyan-9\/100:focus{border-color:rgb(var(--cyan-9)/1)}.focus\:border-cyan-9\/20:focus{border-color:rgb(var(--cyan-9)/.2)}.focus\:border-cyan-9\/25:focus{border-color:rgb(var(--cyan-9)/.25)}.focus\:border-cyan-9\/30:focus{border-color:rgb(var(--cyan-9)/.3)}.focus\:border-cyan-9\/40:focus{border-color:rgb(var(--cyan-9)/.4)}.focus\:border-cyan-9\/5:focus{border-color:rgb(var(--cyan-9)/.05)}.focus\:border-cyan-9\/50:focus{border-color:rgb(var(--cyan-9)/.5)}.focus\:border-cyan-9\/60:focus{border-color:rgb(var(--cyan-9)/.6)}.focus\:border-cyan-9\/70:focus{border-color:rgb(var(--cyan-9)/.7)}.focus\:border-cyan-9\/75:focus{border-color:rgb(var(--cyan-9)/.75)}.focus\:border-cyan-9\/80:focus{border-color:rgb(var(--cyan-9)/.8)}.focus\:border-cyan-9\/90:focus{border-color:rgb(var(--cyan-9)/.9)}.focus\:border-cyan-9\/95:focus{border-color:rgb(var(--cyan-9)/.95)}.focus\:border-error:focus{--tw-border-opacity:1;border-color:rgb(var(--error)/var(--tw-border-opacity))}.focus\:border-error\/0:focus{border-color:rgb(var(--error)/0)}.focus\:border-error\/10:focus{border-color:rgb(var(--error)/.1)}.focus\:border-error\/100:focus{border-color:rgb(var(--error)/1)}.focus\:border-error\/20:focus{border-color:rgb(var(--error)/.2)}.focus\:border-error\/25:focus{border-color:rgb(var(--error)/.25)}.focus\:border-error\/30:focus{border-color:rgb(var(--error)/.3)}.focus\:border-error\/40:focus{border-color:rgb(var(--error)/.4)}.focus\:border-error\/5:focus{border-color:rgb(var(--error)/.05)}.focus\:border-error\/50:focus{border-color:rgb(var(--error)/.5)}.focus\:border-error\/60:focus{border-color:rgb(var(--error)/.6)}.focus\:border-error\/70:focus{border-color:rgb(var(--error)/.7)}.focus\:border-error\/75:focus{border-color:rgb(var(--error)/.75)}.focus\:border-error\/80:focus{border-color:rgb(var(--error)/.8)}.focus\:border-error\/90:focus{border-color:rgb(var(--error)/.9)}.focus\:border-error\/95:focus{border-color:rgb(var(--error)/.95)}.focus\:border-gray-1\/0:focus{border-color:rgb(var(--gray-1)/0)}.focus\:border-gray-1\/10:focus{border-color:rgb(var(--gray-1)/.1)}.focus\:border-gray-1\/100:focus{border-color:rgb(var(--gray-1)/1)}.focus\:border-gray-1\/20:focus{border-color:rgb(var(--gray-1)/.2)}.focus\:border-gray-1\/25:focus{border-color:rgb(var(--gray-1)/.25)}.focus\:border-gray-1\/30:focus{border-color:rgb(var(--gray-1)/.3)}.focus\:border-gray-1\/40:focus{border-color:rgb(var(--gray-1)/.4)}.focus\:border-gray-1\/5:focus{border-color:rgb(var(--gray-1)/.05)}.focus\:border-gray-1\/50:focus{border-color:rgb(var(--gray-1)/.5)}.focus\:border-gray-1\/60:focus{border-color:rgb(var(--gray-1)/.6)}.focus\:border-gray-1\/70:focus{border-color:rgb(var(--gray-1)/.7)}.focus\:border-gray-1\/75:focus{border-color:rgb(var(--gray-1)/.75)}.focus\:border-gray-1\/80:focus{border-color:rgb(var(--gray-1)/.8)}.focus\:border-gray-1\/90:focus{border-color:rgb(var(--gray-1)/.9)}.focus\:border-gray-1\/95:focus{border-color:rgb(var(--gray-1)/.95)}.focus\:border-gray-10\/0:focus{border-color:rgb(var(--gray-10)/0)}.focus\:border-gray-10\/10:focus{border-color:rgb(var(--gray-10)/.1)}.focus\:border-gray-10\/100:focus{border-color:rgb(var(--gray-10)/1)}.focus\:border-gray-10\/20:focus{border-color:rgb(var(--gray-10)/.2)}.focus\:border-gray-10\/25:focus{border-color:rgb(var(--gray-10)/.25)}.focus\:border-gray-10\/30:focus{border-color:rgb(var(--gray-10)/.3)}.focus\:border-gray-10\/40:focus{border-color:rgb(var(--gray-10)/.4)}.focus\:border-gray-10\/5:focus{border-color:rgb(var(--gray-10)/.05)}.focus\:border-gray-10\/50:focus{border-color:rgb(var(--gray-10)/.5)}.focus\:border-gray-10\/60:focus{border-color:rgb(var(--gray-10)/.6)}.focus\:border-gray-10\/70:focus{border-color:rgb(var(--gray-10)/.7)}.focus\:border-gray-10\/75:focus{border-color:rgb(var(--gray-10)/.75)}.focus\:border-gray-10\/80:focus{border-color:rgb(var(--gray-10)/.8)}.focus\:border-gray-10\/90:focus{border-color:rgb(var(--gray-10)/.9)}.focus\:border-gray-10\/95:focus{border-color:rgb(var(--gray-10)/.95)}.focus\:border-gray-2\/0:focus{border-color:rgb(var(--gray-2)/0)}.focus\:border-gray-2\/10:focus{border-color:rgb(var(--gray-2)/.1)}.focus\:border-gray-2\/100:focus{border-color:rgb(var(--gray-2)/1)}.focus\:border-gray-2\/20:focus{border-color:rgb(var(--gray-2)/.2)}.focus\:border-gray-2\/25:focus{border-color:rgb(var(--gray-2)/.25)}.focus\:border-gray-2\/30:focus{border-color:rgb(var(--gray-2)/.3)}.focus\:border-gray-2\/40:focus{border-color:rgb(var(--gray-2)/.4)}.focus\:border-gray-2\/5:focus{border-color:rgb(var(--gray-2)/.05)}.focus\:border-gray-2\/50:focus{border-color:rgb(var(--gray-2)/.5)}.focus\:border-gray-2\/60:focus{border-color:rgb(var(--gray-2)/.6)}.focus\:border-gray-2\/70:focus{border-color:rgb(var(--gray-2)/.7)}.focus\:border-gray-2\/75:focus{border-color:rgb(var(--gray-2)/.75)}.focus\:border-gray-2\/80:focus{border-color:rgb(var(--gray-2)/.8)}.focus\:border-gray-2\/90:focus{border-color:rgb(var(--gray-2)/.9)}.focus\:border-gray-2\/95:focus{border-color:rgb(var(--gray-2)/.95)}.focus\:border-gray-3\/0:focus{border-color:rgb(var(--gray-3)/0)}.focus\:border-gray-3\/10:focus{border-color:rgb(var(--gray-3)/.1)}.focus\:border-gray-3\/100:focus{border-color:rgb(var(--gray-3)/1)}.focus\:border-gray-3\/20:focus{border-color:rgb(var(--gray-3)/.2)}.focus\:border-gray-3\/25:focus{border-color:rgb(var(--gray-3)/.25)}.focus\:border-gray-3\/30:focus{border-color:rgb(var(--gray-3)/.3)}.focus\:border-gray-3\/40:focus{border-color:rgb(var(--gray-3)/.4)}.focus\:border-gray-3\/5:focus{border-color:rgb(var(--gray-3)/.05)}.focus\:border-gray-3\/50:focus{border-color:rgb(var(--gray-3)/.5)}.focus\:border-gray-3\/60:focus{border-color:rgb(var(--gray-3)/.6)}.focus\:border-gray-3\/70:focus{border-color:rgb(var(--gray-3)/.7)}.focus\:border-gray-3\/75:focus{border-color:rgb(var(--gray-3)/.75)}.focus\:border-gray-3\/80:focus{border-color:rgb(var(--gray-3)/.8)}.focus\:border-gray-3\/90:focus{border-color:rgb(var(--gray-3)/.9)}.focus\:border-gray-3\/95:focus{border-color:rgb(var(--gray-3)/.95)}.focus\:border-gray-4\/0:focus{border-color:rgb(var(--gray-4)/0)}.focus\:border-gray-4\/10:focus{border-color:rgb(var(--gray-4)/.1)}.focus\:border-gray-4\/100:focus{border-color:rgb(var(--gray-4)/1)}.focus\:border-gray-4\/20:focus{border-color:rgb(var(--gray-4)/.2)}.focus\:border-gray-4\/25:focus{border-color:rgb(var(--gray-4)/.25)}.focus\:border-gray-4\/30:focus{border-color:rgb(var(--gray-4)/.3)}.focus\:border-gray-4\/40:focus{border-color:rgb(var(--gray-4)/.4)}.focus\:border-gray-4\/5:focus{border-color:rgb(var(--gray-4)/.05)}.focus\:border-gray-4\/50:focus{border-color:rgb(var(--gray-4)/.5)}.focus\:border-gray-4\/60:focus{border-color:rgb(var(--gray-4)/.6)}.focus\:border-gray-4\/70:focus{border-color:rgb(var(--gray-4)/.7)}.focus\:border-gray-4\/75:focus{border-color:rgb(var(--gray-4)/.75)}.focus\:border-gray-4\/80:focus{border-color:rgb(var(--gray-4)/.8)}.focus\:border-gray-4\/90:focus{border-color:rgb(var(--gray-4)/.9)}.focus\:border-gray-4\/95:focus{border-color:rgb(var(--gray-4)/.95)}.focus\:border-gray-5\/0:focus{border-color:rgb(var(--gray-5)/0)}.focus\:border-gray-5\/10:focus{border-color:rgb(var(--gray-5)/.1)}.focus\:border-gray-5\/100:focus{border-color:rgb(var(--gray-5)/1)}.focus\:border-gray-5\/20:focus{border-color:rgb(var(--gray-5)/.2)}.focus\:border-gray-5\/25:focus{border-color:rgb(var(--gray-5)/.25)}.focus\:border-gray-5\/30:focus{border-color:rgb(var(--gray-5)/.3)}.focus\:border-gray-5\/40:focus{border-color:rgb(var(--gray-5)/.4)}.focus\:border-gray-5\/5:focus{border-color:rgb(var(--gray-5)/.05)}.focus\:border-gray-5\/50:focus{border-color:rgb(var(--gray-5)/.5)}.focus\:border-gray-5\/60:focus{border-color:rgb(var(--gray-5)/.6)}.focus\:border-gray-5\/70:focus{border-color:rgb(var(--gray-5)/.7)}.focus\:border-gray-5\/75:focus{border-color:rgb(var(--gray-5)/.75)}.focus\:border-gray-5\/80:focus{border-color:rgb(var(--gray-5)/.8)}.focus\:border-gray-5\/90:focus{border-color:rgb(var(--gray-5)/.9)}.focus\:border-gray-5\/95:focus{border-color:rgb(var(--gray-5)/.95)}.focus\:border-gray-6\/0:focus{border-color:rgb(var(--gray-6)/0)}.focus\:border-gray-6\/10:focus{border-color:rgb(var(--gray-6)/.1)}.focus\:border-gray-6\/100:focus{border-color:rgb(var(--gray-6)/1)}.focus\:border-gray-6\/20:focus{border-color:rgb(var(--gray-6)/.2)}.focus\:border-gray-6\/25:focus{border-color:rgb(var(--gray-6)/.25)}.focus\:border-gray-6\/30:focus{border-color:rgb(var(--gray-6)/.3)}.focus\:border-gray-6\/40:focus{border-color:rgb(var(--gray-6)/.4)}.focus\:border-gray-6\/5:focus{border-color:rgb(var(--gray-6)/.05)}.focus\:border-gray-6\/50:focus{border-color:rgb(var(--gray-6)/.5)}.focus\:border-gray-6\/60:focus{border-color:rgb(var(--gray-6)/.6)}.focus\:border-gray-6\/70:focus{border-color:rgb(var(--gray-6)/.7)}.focus\:border-gray-6\/75:focus{border-color:rgb(var(--gray-6)/.75)}.focus\:border-gray-6\/80:focus{border-color:rgb(var(--gray-6)/.8)}.focus\:border-gray-6\/90:focus{border-color:rgb(var(--gray-6)/.9)}.focus\:border-gray-6\/95:focus{border-color:rgb(var(--gray-6)/.95)}.focus\:border-gray-7\/0:focus{border-color:rgb(var(--gray-7)/0)}.focus\:border-gray-7\/10:focus{border-color:rgb(var(--gray-7)/.1)}.focus\:border-gray-7\/100:focus{border-color:rgb(var(--gray-7)/1)}.focus\:border-gray-7\/20:focus{border-color:rgb(var(--gray-7)/.2)}.focus\:border-gray-7\/25:focus{border-color:rgb(var(--gray-7)/.25)}.focus\:border-gray-7\/30:focus{border-color:rgb(var(--gray-7)/.3)}.focus\:border-gray-7\/40:focus{border-color:rgb(var(--gray-7)/.4)}.focus\:border-gray-7\/5:focus{border-color:rgb(var(--gray-7)/.05)}.focus\:border-gray-7\/50:focus{border-color:rgb(var(--gray-7)/.5)}.focus\:border-gray-7\/60:focus{border-color:rgb(var(--gray-7)/.6)}.focus\:border-gray-7\/70:focus{border-color:rgb(var(--gray-7)/.7)}.focus\:border-gray-7\/75:focus{border-color:rgb(var(--gray-7)/.75)}.focus\:border-gray-7\/80:focus{border-color:rgb(var(--gray-7)/.8)}.focus\:border-gray-7\/90:focus{border-color:rgb(var(--gray-7)/.9)}.focus\:border-gray-7\/95:focus{border-color:rgb(var(--gray-7)/.95)}.focus\:border-gray-8\/0:focus{border-color:rgb(var(--gray-8)/0)}.focus\:border-gray-8\/10:focus{border-color:rgb(var(--gray-8)/.1)}.focus\:border-gray-8\/100:focus{border-color:rgb(var(--gray-8)/1)}.focus\:border-gray-8\/20:focus{border-color:rgb(var(--gray-8)/.2)}.focus\:border-gray-8\/25:focus{border-color:rgb(var(--gray-8)/.25)}.focus\:border-gray-8\/30:focus{border-color:rgb(var(--gray-8)/.3)}.focus\:border-gray-8\/40:focus{border-color:rgb(var(--gray-8)/.4)}.focus\:border-gray-8\/5:focus{border-color:rgb(var(--gray-8)/.05)}.focus\:border-gray-8\/50:focus{border-color:rgb(var(--gray-8)/.5)}.focus\:border-gray-8\/60:focus{border-color:rgb(var(--gray-8)/.6)}.focus\:border-gray-8\/70:focus{border-color:rgb(var(--gray-8)/.7)}.focus\:border-gray-8\/75:focus{border-color:rgb(var(--gray-8)/.75)}.focus\:border-gray-8\/80:focus{border-color:rgb(var(--gray-8)/.8)}.focus\:border-gray-8\/90:focus{border-color:rgb(var(--gray-8)/.9)}.focus\:border-gray-8\/95:focus{border-color:rgb(var(--gray-8)/.95)}.focus\:border-gray-9\/0:focus{border-color:rgb(var(--gray-9)/0)}.focus\:border-gray-9\/10:focus{border-color:rgb(var(--gray-9)/.1)}.focus\:border-gray-9\/100:focus{border-color:rgb(var(--gray-9)/1)}.focus\:border-gray-9\/20:focus{border-color:rgb(var(--gray-9)/.2)}.focus\:border-gray-9\/25:focus{border-color:rgb(var(--gray-9)/.25)}.focus\:border-gray-9\/30:focus{border-color:rgb(var(--gray-9)/.3)}.focus\:border-gray-9\/40:focus{border-color:rgb(var(--gray-9)/.4)}.focus\:border-gray-9\/5:focus{border-color:rgb(var(--gray-9)/.05)}.focus\:border-gray-9\/50:focus{border-color:rgb(var(--gray-9)/.5)}.focus\:border-gray-9\/60:focus{border-color:rgb(var(--gray-9)/.6)}.focus\:border-gray-9\/70:focus{border-color:rgb(var(--gray-9)/.7)}.focus\:border-gray-9\/75:focus{border-color:rgb(var(--gray-9)/.75)}.focus\:border-gray-9\/80:focus{border-color:rgb(var(--gray-9)/.8)}.focus\:border-gray-9\/90:focus{border-color:rgb(var(--gray-9)/.9)}.focus\:border-gray-9\/95:focus{border-color:rgb(var(--gray-9)/.95)}.focus\:border-green-1\/0:focus{border-color:rgb(var(--green-1)/0)}.focus\:border-green-1\/10:focus{border-color:rgb(var(--green-1)/.1)}.focus\:border-green-1\/100:focus{border-color:rgb(var(--green-1)/1)}.focus\:border-green-1\/20:focus{border-color:rgb(var(--green-1)/.2)}.focus\:border-green-1\/25:focus{border-color:rgb(var(--green-1)/.25)}.focus\:border-green-1\/30:focus{border-color:rgb(var(--green-1)/.3)}.focus\:border-green-1\/40:focus{border-color:rgb(var(--green-1)/.4)}.focus\:border-green-1\/5:focus{border-color:rgb(var(--green-1)/.05)}.focus\:border-green-1\/50:focus{border-color:rgb(var(--green-1)/.5)}.focus\:border-green-1\/60:focus{border-color:rgb(var(--green-1)/.6)}.focus\:border-green-1\/70:focus{border-color:rgb(var(--green-1)/.7)}.focus\:border-green-1\/75:focus{border-color:rgb(var(--green-1)/.75)}.focus\:border-green-1\/80:focus{border-color:rgb(var(--green-1)/.8)}.focus\:border-green-1\/90:focus{border-color:rgb(var(--green-1)/.9)}.focus\:border-green-1\/95:focus{border-color:rgb(var(--green-1)/.95)}.focus\:border-green-10\/0:focus{border-color:rgb(var(--green-10)/0)}.focus\:border-green-10\/10:focus{border-color:rgb(var(--green-10)/.1)}.focus\:border-green-10\/100:focus{border-color:rgb(var(--green-10)/1)}.focus\:border-green-10\/20:focus{border-color:rgb(var(--green-10)/.2)}.focus\:border-green-10\/25:focus{border-color:rgb(var(--green-10)/.25)}.focus\:border-green-10\/30:focus{border-color:rgb(var(--green-10)/.3)}.focus\:border-green-10\/40:focus{border-color:rgb(var(--green-10)/.4)}.focus\:border-green-10\/5:focus{border-color:rgb(var(--green-10)/.05)}.focus\:border-green-10\/50:focus{border-color:rgb(var(--green-10)/.5)}.focus\:border-green-10\/60:focus{border-color:rgb(var(--green-10)/.6)}.focus\:border-green-10\/70:focus{border-color:rgb(var(--green-10)/.7)}.focus\:border-green-10\/75:focus{border-color:rgb(var(--green-10)/.75)}.focus\:border-green-10\/80:focus{border-color:rgb(var(--green-10)/.8)}.focus\:border-green-10\/90:focus{border-color:rgb(var(--green-10)/.9)}.focus\:border-green-10\/95:focus{border-color:rgb(var(--green-10)/.95)}.focus\:border-green-2\/0:focus{border-color:rgb(var(--green-2)/0)}.focus\:border-green-2\/10:focus{border-color:rgb(var(--green-2)/.1)}.focus\:border-green-2\/100:focus{border-color:rgb(var(--green-2)/1)}.focus\:border-green-2\/20:focus{border-color:rgb(var(--green-2)/.2)}.focus\:border-green-2\/25:focus{border-color:rgb(var(--green-2)/.25)}.focus\:border-green-2\/30:focus{border-color:rgb(var(--green-2)/.3)}.focus\:border-green-2\/40:focus{border-color:rgb(var(--green-2)/.4)}.focus\:border-green-2\/5:focus{border-color:rgb(var(--green-2)/.05)}.focus\:border-green-2\/50:focus{border-color:rgb(var(--green-2)/.5)}.focus\:border-green-2\/60:focus{border-color:rgb(var(--green-2)/.6)}.focus\:border-green-2\/70:focus{border-color:rgb(var(--green-2)/.7)}.focus\:border-green-2\/75:focus{border-color:rgb(var(--green-2)/.75)}.focus\:border-green-2\/80:focus{border-color:rgb(var(--green-2)/.8)}.focus\:border-green-2\/90:focus{border-color:rgb(var(--green-2)/.9)}.focus\:border-green-2\/95:focus{border-color:rgb(var(--green-2)/.95)}.focus\:border-green-3\/0:focus{border-color:rgb(var(--green-3)/0)}.focus\:border-green-3\/10:focus{border-color:rgb(var(--green-3)/.1)}.focus\:border-green-3\/100:focus{border-color:rgb(var(--green-3)/1)}.focus\:border-green-3\/20:focus{border-color:rgb(var(--green-3)/.2)}.focus\:border-green-3\/25:focus{border-color:rgb(var(--green-3)/.25)}.focus\:border-green-3\/30:focus{border-color:rgb(var(--green-3)/.3)}.focus\:border-green-3\/40:focus{border-color:rgb(var(--green-3)/.4)}.focus\:border-green-3\/5:focus{border-color:rgb(var(--green-3)/.05)}.focus\:border-green-3\/50:focus{border-color:rgb(var(--green-3)/.5)}.focus\:border-green-3\/60:focus{border-color:rgb(var(--green-3)/.6)}.focus\:border-green-3\/70:focus{border-color:rgb(var(--green-3)/.7)}.focus\:border-green-3\/75:focus{border-color:rgb(var(--green-3)/.75)}.focus\:border-green-3\/80:focus{border-color:rgb(var(--green-3)/.8)}.focus\:border-green-3\/90:focus{border-color:rgb(var(--green-3)/.9)}.focus\:border-green-3\/95:focus{border-color:rgb(var(--green-3)/.95)}.focus\:border-green-4\/0:focus{border-color:rgb(var(--green-4)/0)}.focus\:border-green-4\/10:focus{border-color:rgb(var(--green-4)/.1)}.focus\:border-green-4\/100:focus{border-color:rgb(var(--green-4)/1)}.focus\:border-green-4\/20:focus{border-color:rgb(var(--green-4)/.2)}.focus\:border-green-4\/25:focus{border-color:rgb(var(--green-4)/.25)}.focus\:border-green-4\/30:focus{border-color:rgb(var(--green-4)/.3)}.focus\:border-green-4\/40:focus{border-color:rgb(var(--green-4)/.4)}.focus\:border-green-4\/5:focus{border-color:rgb(var(--green-4)/.05)}.focus\:border-green-4\/50:focus{border-color:rgb(var(--green-4)/.5)}.focus\:border-green-4\/60:focus{border-color:rgb(var(--green-4)/.6)}.focus\:border-green-4\/70:focus{border-color:rgb(var(--green-4)/.7)}.focus\:border-green-4\/75:focus{border-color:rgb(var(--green-4)/.75)}.focus\:border-green-4\/80:focus{border-color:rgb(var(--green-4)/.8)}.focus\:border-green-4\/90:focus{border-color:rgb(var(--green-4)/.9)}.focus\:border-green-4\/95:focus{border-color:rgb(var(--green-4)/.95)}.focus\:border-green-5\/0:focus{border-color:rgb(var(--green-5)/0)}.focus\:border-green-5\/10:focus{border-color:rgb(var(--green-5)/.1)}.focus\:border-green-5\/100:focus{border-color:rgb(var(--green-5)/1)}.focus\:border-green-5\/20:focus{border-color:rgb(var(--green-5)/.2)}.focus\:border-green-5\/25:focus{border-color:rgb(var(--green-5)/.25)}.focus\:border-green-5\/30:focus{border-color:rgb(var(--green-5)/.3)}.focus\:border-green-5\/40:focus{border-color:rgb(var(--green-5)/.4)}.focus\:border-green-5\/5:focus{border-color:rgb(var(--green-5)/.05)}.focus\:border-green-5\/50:focus{border-color:rgb(var(--green-5)/.5)}.focus\:border-green-5\/60:focus{border-color:rgb(var(--green-5)/.6)}.focus\:border-green-5\/70:focus{border-color:rgb(var(--green-5)/.7)}.focus\:border-green-5\/75:focus{border-color:rgb(var(--green-5)/.75)}.focus\:border-green-5\/80:focus{border-color:rgb(var(--green-5)/.8)}.focus\:border-green-5\/90:focus{border-color:rgb(var(--green-5)/.9)}.focus\:border-green-5\/95:focus{border-color:rgb(var(--green-5)/.95)}.focus\:border-green-6\/0:focus{border-color:rgb(var(--green-6)/0)}.focus\:border-green-6\/10:focus{border-color:rgb(var(--green-6)/.1)}.focus\:border-green-6\/100:focus{border-color:rgb(var(--green-6)/1)}.focus\:border-green-6\/20:focus{border-color:rgb(var(--green-6)/.2)}.focus\:border-green-6\/25:focus{border-color:rgb(var(--green-6)/.25)}.focus\:border-green-6\/30:focus{border-color:rgb(var(--green-6)/.3)}.focus\:border-green-6\/40:focus{border-color:rgb(var(--green-6)/.4)}.focus\:border-green-6\/5:focus{border-color:rgb(var(--green-6)/.05)}.focus\:border-green-6\/50:focus{border-color:rgb(var(--green-6)/.5)}.focus\:border-green-6\/60:focus{border-color:rgb(var(--green-6)/.6)}.focus\:border-green-6\/70:focus{border-color:rgb(var(--green-6)/.7)}.focus\:border-green-6\/75:focus{border-color:rgb(var(--green-6)/.75)}.focus\:border-green-6\/80:focus{border-color:rgb(var(--green-6)/.8)}.focus\:border-green-6\/90:focus{border-color:rgb(var(--green-6)/.9)}.focus\:border-green-6\/95:focus{border-color:rgb(var(--green-6)/.95)}.focus\:border-green-7\/0:focus{border-color:rgb(var(--green-7)/0)}.focus\:border-green-7\/10:focus{border-color:rgb(var(--green-7)/.1)}.focus\:border-green-7\/100:focus{border-color:rgb(var(--green-7)/1)}.focus\:border-green-7\/20:focus{border-color:rgb(var(--green-7)/.2)}.focus\:border-green-7\/25:focus{border-color:rgb(var(--green-7)/.25)}.focus\:border-green-7\/30:focus{border-color:rgb(var(--green-7)/.3)}.focus\:border-green-7\/40:focus{border-color:rgb(var(--green-7)/.4)}.focus\:border-green-7\/5:focus{border-color:rgb(var(--green-7)/.05)}.focus\:border-green-7\/50:focus{border-color:rgb(var(--green-7)/.5)}.focus\:border-green-7\/60:focus{border-color:rgb(var(--green-7)/.6)}.focus\:border-green-7\/70:focus{border-color:rgb(var(--green-7)/.7)}.focus\:border-green-7\/75:focus{border-color:rgb(var(--green-7)/.75)}.focus\:border-green-7\/80:focus{border-color:rgb(var(--green-7)/.8)}.focus\:border-green-7\/90:focus{border-color:rgb(var(--green-7)/.9)}.focus\:border-green-7\/95:focus{border-color:rgb(var(--green-7)/.95)}.focus\:border-green-8\/0:focus{border-color:rgb(var(--green-8)/0)}.focus\:border-green-8\/10:focus{border-color:rgb(var(--green-8)/.1)}.focus\:border-green-8\/100:focus{border-color:rgb(var(--green-8)/1)}.focus\:border-green-8\/20:focus{border-color:rgb(var(--green-8)/.2)}.focus\:border-green-8\/25:focus{border-color:rgb(var(--green-8)/.25)}.focus\:border-green-8\/30:focus{border-color:rgb(var(--green-8)/.3)}.focus\:border-green-8\/40:focus{border-color:rgb(var(--green-8)/.4)}.focus\:border-green-8\/5:focus{border-color:rgb(var(--green-8)/.05)}.focus\:border-green-8\/50:focus{border-color:rgb(var(--green-8)/.5)}.focus\:border-green-8\/60:focus{border-color:rgb(var(--green-8)/.6)}.focus\:border-green-8\/70:focus{border-color:rgb(var(--green-8)/.7)}.focus\:border-green-8\/75:focus{border-color:rgb(var(--green-8)/.75)}.focus\:border-green-8\/80:focus{border-color:rgb(var(--green-8)/.8)}.focus\:border-green-8\/90:focus{border-color:rgb(var(--green-8)/.9)}.focus\:border-green-8\/95:focus{border-color:rgb(var(--green-8)/.95)}.focus\:border-green-9\/0:focus{border-color:rgb(var(--green-9)/0)}.focus\:border-green-9\/10:focus{border-color:rgb(var(--green-9)/.1)}.focus\:border-green-9\/100:focus{border-color:rgb(var(--green-9)/1)}.focus\:border-green-9\/20:focus{border-color:rgb(var(--green-9)/.2)}.focus\:border-green-9\/25:focus{border-color:rgb(var(--green-9)/.25)}.focus\:border-green-9\/30:focus{border-color:rgb(var(--green-9)/.3)}.focus\:border-green-9\/40:focus{border-color:rgb(var(--green-9)/.4)}.focus\:border-green-9\/5:focus{border-color:rgb(var(--green-9)/.05)}.focus\:border-green-9\/50:focus{border-color:rgb(var(--green-9)/.5)}.focus\:border-green-9\/60:focus{border-color:rgb(var(--green-9)/.6)}.focus\:border-green-9\/70:focus{border-color:rgb(var(--green-9)/.7)}.focus\:border-green-9\/75:focus{border-color:rgb(var(--green-9)/.75)}.focus\:border-green-9\/80:focus{border-color:rgb(var(--green-9)/.8)}.focus\:border-green-9\/90:focus{border-color:rgb(var(--green-9)/.9)}.focus\:border-green-9\/95:focus{border-color:rgb(var(--green-9)/.95)}.focus\:border-pink-1\/0:focus{border-color:rgb(var(--pink-1)/0)}.focus\:border-pink-1\/10:focus{border-color:rgb(var(--pink-1)/.1)}.focus\:border-pink-1\/100:focus{border-color:rgb(var(--pink-1)/1)}.focus\:border-pink-1\/20:focus{border-color:rgb(var(--pink-1)/.2)}.focus\:border-pink-1\/25:focus{border-color:rgb(var(--pink-1)/.25)}.focus\:border-pink-1\/30:focus{border-color:rgb(var(--pink-1)/.3)}.focus\:border-pink-1\/40:focus{border-color:rgb(var(--pink-1)/.4)}.focus\:border-pink-1\/5:focus{border-color:rgb(var(--pink-1)/.05)}.focus\:border-pink-1\/50:focus{border-color:rgb(var(--pink-1)/.5)}.focus\:border-pink-1\/60:focus{border-color:rgb(var(--pink-1)/.6)}.focus\:border-pink-1\/70:focus{border-color:rgb(var(--pink-1)/.7)}.focus\:border-pink-1\/75:focus{border-color:rgb(var(--pink-1)/.75)}.focus\:border-pink-1\/80:focus{border-color:rgb(var(--pink-1)/.8)}.focus\:border-pink-1\/90:focus{border-color:rgb(var(--pink-1)/.9)}.focus\:border-pink-1\/95:focus{border-color:rgb(var(--pink-1)/.95)}.focus\:border-pink-10\/0:focus{border-color:rgb(var(--pink-10)/0)}.focus\:border-pink-10\/10:focus{border-color:rgb(var(--pink-10)/.1)}.focus\:border-pink-10\/100:focus{border-color:rgb(var(--pink-10)/1)}.focus\:border-pink-10\/20:focus{border-color:rgb(var(--pink-10)/.2)}.focus\:border-pink-10\/25:focus{border-color:rgb(var(--pink-10)/.25)}.focus\:border-pink-10\/30:focus{border-color:rgb(var(--pink-10)/.3)}.focus\:border-pink-10\/40:focus{border-color:rgb(var(--pink-10)/.4)}.focus\:border-pink-10\/5:focus{border-color:rgb(var(--pink-10)/.05)}.focus\:border-pink-10\/50:focus{border-color:rgb(var(--pink-10)/.5)}.focus\:border-pink-10\/60:focus{border-color:rgb(var(--pink-10)/.6)}.focus\:border-pink-10\/70:focus{border-color:rgb(var(--pink-10)/.7)}.focus\:border-pink-10\/75:focus{border-color:rgb(var(--pink-10)/.75)}.focus\:border-pink-10\/80:focus{border-color:rgb(var(--pink-10)/.8)}.focus\:border-pink-10\/90:focus{border-color:rgb(var(--pink-10)/.9)}.focus\:border-pink-10\/95:focus{border-color:rgb(var(--pink-10)/.95)}.focus\:border-pink-2\/0:focus{border-color:rgb(var(--pink-2)/0)}.focus\:border-pink-2\/10:focus{border-color:rgb(var(--pink-2)/.1)}.focus\:border-pink-2\/100:focus{border-color:rgb(var(--pink-2)/1)}.focus\:border-pink-2\/20:focus{border-color:rgb(var(--pink-2)/.2)}.focus\:border-pink-2\/25:focus{border-color:rgb(var(--pink-2)/.25)}.focus\:border-pink-2\/30:focus{border-color:rgb(var(--pink-2)/.3)}.focus\:border-pink-2\/40:focus{border-color:rgb(var(--pink-2)/.4)}.focus\:border-pink-2\/5:focus{border-color:rgb(var(--pink-2)/.05)}.focus\:border-pink-2\/50:focus{border-color:rgb(var(--pink-2)/.5)}.focus\:border-pink-2\/60:focus{border-color:rgb(var(--pink-2)/.6)}.focus\:border-pink-2\/70:focus{border-color:rgb(var(--pink-2)/.7)}.focus\:border-pink-2\/75:focus{border-color:rgb(var(--pink-2)/.75)}.focus\:border-pink-2\/80:focus{border-color:rgb(var(--pink-2)/.8)}.focus\:border-pink-2\/90:focus{border-color:rgb(var(--pink-2)/.9)}.focus\:border-pink-2\/95:focus{border-color:rgb(var(--pink-2)/.95)}.focus\:border-pink-3\/0:focus{border-color:rgb(var(--pink-3)/0)}.focus\:border-pink-3\/10:focus{border-color:rgb(var(--pink-3)/.1)}.focus\:border-pink-3\/100:focus{border-color:rgb(var(--pink-3)/1)}.focus\:border-pink-3\/20:focus{border-color:rgb(var(--pink-3)/.2)}.focus\:border-pink-3\/25:focus{border-color:rgb(var(--pink-3)/.25)}.focus\:border-pink-3\/30:focus{border-color:rgb(var(--pink-3)/.3)}.focus\:border-pink-3\/40:focus{border-color:rgb(var(--pink-3)/.4)}.focus\:border-pink-3\/5:focus{border-color:rgb(var(--pink-3)/.05)}.focus\:border-pink-3\/50:focus{border-color:rgb(var(--pink-3)/.5)}.focus\:border-pink-3\/60:focus{border-color:rgb(var(--pink-3)/.6)}.focus\:border-pink-3\/70:focus{border-color:rgb(var(--pink-3)/.7)}.focus\:border-pink-3\/75:focus{border-color:rgb(var(--pink-3)/.75)}.focus\:border-pink-3\/80:focus{border-color:rgb(var(--pink-3)/.8)}.focus\:border-pink-3\/90:focus{border-color:rgb(var(--pink-3)/.9)}.focus\:border-pink-3\/95:focus{border-color:rgb(var(--pink-3)/.95)}.focus\:border-pink-4\/0:focus{border-color:rgb(var(--pink-4)/0)}.focus\:border-pink-4\/10:focus{border-color:rgb(var(--pink-4)/.1)}.focus\:border-pink-4\/100:focus{border-color:rgb(var(--pink-4)/1)}.focus\:border-pink-4\/20:focus{border-color:rgb(var(--pink-4)/.2)}.focus\:border-pink-4\/25:focus{border-color:rgb(var(--pink-4)/.25)}.focus\:border-pink-4\/30:focus{border-color:rgb(var(--pink-4)/.3)}.focus\:border-pink-4\/40:focus{border-color:rgb(var(--pink-4)/.4)}.focus\:border-pink-4\/5:focus{border-color:rgb(var(--pink-4)/.05)}.focus\:border-pink-4\/50:focus{border-color:rgb(var(--pink-4)/.5)}.focus\:border-pink-4\/60:focus{border-color:rgb(var(--pink-4)/.6)}.focus\:border-pink-4\/70:focus{border-color:rgb(var(--pink-4)/.7)}.focus\:border-pink-4\/75:focus{border-color:rgb(var(--pink-4)/.75)}.focus\:border-pink-4\/80:focus{border-color:rgb(var(--pink-4)/.8)}.focus\:border-pink-4\/90:focus{border-color:rgb(var(--pink-4)/.9)}.focus\:border-pink-4\/95:focus{border-color:rgb(var(--pink-4)/.95)}.focus\:border-pink-5\/0:focus{border-color:rgb(var(--pink-5)/0)}.focus\:border-pink-5\/10:focus{border-color:rgb(var(--pink-5)/.1)}.focus\:border-pink-5\/100:focus{border-color:rgb(var(--pink-5)/1)}.focus\:border-pink-5\/20:focus{border-color:rgb(var(--pink-5)/.2)}.focus\:border-pink-5\/25:focus{border-color:rgb(var(--pink-5)/.25)}.focus\:border-pink-5\/30:focus{border-color:rgb(var(--pink-5)/.3)}.focus\:border-pink-5\/40:focus{border-color:rgb(var(--pink-5)/.4)}.focus\:border-pink-5\/5:focus{border-color:rgb(var(--pink-5)/.05)}.focus\:border-pink-5\/50:focus{border-color:rgb(var(--pink-5)/.5)}.focus\:border-pink-5\/60:focus{border-color:rgb(var(--pink-5)/.6)}.focus\:border-pink-5\/70:focus{border-color:rgb(var(--pink-5)/.7)}.focus\:border-pink-5\/75:focus{border-color:rgb(var(--pink-5)/.75)}.focus\:border-pink-5\/80:focus{border-color:rgb(var(--pink-5)/.8)}.focus\:border-pink-5\/90:focus{border-color:rgb(var(--pink-5)/.9)}.focus\:border-pink-5\/95:focus{border-color:rgb(var(--pink-5)/.95)}.focus\:border-pink-6\/0:focus{border-color:rgb(var(--pink-6)/0)}.focus\:border-pink-6\/10:focus{border-color:rgb(var(--pink-6)/.1)}.focus\:border-pink-6\/100:focus{border-color:rgb(var(--pink-6)/1)}.focus\:border-pink-6\/20:focus{border-color:rgb(var(--pink-6)/.2)}.focus\:border-pink-6\/25:focus{border-color:rgb(var(--pink-6)/.25)}.focus\:border-pink-6\/30:focus{border-color:rgb(var(--pink-6)/.3)}.focus\:border-pink-6\/40:focus{border-color:rgb(var(--pink-6)/.4)}.focus\:border-pink-6\/5:focus{border-color:rgb(var(--pink-6)/.05)}.focus\:border-pink-6\/50:focus{border-color:rgb(var(--pink-6)/.5)}.focus\:border-pink-6\/60:focus{border-color:rgb(var(--pink-6)/.6)}.focus\:border-pink-6\/70:focus{border-color:rgb(var(--pink-6)/.7)}.focus\:border-pink-6\/75:focus{border-color:rgb(var(--pink-6)/.75)}.focus\:border-pink-6\/80:focus{border-color:rgb(var(--pink-6)/.8)}.focus\:border-pink-6\/90:focus{border-color:rgb(var(--pink-6)/.9)}.focus\:border-pink-6\/95:focus{border-color:rgb(var(--pink-6)/.95)}.focus\:border-pink-7\/0:focus{border-color:rgb(var(--pink-7)/0)}.focus\:border-pink-7\/10:focus{border-color:rgb(var(--pink-7)/.1)}.focus\:border-pink-7\/100:focus{border-color:rgb(var(--pink-7)/1)}.focus\:border-pink-7\/20:focus{border-color:rgb(var(--pink-7)/.2)}.focus\:border-pink-7\/25:focus{border-color:rgb(var(--pink-7)/.25)}.focus\:border-pink-7\/30:focus{border-color:rgb(var(--pink-7)/.3)}.focus\:border-pink-7\/40:focus{border-color:rgb(var(--pink-7)/.4)}.focus\:border-pink-7\/5:focus{border-color:rgb(var(--pink-7)/.05)}.focus\:border-pink-7\/50:focus{border-color:rgb(var(--pink-7)/.5)}.focus\:border-pink-7\/60:focus{border-color:rgb(var(--pink-7)/.6)}.focus\:border-pink-7\/70:focus{border-color:rgb(var(--pink-7)/.7)}.focus\:border-pink-7\/75:focus{border-color:rgb(var(--pink-7)/.75)}.focus\:border-pink-7\/80:focus{border-color:rgb(var(--pink-7)/.8)}.focus\:border-pink-7\/90:focus{border-color:rgb(var(--pink-7)/.9)}.focus\:border-pink-7\/95:focus{border-color:rgb(var(--pink-7)/.95)}.focus\:border-pink-8\/0:focus{border-color:rgb(var(--pink-8)/0)}.focus\:border-pink-8\/10:focus{border-color:rgb(var(--pink-8)/.1)}.focus\:border-pink-8\/100:focus{border-color:rgb(var(--pink-8)/1)}.focus\:border-pink-8\/20:focus{border-color:rgb(var(--pink-8)/.2)}.focus\:border-pink-8\/25:focus{border-color:rgb(var(--pink-8)/.25)}.focus\:border-pink-8\/30:focus{border-color:rgb(var(--pink-8)/.3)}.focus\:border-pink-8\/40:focus{border-color:rgb(var(--pink-8)/.4)}.focus\:border-pink-8\/5:focus{border-color:rgb(var(--pink-8)/.05)}.focus\:border-pink-8\/50:focus{border-color:rgb(var(--pink-8)/.5)}.focus\:border-pink-8\/60:focus{border-color:rgb(var(--pink-8)/.6)}.focus\:border-pink-8\/70:focus{border-color:rgb(var(--pink-8)/.7)}.focus\:border-pink-8\/75:focus{border-color:rgb(var(--pink-8)/.75)}.focus\:border-pink-8\/80:focus{border-color:rgb(var(--pink-8)/.8)}.focus\:border-pink-8\/90:focus{border-color:rgb(var(--pink-8)/.9)}.focus\:border-pink-8\/95:focus{border-color:rgb(var(--pink-8)/.95)}.focus\:border-pink-9\/0:focus{border-color:rgb(var(--pink-9)/0)}.focus\:border-pink-9\/10:focus{border-color:rgb(var(--pink-9)/.1)}.focus\:border-pink-9\/100:focus{border-color:rgb(var(--pink-9)/1)}.focus\:border-pink-9\/20:focus{border-color:rgb(var(--pink-9)/.2)}.focus\:border-pink-9\/25:focus{border-color:rgb(var(--pink-9)/.25)}.focus\:border-pink-9\/30:focus{border-color:rgb(var(--pink-9)/.3)}.focus\:border-pink-9\/40:focus{border-color:rgb(var(--pink-9)/.4)}.focus\:border-pink-9\/5:focus{border-color:rgb(var(--pink-9)/.05)}.focus\:border-pink-9\/50:focus{border-color:rgb(var(--pink-9)/.5)}.focus\:border-pink-9\/60:focus{border-color:rgb(var(--pink-9)/.6)}.focus\:border-pink-9\/70:focus{border-color:rgb(var(--pink-9)/.7)}.focus\:border-pink-9\/75:focus{border-color:rgb(var(--pink-9)/.75)}.focus\:border-pink-9\/80:focus{border-color:rgb(var(--pink-9)/.8)}.focus\:border-pink-9\/90:focus{border-color:rgb(var(--pink-9)/.9)}.focus\:border-pink-9\/95:focus{border-color:rgb(var(--pink-9)/.95)}.focus\:border-primary:focus{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity))}.focus\:border-primary\/0:focus{border-color:rgb(var(--primary)/0)}.focus\:border-primary\/10:focus{border-color:rgb(var(--primary)/.1)}.focus\:border-primary\/100:focus{border-color:rgb(var(--primary)/1)}.focus\:border-primary\/20:focus{border-color:rgb(var(--primary)/.2)}.focus\:border-primary\/25:focus{border-color:rgb(var(--primary)/.25)}.focus\:border-primary\/30:focus{border-color:rgb(var(--primary)/.3)}.focus\:border-primary\/40:focus{border-color:rgb(var(--primary)/.4)}.focus\:border-primary\/5:focus{border-color:rgb(var(--primary)/.05)}.focus\:border-primary\/50:focus{border-color:rgb(var(--primary)/.5)}.focus\:border-primary\/60:focus{border-color:rgb(var(--primary)/.6)}.focus\:border-primary\/70:focus{border-color:rgb(var(--primary)/.7)}.focus\:border-primary\/75:focus{border-color:rgb(var(--primary)/.75)}.focus\:border-primary\/80:focus{border-color:rgb(var(--primary)/.8)}.focus\:border-primary\/90:focus{border-color:rgb(var(--primary)/.9)}.focus\:border-primary\/95:focus{border-color:rgb(var(--primary)/.95)}.focus\:border-purple-1\/0:focus{border-color:rgb(var(--purple-1)/0)}.focus\:border-purple-1\/10:focus{border-color:rgb(var(--purple-1)/.1)}.focus\:border-purple-1\/100:focus{border-color:rgb(var(--purple-1)/1)}.focus\:border-purple-1\/20:focus{border-color:rgb(var(--purple-1)/.2)}.focus\:border-purple-1\/25:focus{border-color:rgb(var(--purple-1)/.25)}.focus\:border-purple-1\/30:focus{border-color:rgb(var(--purple-1)/.3)}.focus\:border-purple-1\/40:focus{border-color:rgb(var(--purple-1)/.4)}.focus\:border-purple-1\/5:focus{border-color:rgb(var(--purple-1)/.05)}.focus\:border-purple-1\/50:focus{border-color:rgb(var(--purple-1)/.5)}.focus\:border-purple-1\/60:focus{border-color:rgb(var(--purple-1)/.6)}.focus\:border-purple-1\/70:focus{border-color:rgb(var(--purple-1)/.7)}.focus\:border-purple-1\/75:focus{border-color:rgb(var(--purple-1)/.75)}.focus\:border-purple-1\/80:focus{border-color:rgb(var(--purple-1)/.8)}.focus\:border-purple-1\/90:focus{border-color:rgb(var(--purple-1)/.9)}.focus\:border-purple-1\/95:focus{border-color:rgb(var(--purple-1)/.95)}.focus\:border-purple-10\/0:focus{border-color:rgb(var(--purple-10)/0)}.focus\:border-purple-10\/10:focus{border-color:rgb(var(--purple-10)/.1)}.focus\:border-purple-10\/100:focus{border-color:rgb(var(--purple-10)/1)}.focus\:border-purple-10\/20:focus{border-color:rgb(var(--purple-10)/.2)}.focus\:border-purple-10\/25:focus{border-color:rgb(var(--purple-10)/.25)}.focus\:border-purple-10\/30:focus{border-color:rgb(var(--purple-10)/.3)}.focus\:border-purple-10\/40:focus{border-color:rgb(var(--purple-10)/.4)}.focus\:border-purple-10\/5:focus{border-color:rgb(var(--purple-10)/.05)}.focus\:border-purple-10\/50:focus{border-color:rgb(var(--purple-10)/.5)}.focus\:border-purple-10\/60:focus{border-color:rgb(var(--purple-10)/.6)}.focus\:border-purple-10\/70:focus{border-color:rgb(var(--purple-10)/.7)}.focus\:border-purple-10\/75:focus{border-color:rgb(var(--purple-10)/.75)}.focus\:border-purple-10\/80:focus{border-color:rgb(var(--purple-10)/.8)}.focus\:border-purple-10\/90:focus{border-color:rgb(var(--purple-10)/.9)}.focus\:border-purple-10\/95:focus{border-color:rgb(var(--purple-10)/.95)}.focus\:border-purple-2\/0:focus{border-color:rgb(var(--purple-2)/0)}.focus\:border-purple-2\/10:focus{border-color:rgb(var(--purple-2)/.1)}.focus\:border-purple-2\/100:focus{border-color:rgb(var(--purple-2)/1)}.focus\:border-purple-2\/20:focus{border-color:rgb(var(--purple-2)/.2)}.focus\:border-purple-2\/25:focus{border-color:rgb(var(--purple-2)/.25)}.focus\:border-purple-2\/30:focus{border-color:rgb(var(--purple-2)/.3)}.focus\:border-purple-2\/40:focus{border-color:rgb(var(--purple-2)/.4)}.focus\:border-purple-2\/5:focus{border-color:rgb(var(--purple-2)/.05)}.focus\:border-purple-2\/50:focus{border-color:rgb(var(--purple-2)/.5)}.focus\:border-purple-2\/60:focus{border-color:rgb(var(--purple-2)/.6)}.focus\:border-purple-2\/70:focus{border-color:rgb(var(--purple-2)/.7)}.focus\:border-purple-2\/75:focus{border-color:rgb(var(--purple-2)/.75)}.focus\:border-purple-2\/80:focus{border-color:rgb(var(--purple-2)/.8)}.focus\:border-purple-2\/90:focus{border-color:rgb(var(--purple-2)/.9)}.focus\:border-purple-2\/95:focus{border-color:rgb(var(--purple-2)/.95)}.focus\:border-purple-3\/0:focus{border-color:rgb(var(--purple-3)/0)}.focus\:border-purple-3\/10:focus{border-color:rgb(var(--purple-3)/.1)}.focus\:border-purple-3\/100:focus{border-color:rgb(var(--purple-3)/1)}.focus\:border-purple-3\/20:focus{border-color:rgb(var(--purple-3)/.2)}.focus\:border-purple-3\/25:focus{border-color:rgb(var(--purple-3)/.25)}.focus\:border-purple-3\/30:focus{border-color:rgb(var(--purple-3)/.3)}.focus\:border-purple-3\/40:focus{border-color:rgb(var(--purple-3)/.4)}.focus\:border-purple-3\/5:focus{border-color:rgb(var(--purple-3)/.05)}.focus\:border-purple-3\/50:focus{border-color:rgb(var(--purple-3)/.5)}.focus\:border-purple-3\/60:focus{border-color:rgb(var(--purple-3)/.6)}.focus\:border-purple-3\/70:focus{border-color:rgb(var(--purple-3)/.7)}.focus\:border-purple-3\/75:focus{border-color:rgb(var(--purple-3)/.75)}.focus\:border-purple-3\/80:focus{border-color:rgb(var(--purple-3)/.8)}.focus\:border-purple-3\/90:focus{border-color:rgb(var(--purple-3)/.9)}.focus\:border-purple-3\/95:focus{border-color:rgb(var(--purple-3)/.95)}.focus\:border-purple-4\/0:focus{border-color:rgb(var(--purple-4)/0)}.focus\:border-purple-4\/10:focus{border-color:rgb(var(--purple-4)/.1)}.focus\:border-purple-4\/100:focus{border-color:rgb(var(--purple-4)/1)}.focus\:border-purple-4\/20:focus{border-color:rgb(var(--purple-4)/.2)}.focus\:border-purple-4\/25:focus{border-color:rgb(var(--purple-4)/.25)}.focus\:border-purple-4\/30:focus{border-color:rgb(var(--purple-4)/.3)}.focus\:border-purple-4\/40:focus{border-color:rgb(var(--purple-4)/.4)}.focus\:border-purple-4\/5:focus{border-color:rgb(var(--purple-4)/.05)}.focus\:border-purple-4\/50:focus{border-color:rgb(var(--purple-4)/.5)}.focus\:border-purple-4\/60:focus{border-color:rgb(var(--purple-4)/.6)}.focus\:border-purple-4\/70:focus{border-color:rgb(var(--purple-4)/.7)}.focus\:border-purple-4\/75:focus{border-color:rgb(var(--purple-4)/.75)}.focus\:border-purple-4\/80:focus{border-color:rgb(var(--purple-4)/.8)}.focus\:border-purple-4\/90:focus{border-color:rgb(var(--purple-4)/.9)}.focus\:border-purple-4\/95:focus{border-color:rgb(var(--purple-4)/.95)}.focus\:border-purple-5\/0:focus{border-color:rgb(var(--purple-5)/0)}.focus\:border-purple-5\/10:focus{border-color:rgb(var(--purple-5)/.1)}.focus\:border-purple-5\/100:focus{border-color:rgb(var(--purple-5)/1)}.focus\:border-purple-5\/20:focus{border-color:rgb(var(--purple-5)/.2)}.focus\:border-purple-5\/25:focus{border-color:rgb(var(--purple-5)/.25)}.focus\:border-purple-5\/30:focus{border-color:rgb(var(--purple-5)/.3)}.focus\:border-purple-5\/40:focus{border-color:rgb(var(--purple-5)/.4)}.focus\:border-purple-5\/5:focus{border-color:rgb(var(--purple-5)/.05)}.focus\:border-purple-5\/50:focus{border-color:rgb(var(--purple-5)/.5)}.focus\:border-purple-5\/60:focus{border-color:rgb(var(--purple-5)/.6)}.focus\:border-purple-5\/70:focus{border-color:rgb(var(--purple-5)/.7)}.focus\:border-purple-5\/75:focus{border-color:rgb(var(--purple-5)/.75)}.focus\:border-purple-5\/80:focus{border-color:rgb(var(--purple-5)/.8)}.focus\:border-purple-5\/90:focus{border-color:rgb(var(--purple-5)/.9)}.focus\:border-purple-5\/95:focus{border-color:rgb(var(--purple-5)/.95)}.focus\:border-purple-6\/0:focus{border-color:rgb(var(--purple-6)/0)}.focus\:border-purple-6\/10:focus{border-color:rgb(var(--purple-6)/.1)}.focus\:border-purple-6\/100:focus{border-color:rgb(var(--purple-6)/1)}.focus\:border-purple-6\/20:focus{border-color:rgb(var(--purple-6)/.2)}.focus\:border-purple-6\/25:focus{border-color:rgb(var(--purple-6)/.25)}.focus\:border-purple-6\/30:focus{border-color:rgb(var(--purple-6)/.3)}.focus\:border-purple-6\/40:focus{border-color:rgb(var(--purple-6)/.4)}.focus\:border-purple-6\/5:focus{border-color:rgb(var(--purple-6)/.05)}.focus\:border-purple-6\/50:focus{border-color:rgb(var(--purple-6)/.5)}.focus\:border-purple-6\/60:focus{border-color:rgb(var(--purple-6)/.6)}.focus\:border-purple-6\/70:focus{border-color:rgb(var(--purple-6)/.7)}.focus\:border-purple-6\/75:focus{border-color:rgb(var(--purple-6)/.75)}.focus\:border-purple-6\/80:focus{border-color:rgb(var(--purple-6)/.8)}.focus\:border-purple-6\/90:focus{border-color:rgb(var(--purple-6)/.9)}.focus\:border-purple-6\/95:focus{border-color:rgb(var(--purple-6)/.95)}.focus\:border-purple-7\/0:focus{border-color:rgb(var(--purple-7)/0)}.focus\:border-purple-7\/10:focus{border-color:rgb(var(--purple-7)/.1)}.focus\:border-purple-7\/100:focus{border-color:rgb(var(--purple-7)/1)}.focus\:border-purple-7\/20:focus{border-color:rgb(var(--purple-7)/.2)}.focus\:border-purple-7\/25:focus{border-color:rgb(var(--purple-7)/.25)}.focus\:border-purple-7\/30:focus{border-color:rgb(var(--purple-7)/.3)}.focus\:border-purple-7\/40:focus{border-color:rgb(var(--purple-7)/.4)}.focus\:border-purple-7\/5:focus{border-color:rgb(var(--purple-7)/.05)}.focus\:border-purple-7\/50:focus{border-color:rgb(var(--purple-7)/.5)}.focus\:border-purple-7\/60:focus{border-color:rgb(var(--purple-7)/.6)}.focus\:border-purple-7\/70:focus{border-color:rgb(var(--purple-7)/.7)}.focus\:border-purple-7\/75:focus{border-color:rgb(var(--purple-7)/.75)}.focus\:border-purple-7\/80:focus{border-color:rgb(var(--purple-7)/.8)}.focus\:border-purple-7\/90:focus{border-color:rgb(var(--purple-7)/.9)}.focus\:border-purple-7\/95:focus{border-color:rgb(var(--purple-7)/.95)}.focus\:border-purple-8\/0:focus{border-color:rgb(var(--purple-8)/0)}.focus\:border-purple-8\/10:focus{border-color:rgb(var(--purple-8)/.1)}.focus\:border-purple-8\/100:focus{border-color:rgb(var(--purple-8)/1)}.focus\:border-purple-8\/20:focus{border-color:rgb(var(--purple-8)/.2)}.focus\:border-purple-8\/25:focus{border-color:rgb(var(--purple-8)/.25)}.focus\:border-purple-8\/30:focus{border-color:rgb(var(--purple-8)/.3)}.focus\:border-purple-8\/40:focus{border-color:rgb(var(--purple-8)/.4)}.focus\:border-purple-8\/5:focus{border-color:rgb(var(--purple-8)/.05)}.focus\:border-purple-8\/50:focus{border-color:rgb(var(--purple-8)/.5)}.focus\:border-purple-8\/60:focus{border-color:rgb(var(--purple-8)/.6)}.focus\:border-purple-8\/70:focus{border-color:rgb(var(--purple-8)/.7)}.focus\:border-purple-8\/75:focus{border-color:rgb(var(--purple-8)/.75)}.focus\:border-purple-8\/80:focus{border-color:rgb(var(--purple-8)/.8)}.focus\:border-purple-8\/90:focus{border-color:rgb(var(--purple-8)/.9)}.focus\:border-purple-8\/95:focus{border-color:rgb(var(--purple-8)/.95)}.focus\:border-purple-9\/0:focus{border-color:rgb(var(--purple-9)/0)}.focus\:border-purple-9\/10:focus{border-color:rgb(var(--purple-9)/.1)}.focus\:border-purple-9\/100:focus{border-color:rgb(var(--purple-9)/1)}.focus\:border-purple-9\/20:focus{border-color:rgb(var(--purple-9)/.2)}.focus\:border-purple-9\/25:focus{border-color:rgb(var(--purple-9)/.25)}.focus\:border-purple-9\/30:focus{border-color:rgb(var(--purple-9)/.3)}.focus\:border-purple-9\/40:focus{border-color:rgb(var(--purple-9)/.4)}.focus\:border-purple-9\/5:focus{border-color:rgb(var(--purple-9)/.05)}.focus\:border-purple-9\/50:focus{border-color:rgb(var(--purple-9)/.5)}.focus\:border-purple-9\/60:focus{border-color:rgb(var(--purple-9)/.6)}.focus\:border-purple-9\/70:focus{border-color:rgb(var(--purple-9)/.7)}.focus\:border-purple-9\/75:focus{border-color:rgb(var(--purple-9)/.75)}.focus\:border-purple-9\/80:focus{border-color:rgb(var(--purple-9)/.8)}.focus\:border-purple-9\/90:focus{border-color:rgb(var(--purple-9)/.9)}.focus\:border-purple-9\/95:focus{border-color:rgb(var(--purple-9)/.95)}.focus\:border-red-1\/0:focus{border-color:rgb(var(--red-1)/0)}.focus\:border-red-1\/10:focus{border-color:rgb(var(--red-1)/.1)}.focus\:border-red-1\/100:focus{border-color:rgb(var(--red-1)/1)}.focus\:border-red-1\/20:focus{border-color:rgb(var(--red-1)/.2)}.focus\:border-red-1\/25:focus{border-color:rgb(var(--red-1)/.25)}.focus\:border-red-1\/30:focus{border-color:rgb(var(--red-1)/.3)}.focus\:border-red-1\/40:focus{border-color:rgb(var(--red-1)/.4)}.focus\:border-red-1\/5:focus{border-color:rgb(var(--red-1)/.05)}.focus\:border-red-1\/50:focus{border-color:rgb(var(--red-1)/.5)}.focus\:border-red-1\/60:focus{border-color:rgb(var(--red-1)/.6)}.focus\:border-red-1\/70:focus{border-color:rgb(var(--red-1)/.7)}.focus\:border-red-1\/75:focus{border-color:rgb(var(--red-1)/.75)}.focus\:border-red-1\/80:focus{border-color:rgb(var(--red-1)/.8)}.focus\:border-red-1\/90:focus{border-color:rgb(var(--red-1)/.9)}.focus\:border-red-1\/95:focus{border-color:rgb(var(--red-1)/.95)}.focus\:border-red-10\/0:focus{border-color:rgb(var(--red-10)/0)}.focus\:border-red-10\/10:focus{border-color:rgb(var(--red-10)/.1)}.focus\:border-red-10\/100:focus{border-color:rgb(var(--red-10)/1)}.focus\:border-red-10\/20:focus{border-color:rgb(var(--red-10)/.2)}.focus\:border-red-10\/25:focus{border-color:rgb(var(--red-10)/.25)}.focus\:border-red-10\/30:focus{border-color:rgb(var(--red-10)/.3)}.focus\:border-red-10\/40:focus{border-color:rgb(var(--red-10)/.4)}.focus\:border-red-10\/5:focus{border-color:rgb(var(--red-10)/.05)}.focus\:border-red-10\/50:focus{border-color:rgb(var(--red-10)/.5)}.focus\:border-red-10\/60:focus{border-color:rgb(var(--red-10)/.6)}.focus\:border-red-10\/70:focus{border-color:rgb(var(--red-10)/.7)}.focus\:border-red-10\/75:focus{border-color:rgb(var(--red-10)/.75)}.focus\:border-red-10\/80:focus{border-color:rgb(var(--red-10)/.8)}.focus\:border-red-10\/90:focus{border-color:rgb(var(--red-10)/.9)}.focus\:border-red-10\/95:focus{border-color:rgb(var(--red-10)/.95)}.focus\:border-red-2\/0:focus{border-color:rgb(var(--red-2)/0)}.focus\:border-red-2\/10:focus{border-color:rgb(var(--red-2)/.1)}.focus\:border-red-2\/100:focus{border-color:rgb(var(--red-2)/1)}.focus\:border-red-2\/20:focus{border-color:rgb(var(--red-2)/.2)}.focus\:border-red-2\/25:focus{border-color:rgb(var(--red-2)/.25)}.focus\:border-red-2\/30:focus{border-color:rgb(var(--red-2)/.3)}.focus\:border-red-2\/40:focus{border-color:rgb(var(--red-2)/.4)}.focus\:border-red-2\/5:focus{border-color:rgb(var(--red-2)/.05)}.focus\:border-red-2\/50:focus{border-color:rgb(var(--red-2)/.5)}.focus\:border-red-2\/60:focus{border-color:rgb(var(--red-2)/.6)}.focus\:border-red-2\/70:focus{border-color:rgb(var(--red-2)/.7)}.focus\:border-red-2\/75:focus{border-color:rgb(var(--red-2)/.75)}.focus\:border-red-2\/80:focus{border-color:rgb(var(--red-2)/.8)}.focus\:border-red-2\/90:focus{border-color:rgb(var(--red-2)/.9)}.focus\:border-red-2\/95:focus{border-color:rgb(var(--red-2)/.95)}.focus\:border-red-3\/0:focus{border-color:rgb(var(--red-3)/0)}.focus\:border-red-3\/10:focus{border-color:rgb(var(--red-3)/.1)}.focus\:border-red-3\/100:focus{border-color:rgb(var(--red-3)/1)}.focus\:border-red-3\/20:focus{border-color:rgb(var(--red-3)/.2)}.focus\:border-red-3\/25:focus{border-color:rgb(var(--red-3)/.25)}.focus\:border-red-3\/30:focus{border-color:rgb(var(--red-3)/.3)}.focus\:border-red-3\/40:focus{border-color:rgb(var(--red-3)/.4)}.focus\:border-red-3\/5:focus{border-color:rgb(var(--red-3)/.05)}.focus\:border-red-3\/50:focus{border-color:rgb(var(--red-3)/.5)}.focus\:border-red-3\/60:focus{border-color:rgb(var(--red-3)/.6)}.focus\:border-red-3\/70:focus{border-color:rgb(var(--red-3)/.7)}.focus\:border-red-3\/75:focus{border-color:rgb(var(--red-3)/.75)}.focus\:border-red-3\/80:focus{border-color:rgb(var(--red-3)/.8)}.focus\:border-red-3\/90:focus{border-color:rgb(var(--red-3)/.9)}.focus\:border-red-3\/95:focus{border-color:rgb(var(--red-3)/.95)}.focus\:border-red-4\/0:focus{border-color:rgb(var(--red-4)/0)}.focus\:border-red-4\/10:focus{border-color:rgb(var(--red-4)/.1)}.focus\:border-red-4\/100:focus{border-color:rgb(var(--red-4)/1)}.focus\:border-red-4\/20:focus{border-color:rgb(var(--red-4)/.2)}.focus\:border-red-4\/25:focus{border-color:rgb(var(--red-4)/.25)}.focus\:border-red-4\/30:focus{border-color:rgb(var(--red-4)/.3)}.focus\:border-red-4\/40:focus{border-color:rgb(var(--red-4)/.4)}.focus\:border-red-4\/5:focus{border-color:rgb(var(--red-4)/.05)}.focus\:border-red-4\/50:focus{border-color:rgb(var(--red-4)/.5)}.focus\:border-red-4\/60:focus{border-color:rgb(var(--red-4)/.6)}.focus\:border-red-4\/70:focus{border-color:rgb(var(--red-4)/.7)}.focus\:border-red-4\/75:focus{border-color:rgb(var(--red-4)/.75)}.focus\:border-red-4\/80:focus{border-color:rgb(var(--red-4)/.8)}.focus\:border-red-4\/90:focus{border-color:rgb(var(--red-4)/.9)}.focus\:border-red-4\/95:focus{border-color:rgb(var(--red-4)/.95)}.focus\:border-red-5\/0:focus{border-color:rgb(var(--red-5)/0)}.focus\:border-red-5\/10:focus{border-color:rgb(var(--red-5)/.1)}.focus\:border-red-5\/100:focus{border-color:rgb(var(--red-5)/1)}.focus\:border-red-5\/20:focus{border-color:rgb(var(--red-5)/.2)}.focus\:border-red-5\/25:focus{border-color:rgb(var(--red-5)/.25)}.focus\:border-red-5\/30:focus{border-color:rgb(var(--red-5)/.3)}.focus\:border-red-5\/40:focus{border-color:rgb(var(--red-5)/.4)}.focus\:border-red-5\/5:focus{border-color:rgb(var(--red-5)/.05)}.focus\:border-red-5\/50:focus{border-color:rgb(var(--red-5)/.5)}.focus\:border-red-5\/60:focus{border-color:rgb(var(--red-5)/.6)}.focus\:border-red-5\/70:focus{border-color:rgb(var(--red-5)/.7)}.focus\:border-red-5\/75:focus{border-color:rgb(var(--red-5)/.75)}.focus\:border-red-5\/80:focus{border-color:rgb(var(--red-5)/.8)}.focus\:border-red-5\/90:focus{border-color:rgb(var(--red-5)/.9)}.focus\:border-red-5\/95:focus{border-color:rgb(var(--red-5)/.95)}.focus\:border-red-6\/0:focus{border-color:rgb(var(--red-6)/0)}.focus\:border-red-6\/10:focus{border-color:rgb(var(--red-6)/.1)}.focus\:border-red-6\/100:focus{border-color:rgb(var(--red-6)/1)}.focus\:border-red-6\/20:focus{border-color:rgb(var(--red-6)/.2)}.focus\:border-red-6\/25:focus{border-color:rgb(var(--red-6)/.25)}.focus\:border-red-6\/30:focus{border-color:rgb(var(--red-6)/.3)}.focus\:border-red-6\/40:focus{border-color:rgb(var(--red-6)/.4)}.focus\:border-red-6\/5:focus{border-color:rgb(var(--red-6)/.05)}.focus\:border-red-6\/50:focus{border-color:rgb(var(--red-6)/.5)}.focus\:border-red-6\/60:focus{border-color:rgb(var(--red-6)/.6)}.focus\:border-red-6\/70:focus{border-color:rgb(var(--red-6)/.7)}.focus\:border-red-6\/75:focus{border-color:rgb(var(--red-6)/.75)}.focus\:border-red-6\/80:focus{border-color:rgb(var(--red-6)/.8)}.focus\:border-red-6\/90:focus{border-color:rgb(var(--red-6)/.9)}.focus\:border-red-6\/95:focus{border-color:rgb(var(--red-6)/.95)}.focus\:border-red-7\/0:focus{border-color:rgb(var(--red-7)/0)}.focus\:border-red-7\/10:focus{border-color:rgb(var(--red-7)/.1)}.focus\:border-red-7\/100:focus{border-color:rgb(var(--red-7)/1)}.focus\:border-red-7\/20:focus{border-color:rgb(var(--red-7)/.2)}.focus\:border-red-7\/25:focus{border-color:rgb(var(--red-7)/.25)}.focus\:border-red-7\/30:focus{border-color:rgb(var(--red-7)/.3)}.focus\:border-red-7\/40:focus{border-color:rgb(var(--red-7)/.4)}.focus\:border-red-7\/5:focus{border-color:rgb(var(--red-7)/.05)}.focus\:border-red-7\/50:focus{border-color:rgb(var(--red-7)/.5)}.focus\:border-red-7\/60:focus{border-color:rgb(var(--red-7)/.6)}.focus\:border-red-7\/70:focus{border-color:rgb(var(--red-7)/.7)}.focus\:border-red-7\/75:focus{border-color:rgb(var(--red-7)/.75)}.focus\:border-red-7\/80:focus{border-color:rgb(var(--red-7)/.8)}.focus\:border-red-7\/90:focus{border-color:rgb(var(--red-7)/.9)}.focus\:border-red-7\/95:focus{border-color:rgb(var(--red-7)/.95)}.focus\:border-red-8\/0:focus{border-color:rgb(var(--red-8)/0)}.focus\:border-red-8\/10:focus{border-color:rgb(var(--red-8)/.1)}.focus\:border-red-8\/100:focus{border-color:rgb(var(--red-8)/1)}.focus\:border-red-8\/20:focus{border-color:rgb(var(--red-8)/.2)}.focus\:border-red-8\/25:focus{border-color:rgb(var(--red-8)/.25)}.focus\:border-red-8\/30:focus{border-color:rgb(var(--red-8)/.3)}.focus\:border-red-8\/40:focus{border-color:rgb(var(--red-8)/.4)}.focus\:border-red-8\/5:focus{border-color:rgb(var(--red-8)/.05)}.focus\:border-red-8\/50:focus{border-color:rgb(var(--red-8)/.5)}.focus\:border-red-8\/60:focus{border-color:rgb(var(--red-8)/.6)}.focus\:border-red-8\/70:focus{border-color:rgb(var(--red-8)/.7)}.focus\:border-red-8\/75:focus{border-color:rgb(var(--red-8)/.75)}.focus\:border-red-8\/80:focus{border-color:rgb(var(--red-8)/.8)}.focus\:border-red-8\/90:focus{border-color:rgb(var(--red-8)/.9)}.focus\:border-red-8\/95:focus{border-color:rgb(var(--red-8)/.95)}.focus\:border-red-9\/0:focus{border-color:rgb(var(--red-9)/0)}.focus\:border-red-9\/10:focus{border-color:rgb(var(--red-9)/.1)}.focus\:border-red-9\/100:focus{border-color:rgb(var(--red-9)/1)}.focus\:border-red-9\/20:focus{border-color:rgb(var(--red-9)/.2)}.focus\:border-red-9\/25:focus{border-color:rgb(var(--red-9)/.25)}.focus\:border-red-9\/30:focus{border-color:rgb(var(--red-9)/.3)}.focus\:border-red-9\/40:focus{border-color:rgb(var(--red-9)/.4)}.focus\:border-red-9\/5:focus{border-color:rgb(var(--red-9)/.05)}.focus\:border-red-9\/50:focus{border-color:rgb(var(--red-9)/.5)}.focus\:border-red-9\/60:focus{border-color:rgb(var(--red-9)/.6)}.focus\:border-red-9\/70:focus{border-color:rgb(var(--red-9)/.7)}.focus\:border-red-9\/75:focus{border-color:rgb(var(--red-9)/.75)}.focus\:border-red-9\/80:focus{border-color:rgb(var(--red-9)/.8)}.focus\:border-red-9\/90:focus{border-color:rgb(var(--red-9)/.9)}.focus\:border-red-9\/95:focus{border-color:rgb(var(--red-9)/.95)}.focus\:border-secondary:focus{--tw-border-opacity:1;border-color:rgb(var(--secondary)/var(--tw-border-opacity))}.focus\:border-secondary\/0:focus{border-color:rgb(var(--secondary)/0)}.focus\:border-secondary\/10:focus{border-color:rgb(var(--secondary)/.1)}.focus\:border-secondary\/100:focus{border-color:rgb(var(--secondary)/1)}.focus\:border-secondary\/20:focus{border-color:rgb(var(--secondary)/.2)}.focus\:border-secondary\/25:focus{border-color:rgb(var(--secondary)/.25)}.focus\:border-secondary\/30:focus{border-color:rgb(var(--secondary)/.3)}.focus\:border-secondary\/40:focus{border-color:rgb(var(--secondary)/.4)}.focus\:border-secondary\/5:focus{border-color:rgb(var(--secondary)/.05)}.focus\:border-secondary\/50:focus{border-color:rgb(var(--secondary)/.5)}.focus\:border-secondary\/60:focus{border-color:rgb(var(--secondary)/.6)}.focus\:border-secondary\/70:focus{border-color:rgb(var(--secondary)/.7)}.focus\:border-secondary\/75:focus{border-color:rgb(var(--secondary)/.75)}.focus\:border-secondary\/80:focus{border-color:rgb(var(--secondary)/.8)}.focus\:border-secondary\/90:focus{border-color:rgb(var(--secondary)/.9)}.focus\:border-secondary\/95:focus{border-color:rgb(var(--secondary)/.95)}.focus\:border-slate-1\/0:focus{border-color:rgb(var(--slate-1)/0)}.focus\:border-slate-1\/10:focus{border-color:rgb(var(--slate-1)/.1)}.focus\:border-slate-1\/100:focus{border-color:rgb(var(--slate-1)/1)}.focus\:border-slate-1\/20:focus{border-color:rgb(var(--slate-1)/.2)}.focus\:border-slate-1\/25:focus{border-color:rgb(var(--slate-1)/.25)}.focus\:border-slate-1\/30:focus{border-color:rgb(var(--slate-1)/.3)}.focus\:border-slate-1\/40:focus{border-color:rgb(var(--slate-1)/.4)}.focus\:border-slate-1\/5:focus{border-color:rgb(var(--slate-1)/.05)}.focus\:border-slate-1\/50:focus{border-color:rgb(var(--slate-1)/.5)}.focus\:border-slate-1\/60:focus{border-color:rgb(var(--slate-1)/.6)}.focus\:border-slate-1\/70:focus{border-color:rgb(var(--slate-1)/.7)}.focus\:border-slate-1\/75:focus{border-color:rgb(var(--slate-1)/.75)}.focus\:border-slate-1\/80:focus{border-color:rgb(var(--slate-1)/.8)}.focus\:border-slate-1\/90:focus{border-color:rgb(var(--slate-1)/.9)}.focus\:border-slate-1\/95:focus{border-color:rgb(var(--slate-1)/.95)}.focus\:border-slate-10\/0:focus{border-color:rgb(var(--slate-10)/0)}.focus\:border-slate-10\/10:focus{border-color:rgb(var(--slate-10)/.1)}.focus\:border-slate-10\/100:focus{border-color:rgb(var(--slate-10)/1)}.focus\:border-slate-10\/20:focus{border-color:rgb(var(--slate-10)/.2)}.focus\:border-slate-10\/25:focus{border-color:rgb(var(--slate-10)/.25)}.focus\:border-slate-10\/30:focus{border-color:rgb(var(--slate-10)/.3)}.focus\:border-slate-10\/40:focus{border-color:rgb(var(--slate-10)/.4)}.focus\:border-slate-10\/5:focus{border-color:rgb(var(--slate-10)/.05)}.focus\:border-slate-10\/50:focus{border-color:rgb(var(--slate-10)/.5)}.focus\:border-slate-10\/60:focus{border-color:rgb(var(--slate-10)/.6)}.focus\:border-slate-10\/70:focus{border-color:rgb(var(--slate-10)/.7)}.focus\:border-slate-10\/75:focus{border-color:rgb(var(--slate-10)/.75)}.focus\:border-slate-10\/80:focus{border-color:rgb(var(--slate-10)/.8)}.focus\:border-slate-10\/90:focus{border-color:rgb(var(--slate-10)/.9)}.focus\:border-slate-10\/95:focus{border-color:rgb(var(--slate-10)/.95)}.focus\:border-slate-2\/0:focus{border-color:rgb(var(--slate-2)/0)}.focus\:border-slate-2\/10:focus{border-color:rgb(var(--slate-2)/.1)}.focus\:border-slate-2\/100:focus{border-color:rgb(var(--slate-2)/1)}.focus\:border-slate-2\/20:focus{border-color:rgb(var(--slate-2)/.2)}.focus\:border-slate-2\/25:focus{border-color:rgb(var(--slate-2)/.25)}.focus\:border-slate-2\/30:focus{border-color:rgb(var(--slate-2)/.3)}.focus\:border-slate-2\/40:focus{border-color:rgb(var(--slate-2)/.4)}.focus\:border-slate-2\/5:focus{border-color:rgb(var(--slate-2)/.05)}.focus\:border-slate-2\/50:focus{border-color:rgb(var(--slate-2)/.5)}.focus\:border-slate-2\/60:focus{border-color:rgb(var(--slate-2)/.6)}.focus\:border-slate-2\/70:focus{border-color:rgb(var(--slate-2)/.7)}.focus\:border-slate-2\/75:focus{border-color:rgb(var(--slate-2)/.75)}.focus\:border-slate-2\/80:focus{border-color:rgb(var(--slate-2)/.8)}.focus\:border-slate-2\/90:focus{border-color:rgb(var(--slate-2)/.9)}.focus\:border-slate-2\/95:focus{border-color:rgb(var(--slate-2)/.95)}.focus\:border-slate-3\/0:focus{border-color:rgb(var(--slate-3)/0)}.focus\:border-slate-3\/10:focus{border-color:rgb(var(--slate-3)/.1)}.focus\:border-slate-3\/100:focus{border-color:rgb(var(--slate-3)/1)}.focus\:border-slate-3\/20:focus{border-color:rgb(var(--slate-3)/.2)}.focus\:border-slate-3\/25:focus{border-color:rgb(var(--slate-3)/.25)}.focus\:border-slate-3\/30:focus{border-color:rgb(var(--slate-3)/.3)}.focus\:border-slate-3\/40:focus{border-color:rgb(var(--slate-3)/.4)}.focus\:border-slate-3\/5:focus{border-color:rgb(var(--slate-3)/.05)}.focus\:border-slate-3\/50:focus{border-color:rgb(var(--slate-3)/.5)}.focus\:border-slate-3\/60:focus{border-color:rgb(var(--slate-3)/.6)}.focus\:border-slate-3\/70:focus{border-color:rgb(var(--slate-3)/.7)}.focus\:border-slate-3\/75:focus{border-color:rgb(var(--slate-3)/.75)}.focus\:border-slate-3\/80:focus{border-color:rgb(var(--slate-3)/.8)}.focus\:border-slate-3\/90:focus{border-color:rgb(var(--slate-3)/.9)}.focus\:border-slate-3\/95:focus{border-color:rgb(var(--slate-3)/.95)}.focus\:border-slate-4\/0:focus{border-color:rgb(var(--slate-4)/0)}.focus\:border-slate-4\/10:focus{border-color:rgb(var(--slate-4)/.1)}.focus\:border-slate-4\/100:focus{border-color:rgb(var(--slate-4)/1)}.focus\:border-slate-4\/20:focus{border-color:rgb(var(--slate-4)/.2)}.focus\:border-slate-4\/25:focus{border-color:rgb(var(--slate-4)/.25)}.focus\:border-slate-4\/30:focus{border-color:rgb(var(--slate-4)/.3)}.focus\:border-slate-4\/40:focus{border-color:rgb(var(--slate-4)/.4)}.focus\:border-slate-4\/5:focus{border-color:rgb(var(--slate-4)/.05)}.focus\:border-slate-4\/50:focus{border-color:rgb(var(--slate-4)/.5)}.focus\:border-slate-4\/60:focus{border-color:rgb(var(--slate-4)/.6)}.focus\:border-slate-4\/70:focus{border-color:rgb(var(--slate-4)/.7)}.focus\:border-slate-4\/75:focus{border-color:rgb(var(--slate-4)/.75)}.focus\:border-slate-4\/80:focus{border-color:rgb(var(--slate-4)/.8)}.focus\:border-slate-4\/90:focus{border-color:rgb(var(--slate-4)/.9)}.focus\:border-slate-4\/95:focus{border-color:rgb(var(--slate-4)/.95)}.focus\:border-slate-5\/0:focus{border-color:rgb(var(--slate-5)/0)}.focus\:border-slate-5\/10:focus{border-color:rgb(var(--slate-5)/.1)}.focus\:border-slate-5\/100:focus{border-color:rgb(var(--slate-5)/1)}.focus\:border-slate-5\/20:focus{border-color:rgb(var(--slate-5)/.2)}.focus\:border-slate-5\/25:focus{border-color:rgb(var(--slate-5)/.25)}.focus\:border-slate-5\/30:focus{border-color:rgb(var(--slate-5)/.3)}.focus\:border-slate-5\/40:focus{border-color:rgb(var(--slate-5)/.4)}.focus\:border-slate-5\/5:focus{border-color:rgb(var(--slate-5)/.05)}.focus\:border-slate-5\/50:focus{border-color:rgb(var(--slate-5)/.5)}.focus\:border-slate-5\/60:focus{border-color:rgb(var(--slate-5)/.6)}.focus\:border-slate-5\/70:focus{border-color:rgb(var(--slate-5)/.7)}.focus\:border-slate-5\/75:focus{border-color:rgb(var(--slate-5)/.75)}.focus\:border-slate-5\/80:focus{border-color:rgb(var(--slate-5)/.8)}.focus\:border-slate-5\/90:focus{border-color:rgb(var(--slate-5)/.9)}.focus\:border-slate-5\/95:focus{border-color:rgb(var(--slate-5)/.95)}.focus\:border-slate-6\/0:focus{border-color:rgb(var(--slate-6)/0)}.focus\:border-slate-6\/10:focus{border-color:rgb(var(--slate-6)/.1)}.focus\:border-slate-6\/100:focus{border-color:rgb(var(--slate-6)/1)}.focus\:border-slate-6\/20:focus{border-color:rgb(var(--slate-6)/.2)}.focus\:border-slate-6\/25:focus{border-color:rgb(var(--slate-6)/.25)}.focus\:border-slate-6\/30:focus{border-color:rgb(var(--slate-6)/.3)}.focus\:border-slate-6\/40:focus{border-color:rgb(var(--slate-6)/.4)}.focus\:border-slate-6\/5:focus{border-color:rgb(var(--slate-6)/.05)}.focus\:border-slate-6\/50:focus{border-color:rgb(var(--slate-6)/.5)}.focus\:border-slate-6\/60:focus{border-color:rgb(var(--slate-6)/.6)}.focus\:border-slate-6\/70:focus{border-color:rgb(var(--slate-6)/.7)}.focus\:border-slate-6\/75:focus{border-color:rgb(var(--slate-6)/.75)}.focus\:border-slate-6\/80:focus{border-color:rgb(var(--slate-6)/.8)}.focus\:border-slate-6\/90:focus{border-color:rgb(var(--slate-6)/.9)}.focus\:border-slate-6\/95:focus{border-color:rgb(var(--slate-6)/.95)}.focus\:border-slate-7\/0:focus{border-color:rgb(var(--slate-7)/0)}.focus\:border-slate-7\/10:focus{border-color:rgb(var(--slate-7)/.1)}.focus\:border-slate-7\/100:focus{border-color:rgb(var(--slate-7)/1)}.focus\:border-slate-7\/20:focus{border-color:rgb(var(--slate-7)/.2)}.focus\:border-slate-7\/25:focus{border-color:rgb(var(--slate-7)/.25)}.focus\:border-slate-7\/30:focus{border-color:rgb(var(--slate-7)/.3)}.focus\:border-slate-7\/40:focus{border-color:rgb(var(--slate-7)/.4)}.focus\:border-slate-7\/5:focus{border-color:rgb(var(--slate-7)/.05)}.focus\:border-slate-7\/50:focus{border-color:rgb(var(--slate-7)/.5)}.focus\:border-slate-7\/60:focus{border-color:rgb(var(--slate-7)/.6)}.focus\:border-slate-7\/70:focus{border-color:rgb(var(--slate-7)/.7)}.focus\:border-slate-7\/75:focus{border-color:rgb(var(--slate-7)/.75)}.focus\:border-slate-7\/80:focus{border-color:rgb(var(--slate-7)/.8)}.focus\:border-slate-7\/90:focus{border-color:rgb(var(--slate-7)/.9)}.focus\:border-slate-7\/95:focus{border-color:rgb(var(--slate-7)/.95)}.focus\:border-slate-8\/0:focus{border-color:rgb(var(--slate-8)/0)}.focus\:border-slate-8\/10:focus{border-color:rgb(var(--slate-8)/.1)}.focus\:border-slate-8\/100:focus{border-color:rgb(var(--slate-8)/1)}.focus\:border-slate-8\/20:focus{border-color:rgb(var(--slate-8)/.2)}.focus\:border-slate-8\/25:focus{border-color:rgb(var(--slate-8)/.25)}.focus\:border-slate-8\/30:focus{border-color:rgb(var(--slate-8)/.3)}.focus\:border-slate-8\/40:focus{border-color:rgb(var(--slate-8)/.4)}.focus\:border-slate-8\/5:focus{border-color:rgb(var(--slate-8)/.05)}.focus\:border-slate-8\/50:focus{border-color:rgb(var(--slate-8)/.5)}.focus\:border-slate-8\/60:focus{border-color:rgb(var(--slate-8)/.6)}.focus\:border-slate-8\/70:focus{border-color:rgb(var(--slate-8)/.7)}.focus\:border-slate-8\/75:focus{border-color:rgb(var(--slate-8)/.75)}.focus\:border-slate-8\/80:focus{border-color:rgb(var(--slate-8)/.8)}.focus\:border-slate-8\/90:focus{border-color:rgb(var(--slate-8)/.9)}.focus\:border-slate-8\/95:focus{border-color:rgb(var(--slate-8)/.95)}.focus\:border-slate-9\/0:focus{border-color:rgb(var(--slate-9)/0)}.focus\:border-slate-9\/10:focus{border-color:rgb(var(--slate-9)/.1)}.focus\:border-slate-9\/100:focus{border-color:rgb(var(--slate-9)/1)}.focus\:border-slate-9\/20:focus{border-color:rgb(var(--slate-9)/.2)}.focus\:border-slate-9\/25:focus{border-color:rgb(var(--slate-9)/.25)}.focus\:border-slate-9\/30:focus{border-color:rgb(var(--slate-9)/.3)}.focus\:border-slate-9\/40:focus{border-color:rgb(var(--slate-9)/.4)}.focus\:border-slate-9\/5:focus{border-color:rgb(var(--slate-9)/.05)}.focus\:border-slate-9\/50:focus{border-color:rgb(var(--slate-9)/.5)}.focus\:border-slate-9\/60:focus{border-color:rgb(var(--slate-9)/.6)}.focus\:border-slate-9\/70:focus{border-color:rgb(var(--slate-9)/.7)}.focus\:border-slate-9\/75:focus{border-color:rgb(var(--slate-9)/.75)}.focus\:border-slate-9\/80:focus{border-color:rgb(var(--slate-9)/.8)}.focus\:border-slate-9\/90:focus{border-color:rgb(var(--slate-9)/.9)}.focus\:border-slate-9\/95:focus{border-color:rgb(var(--slate-9)/.95)}.focus\:border-success:focus{--tw-border-opacity:1;border-color:rgb(var(--success)/var(--tw-border-opacity))}.focus\:border-success\/0:focus{border-color:rgb(var(--success)/0)}.focus\:border-success\/10:focus{border-color:rgb(var(--success)/.1)}.focus\:border-success\/100:focus{border-color:rgb(var(--success)/1)}.focus\:border-success\/20:focus{border-color:rgb(var(--success)/.2)}.focus\:border-success\/25:focus{border-color:rgb(var(--success)/.25)}.focus\:border-success\/30:focus{border-color:rgb(var(--success)/.3)}.focus\:border-success\/40:focus{border-color:rgb(var(--success)/.4)}.focus\:border-success\/5:focus{border-color:rgb(var(--success)/.05)}.focus\:border-success\/50:focus{border-color:rgb(var(--success)/.5)}.focus\:border-success\/60:focus{border-color:rgb(var(--success)/.6)}.focus\:border-success\/70:focus{border-color:rgb(var(--success)/.7)}.focus\:border-success\/75:focus{border-color:rgb(var(--success)/.75)}.focus\:border-success\/80:focus{border-color:rgb(var(--success)/.8)}.focus\:border-success\/90:focus{border-color:rgb(var(--success)/.9)}.focus\:border-success\/95:focus{border-color:rgb(var(--success)/.95)}.focus\:border-warning:focus{--tw-border-opacity:1;border-color:rgb(var(--warning)/var(--tw-border-opacity))}.focus\:border-warning\/0:focus{border-color:rgb(var(--warning)/0)}.focus\:border-warning\/10:focus{border-color:rgb(var(--warning)/.1)}.focus\:border-warning\/100:focus{border-color:rgb(var(--warning)/1)}.focus\:border-warning\/20:focus{border-color:rgb(var(--warning)/.2)}.focus\:border-warning\/25:focus{border-color:rgb(var(--warning)/.25)}.focus\:border-warning\/30:focus{border-color:rgb(var(--warning)/.3)}.focus\:border-warning\/40:focus{border-color:rgb(var(--warning)/.4)}.focus\:border-warning\/5:focus{border-color:rgb(var(--warning)/.05)}.focus\:border-warning\/50:focus{border-color:rgb(var(--warning)/.5)}.focus\:border-warning\/60:focus{border-color:rgb(var(--warning)/.6)}.focus\:border-warning\/70:focus{border-color:rgb(var(--warning)/.7)}.focus\:border-warning\/75:focus{border-color:rgb(var(--warning)/.75)}.focus\:border-warning\/80:focus{border-color:rgb(var(--warning)/.8)}.focus\:border-warning\/90:focus{border-color:rgb(var(--warning)/.9)}.focus\:border-warning\/95:focus{border-color:rgb(var(--warning)/.95)}.focus\:border-white:focus{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.focus\:border-white\/0:focus{border-color:hsla(0,0%,100%,0)}.focus\:border-white\/10:focus{border-color:hsla(0,0%,100%,.1)}.focus\:border-white\/100:focus{border-color:#fff}.focus\:border-white\/20:focus{border-color:hsla(0,0%,100%,.2)}.focus\:border-white\/25:focus{border-color:hsla(0,0%,100%,.25)}.focus\:border-white\/30:focus{border-color:hsla(0,0%,100%,.3)}.focus\:border-white\/40:focus{border-color:hsla(0,0%,100%,.4)}.focus\:border-white\/5:focus{border-color:hsla(0,0%,100%,.05)}.focus\:border-white\/50:focus{border-color:hsla(0,0%,100%,.5)}.focus\:border-white\/60:focus{border-color:hsla(0,0%,100%,.6)}.focus\:border-white\/70:focus{border-color:hsla(0,0%,100%,.7)}.focus\:border-white\/75:focus{border-color:hsla(0,0%,100%,.75)}.focus\:border-white\/80:focus{border-color:hsla(0,0%,100%,.8)}.focus\:border-white\/90:focus{border-color:hsla(0,0%,100%,.9)}.focus\:border-white\/95:focus{border-color:hsla(0,0%,100%,.95)}.focus\:border-whiteInverted:focus{--tw-border-opacity:1;border-color:rgb(var(--whiteInverted)/var(--tw-border-opacity))}.focus\:border-whiteInverted\/0:focus{border-color:rgb(var(--whiteInverted)/0)}.focus\:border-whiteInverted\/10:focus{border-color:rgb(var(--whiteInverted)/.1)}.focus\:border-whiteInverted\/100:focus{border-color:rgb(var(--whiteInverted)/1)}.focus\:border-whiteInverted\/20:focus{border-color:rgb(var(--whiteInverted)/.2)}.focus\:border-whiteInverted\/25:focus{border-color:rgb(var(--whiteInverted)/.25)}.focus\:border-whiteInverted\/30:focus{border-color:rgb(var(--whiteInverted)/.3)}.focus\:border-whiteInverted\/40:focus{border-color:rgb(var(--whiteInverted)/.4)}.focus\:border-whiteInverted\/5:focus{border-color:rgb(var(--whiteInverted)/.05)}.focus\:border-whiteInverted\/50:focus{border-color:rgb(var(--whiteInverted)/.5)}.focus\:border-whiteInverted\/60:focus{border-color:rgb(var(--whiteInverted)/.6)}.focus\:border-whiteInverted\/70:focus{border-color:rgb(var(--whiteInverted)/.7)}.focus\:border-whiteInverted\/75:focus{border-color:rgb(var(--whiteInverted)/.75)}.focus\:border-whiteInverted\/80:focus{border-color:rgb(var(--whiteInverted)/.8)}.focus\:border-whiteInverted\/90:focus{border-color:rgb(var(--whiteInverted)/.9)}.focus\:border-whiteInverted\/95:focus{border-color:rgb(var(--whiteInverted)/.95)}.focus\:bg-backgroundPrimary:focus{--tw-bg-opacity:1;background-color:rgb(var(--backgroundPrimary)/var(--tw-bg-opacity))}.focus\:bg-backgroundPrimary\/0:focus{background-color:rgb(var(--backgroundPrimary)/0)}.focus\:bg-backgroundPrimary\/10:focus{background-color:rgb(var(--backgroundPrimary)/.1)}.focus\:bg-backgroundPrimary\/100:focus{background-color:rgb(var(--backgroundPrimary)/1)}.focus\:bg-backgroundPrimary\/20:focus{background-color:rgb(var(--backgroundPrimary)/.2)}.focus\:bg-backgroundPrimary\/25:focus{background-color:rgb(var(--backgroundPrimary)/.25)}.focus\:bg-backgroundPrimary\/30:focus{background-color:rgb(var(--backgroundPrimary)/.3)}.focus\:bg-backgroundPrimary\/40:focus{background-color:rgb(var(--backgroundPrimary)/.4)}.focus\:bg-backgroundPrimary\/5:focus{background-color:rgb(var(--backgroundPrimary)/.05)}.focus\:bg-backgroundPrimary\/50:focus{background-color:rgb(var(--backgroundPrimary)/.5)}.focus\:bg-backgroundPrimary\/60:focus{background-color:rgb(var(--backgroundPrimary)/.6)}.focus\:bg-backgroundPrimary\/70:focus{background-color:rgb(var(--backgroundPrimary)/.7)}.focus\:bg-backgroundPrimary\/75:focus{background-color:rgb(var(--backgroundPrimary)/.75)}.focus\:bg-backgroundPrimary\/80:focus{background-color:rgb(var(--backgroundPrimary)/.8)}.focus\:bg-backgroundPrimary\/90:focus{background-color:rgb(var(--backgroundPrimary)/.9)}.focus\:bg-backgroundPrimary\/95:focus{background-color:rgb(var(--backgroundPrimary)/.95)}.focus\:bg-backgroundSecondary:focus{--tw-bg-opacity:1;background-color:rgb(var(--backgroundSecondary)/var(--tw-bg-opacity))}.focus\:bg-backgroundSecondary\/0:focus{background-color:rgb(var(--backgroundSecondary)/0)}.focus\:bg-backgroundSecondary\/10:focus{background-color:rgb(var(--backgroundSecondary)/.1)}.focus\:bg-backgroundSecondary\/100:focus{background-color:rgb(var(--backgroundSecondary)/1)}.focus\:bg-backgroundSecondary\/20:focus{background-color:rgb(var(--backgroundSecondary)/.2)}.focus\:bg-backgroundSecondary\/25:focus{background-color:rgb(var(--backgroundSecondary)/.25)}.focus\:bg-backgroundSecondary\/30:focus{background-color:rgb(var(--backgroundSecondary)/.3)}.focus\:bg-backgroundSecondary\/40:focus{background-color:rgb(var(--backgroundSecondary)/.4)}.focus\:bg-backgroundSecondary\/5:focus{background-color:rgb(var(--backgroundSecondary)/.05)}.focus\:bg-backgroundSecondary\/50:focus{background-color:rgb(var(--backgroundSecondary)/.5)}.focus\:bg-backgroundSecondary\/60:focus{background-color:rgb(var(--backgroundSecondary)/.6)}.focus\:bg-backgroundSecondary\/70:focus{background-color:rgb(var(--backgroundSecondary)/.7)}.focus\:bg-backgroundSecondary\/75:focus{background-color:rgb(var(--backgroundSecondary)/.75)}.focus\:bg-backgroundSecondary\/80:focus{background-color:rgb(var(--backgroundSecondary)/.8)}.focus\:bg-backgroundSecondary\/90:focus{background-color:rgb(var(--backgroundSecondary)/.9)}.focus\:bg-backgroundSecondary\/95:focus{background-color:rgb(var(--backgroundSecondary)/.95)}.focus\:bg-black:focus{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.focus\:bg-black\/0:focus{background-color:transparent}.focus\:bg-black\/10:focus{background-color:rgba(0,0,0,.1)}.focus\:bg-black\/100:focus{background-color:#000}.focus\:bg-black\/20:focus{background-color:rgba(0,0,0,.2)}.focus\:bg-black\/25:focus{background-color:rgba(0,0,0,.25)}.focus\:bg-black\/30:focus{background-color:rgba(0,0,0,.3)}.focus\:bg-black\/40:focus{background-color:rgba(0,0,0,.4)}.focus\:bg-black\/5:focus{background-color:rgba(0,0,0,.05)}.focus\:bg-black\/50:focus{background-color:rgba(0,0,0,.5)}.focus\:bg-black\/60:focus{background-color:rgba(0,0,0,.6)}.focus\:bg-black\/70:focus{background-color:rgba(0,0,0,.7)}.focus\:bg-black\/75:focus{background-color:rgba(0,0,0,.75)}.focus\:bg-black\/80:focus{background-color:rgba(0,0,0,.8)}.focus\:bg-black\/90:focus{background-color:rgba(0,0,0,.9)}.focus\:bg-black\/95:focus{background-color:rgba(0,0,0,.95)}.focus\:bg-blackInverted:focus{--tw-bg-opacity:1;background-color:rgb(var(--blackInverted)/var(--tw-bg-opacity))}.focus\:bg-blackInverted\/0:focus{background-color:rgb(var(--blackInverted)/0)}.focus\:bg-blackInverted\/10:focus{background-color:rgb(var(--blackInverted)/.1)}.focus\:bg-blackInverted\/100:focus{background-color:rgb(var(--blackInverted)/1)}.focus\:bg-blackInverted\/20:focus{background-color:rgb(var(--blackInverted)/.2)}.focus\:bg-blackInverted\/25:focus{background-color:rgb(var(--blackInverted)/.25)}.focus\:bg-blackInverted\/30:focus{background-color:rgb(var(--blackInverted)/.3)}.focus\:bg-blackInverted\/40:focus{background-color:rgb(var(--blackInverted)/.4)}.focus\:bg-blackInverted\/5:focus{background-color:rgb(var(--blackInverted)/.05)}.focus\:bg-blackInverted\/50:focus{background-color:rgb(var(--blackInverted)/.5)}.focus\:bg-blackInverted\/60:focus{background-color:rgb(var(--blackInverted)/.6)}.focus\:bg-blackInverted\/70:focus{background-color:rgb(var(--blackInverted)/.7)}.focus\:bg-blackInverted\/75:focus{background-color:rgb(var(--blackInverted)/.75)}.focus\:bg-blackInverted\/80:focus{background-color:rgb(var(--blackInverted)/.8)}.focus\:bg-blackInverted\/90:focus{background-color:rgb(var(--blackInverted)/.9)}.focus\:bg-blackInverted\/95:focus{background-color:rgb(var(--blackInverted)/.95)}.focus\:bg-blue-1\/0:focus{background-color:rgb(var(--blue-1)/0)}.focus\:bg-blue-1\/10:focus{background-color:rgb(var(--blue-1)/.1)}.focus\:bg-blue-1\/100:focus{background-color:rgb(var(--blue-1)/1)}.focus\:bg-blue-1\/20:focus{background-color:rgb(var(--blue-1)/.2)}.focus\:bg-blue-1\/25:focus{background-color:rgb(var(--blue-1)/.25)}.focus\:bg-blue-1\/30:focus{background-color:rgb(var(--blue-1)/.3)}.focus\:bg-blue-1\/40:focus{background-color:rgb(var(--blue-1)/.4)}.focus\:bg-blue-1\/5:focus{background-color:rgb(var(--blue-1)/.05)}.focus\:bg-blue-1\/50:focus{background-color:rgb(var(--blue-1)/.5)}.focus\:bg-blue-1\/60:focus{background-color:rgb(var(--blue-1)/.6)}.focus\:bg-blue-1\/70:focus{background-color:rgb(var(--blue-1)/.7)}.focus\:bg-blue-1\/75:focus{background-color:rgb(var(--blue-1)/.75)}.focus\:bg-blue-1\/80:focus{background-color:rgb(var(--blue-1)/.8)}.focus\:bg-blue-1\/90:focus{background-color:rgb(var(--blue-1)/.9)}.focus\:bg-blue-1\/95:focus{background-color:rgb(var(--blue-1)/.95)}.focus\:bg-blue-10\/0:focus{background-color:rgb(var(--blue-10)/0)}.focus\:bg-blue-10\/10:focus{background-color:rgb(var(--blue-10)/.1)}.focus\:bg-blue-10\/100:focus{background-color:rgb(var(--blue-10)/1)}.focus\:bg-blue-10\/20:focus{background-color:rgb(var(--blue-10)/.2)}.focus\:bg-blue-10\/25:focus{background-color:rgb(var(--blue-10)/.25)}.focus\:bg-blue-10\/30:focus{background-color:rgb(var(--blue-10)/.3)}.focus\:bg-blue-10\/40:focus{background-color:rgb(var(--blue-10)/.4)}.focus\:bg-blue-10\/5:focus{background-color:rgb(var(--blue-10)/.05)}.focus\:bg-blue-10\/50:focus{background-color:rgb(var(--blue-10)/.5)}.focus\:bg-blue-10\/60:focus{background-color:rgb(var(--blue-10)/.6)}.focus\:bg-blue-10\/70:focus{background-color:rgb(var(--blue-10)/.7)}.focus\:bg-blue-10\/75:focus{background-color:rgb(var(--blue-10)/.75)}.focus\:bg-blue-10\/80:focus{background-color:rgb(var(--blue-10)/.8)}.focus\:bg-blue-10\/90:focus{background-color:rgb(var(--blue-10)/.9)}.focus\:bg-blue-10\/95:focus{background-color:rgb(var(--blue-10)/.95)}.focus\:bg-blue-2\/0:focus{background-color:rgb(var(--blue-2)/0)}.focus\:bg-blue-2\/10:focus{background-color:rgb(var(--blue-2)/.1)}.focus\:bg-blue-2\/100:focus{background-color:rgb(var(--blue-2)/1)}.focus\:bg-blue-2\/20:focus{background-color:rgb(var(--blue-2)/.2)}.focus\:bg-blue-2\/25:focus{background-color:rgb(var(--blue-2)/.25)}.focus\:bg-blue-2\/30:focus{background-color:rgb(var(--blue-2)/.3)}.focus\:bg-blue-2\/40:focus{background-color:rgb(var(--blue-2)/.4)}.focus\:bg-blue-2\/5:focus{background-color:rgb(var(--blue-2)/.05)}.focus\:bg-blue-2\/50:focus{background-color:rgb(var(--blue-2)/.5)}.focus\:bg-blue-2\/60:focus{background-color:rgb(var(--blue-2)/.6)}.focus\:bg-blue-2\/70:focus{background-color:rgb(var(--blue-2)/.7)}.focus\:bg-blue-2\/75:focus{background-color:rgb(var(--blue-2)/.75)}.focus\:bg-blue-2\/80:focus{background-color:rgb(var(--blue-2)/.8)}.focus\:bg-blue-2\/90:focus{background-color:rgb(var(--blue-2)/.9)}.focus\:bg-blue-2\/95:focus{background-color:rgb(var(--blue-2)/.95)}.focus\:bg-blue-3\/0:focus{background-color:rgb(var(--blue-3)/0)}.focus\:bg-blue-3\/10:focus{background-color:rgb(var(--blue-3)/.1)}.focus\:bg-blue-3\/100:focus{background-color:rgb(var(--blue-3)/1)}.focus\:bg-blue-3\/20:focus{background-color:rgb(var(--blue-3)/.2)}.focus\:bg-blue-3\/25:focus{background-color:rgb(var(--blue-3)/.25)}.focus\:bg-blue-3\/30:focus{background-color:rgb(var(--blue-3)/.3)}.focus\:bg-blue-3\/40:focus{background-color:rgb(var(--blue-3)/.4)}.focus\:bg-blue-3\/5:focus{background-color:rgb(var(--blue-3)/.05)}.focus\:bg-blue-3\/50:focus{background-color:rgb(var(--blue-3)/.5)}.focus\:bg-blue-3\/60:focus{background-color:rgb(var(--blue-3)/.6)}.focus\:bg-blue-3\/70:focus{background-color:rgb(var(--blue-3)/.7)}.focus\:bg-blue-3\/75:focus{background-color:rgb(var(--blue-3)/.75)}.focus\:bg-blue-3\/80:focus{background-color:rgb(var(--blue-3)/.8)}.focus\:bg-blue-3\/90:focus{background-color:rgb(var(--blue-3)/.9)}.focus\:bg-blue-3\/95:focus{background-color:rgb(var(--blue-3)/.95)}.focus\:bg-blue-4\/0:focus{background-color:rgb(var(--blue-4)/0)}.focus\:bg-blue-4\/10:focus{background-color:rgb(var(--blue-4)/.1)}.focus\:bg-blue-4\/100:focus{background-color:rgb(var(--blue-4)/1)}.focus\:bg-blue-4\/20:focus{background-color:rgb(var(--blue-4)/.2)}.focus\:bg-blue-4\/25:focus{background-color:rgb(var(--blue-4)/.25)}.focus\:bg-blue-4\/30:focus{background-color:rgb(var(--blue-4)/.3)}.focus\:bg-blue-4\/40:focus{background-color:rgb(var(--blue-4)/.4)}.focus\:bg-blue-4\/5:focus{background-color:rgb(var(--blue-4)/.05)}.focus\:bg-blue-4\/50:focus{background-color:rgb(var(--blue-4)/.5)}.focus\:bg-blue-4\/60:focus{background-color:rgb(var(--blue-4)/.6)}.focus\:bg-blue-4\/70:focus{background-color:rgb(var(--blue-4)/.7)}.focus\:bg-blue-4\/75:focus{background-color:rgb(var(--blue-4)/.75)}.focus\:bg-blue-4\/80:focus{background-color:rgb(var(--blue-4)/.8)}.focus\:bg-blue-4\/90:focus{background-color:rgb(var(--blue-4)/.9)}.focus\:bg-blue-4\/95:focus{background-color:rgb(var(--blue-4)/.95)}.focus\:bg-blue-5\/0:focus{background-color:rgb(var(--blue-5)/0)}.focus\:bg-blue-5\/10:focus{background-color:rgb(var(--blue-5)/.1)}.focus\:bg-blue-5\/100:focus{background-color:rgb(var(--blue-5)/1)}.focus\:bg-blue-5\/20:focus{background-color:rgb(var(--blue-5)/.2)}.focus\:bg-blue-5\/25:focus{background-color:rgb(var(--blue-5)/.25)}.focus\:bg-blue-5\/30:focus{background-color:rgb(var(--blue-5)/.3)}.focus\:bg-blue-5\/40:focus{background-color:rgb(var(--blue-5)/.4)}.focus\:bg-blue-5\/5:focus{background-color:rgb(var(--blue-5)/.05)}.focus\:bg-blue-5\/50:focus{background-color:rgb(var(--blue-5)/.5)}.focus\:bg-blue-5\/60:focus{background-color:rgb(var(--blue-5)/.6)}.focus\:bg-blue-5\/70:focus{background-color:rgb(var(--blue-5)/.7)}.focus\:bg-blue-5\/75:focus{background-color:rgb(var(--blue-5)/.75)}.focus\:bg-blue-5\/80:focus{background-color:rgb(var(--blue-5)/.8)}.focus\:bg-blue-5\/90:focus{background-color:rgb(var(--blue-5)/.9)}.focus\:bg-blue-5\/95:focus{background-color:rgb(var(--blue-5)/.95)}.focus\:bg-blue-6\/0:focus{background-color:rgb(var(--blue-6)/0)}.focus\:bg-blue-6\/10:focus{background-color:rgb(var(--blue-6)/.1)}.focus\:bg-blue-6\/100:focus{background-color:rgb(var(--blue-6)/1)}.focus\:bg-blue-6\/20:focus{background-color:rgb(var(--blue-6)/.2)}.focus\:bg-blue-6\/25:focus{background-color:rgb(var(--blue-6)/.25)}.focus\:bg-blue-6\/30:focus{background-color:rgb(var(--blue-6)/.3)}.focus\:bg-blue-6\/40:focus{background-color:rgb(var(--blue-6)/.4)}.focus\:bg-blue-6\/5:focus{background-color:rgb(var(--blue-6)/.05)}.focus\:bg-blue-6\/50:focus{background-color:rgb(var(--blue-6)/.5)}.focus\:bg-blue-6\/60:focus{background-color:rgb(var(--blue-6)/.6)}.focus\:bg-blue-6\/70:focus{background-color:rgb(var(--blue-6)/.7)}.focus\:bg-blue-6\/75:focus{background-color:rgb(var(--blue-6)/.75)}.focus\:bg-blue-6\/80:focus{background-color:rgb(var(--blue-6)/.8)}.focus\:bg-blue-6\/90:focus{background-color:rgb(var(--blue-6)/.9)}.focus\:bg-blue-6\/95:focus{background-color:rgb(var(--blue-6)/.95)}.focus\:bg-blue-7\/0:focus{background-color:rgb(var(--blue-7)/0)}.focus\:bg-blue-7\/10:focus{background-color:rgb(var(--blue-7)/.1)}.focus\:bg-blue-7\/100:focus{background-color:rgb(var(--blue-7)/1)}.focus\:bg-blue-7\/20:focus{background-color:rgb(var(--blue-7)/.2)}.focus\:bg-blue-7\/25:focus{background-color:rgb(var(--blue-7)/.25)}.focus\:bg-blue-7\/30:focus{background-color:rgb(var(--blue-7)/.3)}.focus\:bg-blue-7\/40:focus{background-color:rgb(var(--blue-7)/.4)}.focus\:bg-blue-7\/5:focus{background-color:rgb(var(--blue-7)/.05)}.focus\:bg-blue-7\/50:focus{background-color:rgb(var(--blue-7)/.5)}.focus\:bg-blue-7\/60:focus{background-color:rgb(var(--blue-7)/.6)}.focus\:bg-blue-7\/70:focus{background-color:rgb(var(--blue-7)/.7)}.focus\:bg-blue-7\/75:focus{background-color:rgb(var(--blue-7)/.75)}.focus\:bg-blue-7\/80:focus{background-color:rgb(var(--blue-7)/.8)}.focus\:bg-blue-7\/90:focus{background-color:rgb(var(--blue-7)/.9)}.focus\:bg-blue-7\/95:focus{background-color:rgb(var(--blue-7)/.95)}.focus\:bg-blue-8\/0:focus{background-color:rgb(var(--blue-8)/0)}.focus\:bg-blue-8\/10:focus{background-color:rgb(var(--blue-8)/.1)}.focus\:bg-blue-8\/100:focus{background-color:rgb(var(--blue-8)/1)}.focus\:bg-blue-8\/20:focus{background-color:rgb(var(--blue-8)/.2)}.focus\:bg-blue-8\/25:focus{background-color:rgb(var(--blue-8)/.25)}.focus\:bg-blue-8\/30:focus{background-color:rgb(var(--blue-8)/.3)}.focus\:bg-blue-8\/40:focus{background-color:rgb(var(--blue-8)/.4)}.focus\:bg-blue-8\/5:focus{background-color:rgb(var(--blue-8)/.05)}.focus\:bg-blue-8\/50:focus{background-color:rgb(var(--blue-8)/.5)}.focus\:bg-blue-8\/60:focus{background-color:rgb(var(--blue-8)/.6)}.focus\:bg-blue-8\/70:focus{background-color:rgb(var(--blue-8)/.7)}.focus\:bg-blue-8\/75:focus{background-color:rgb(var(--blue-8)/.75)}.focus\:bg-blue-8\/80:focus{background-color:rgb(var(--blue-8)/.8)}.focus\:bg-blue-8\/90:focus{background-color:rgb(var(--blue-8)/.9)}.focus\:bg-blue-8\/95:focus{background-color:rgb(var(--blue-8)/.95)}.focus\:bg-blue-9\/0:focus{background-color:rgb(var(--blue-9)/0)}.focus\:bg-blue-9\/10:focus{background-color:rgb(var(--blue-9)/.1)}.focus\:bg-blue-9\/100:focus{background-color:rgb(var(--blue-9)/1)}.focus\:bg-blue-9\/20:focus{background-color:rgb(var(--blue-9)/.2)}.focus\:bg-blue-9\/25:focus{background-color:rgb(var(--blue-9)/.25)}.focus\:bg-blue-9\/30:focus{background-color:rgb(var(--blue-9)/.3)}.focus\:bg-blue-9\/40:focus{background-color:rgb(var(--blue-9)/.4)}.focus\:bg-blue-9\/5:focus{background-color:rgb(var(--blue-9)/.05)}.focus\:bg-blue-9\/50:focus{background-color:rgb(var(--blue-9)/.5)}.focus\:bg-blue-9\/60:focus{background-color:rgb(var(--blue-9)/.6)}.focus\:bg-blue-9\/70:focus{background-color:rgb(var(--blue-9)/.7)}.focus\:bg-blue-9\/75:focus{background-color:rgb(var(--blue-9)/.75)}.focus\:bg-blue-9\/80:focus{background-color:rgb(var(--blue-9)/.8)}.focus\:bg-blue-9\/90:focus{background-color:rgb(var(--blue-9)/.9)}.focus\:bg-blue-9\/95:focus{background-color:rgb(var(--blue-9)/.95)}.focus\:bg-border:focus{--tw-bg-opacity:1;background-color:rgb(var(--border)/var(--tw-bg-opacity))}.focus\:bg-border\/0:focus{background-color:rgb(var(--border)/0)}.focus\:bg-border\/10:focus{background-color:rgb(var(--border)/.1)}.focus\:bg-border\/100:focus{background-color:rgb(var(--border)/1)}.focus\:bg-border\/20:focus{background-color:rgb(var(--border)/.2)}.focus\:bg-border\/25:focus{background-color:rgb(var(--border)/.25)}.focus\:bg-border\/30:focus{background-color:rgb(var(--border)/.3)}.focus\:bg-border\/40:focus{background-color:rgb(var(--border)/.4)}.focus\:bg-border\/5:focus{background-color:rgb(var(--border)/.05)}.focus\:bg-border\/50:focus{background-color:rgb(var(--border)/.5)}.focus\:bg-border\/60:focus{background-color:rgb(var(--border)/.6)}.focus\:bg-border\/70:focus{background-color:rgb(var(--border)/.7)}.focus\:bg-border\/75:focus{background-color:rgb(var(--border)/.75)}.focus\:bg-border\/80:focus{background-color:rgb(var(--border)/.8)}.focus\:bg-border\/90:focus{background-color:rgb(var(--border)/.9)}.focus\:bg-border\/95:focus{background-color:rgb(var(--border)/.95)}.focus\:bg-content1:focus{--tw-bg-opacity:1;background-color:rgb(var(--content1)/var(--tw-bg-opacity))}.focus\:bg-content1\/0:focus{background-color:rgb(var(--content1)/0)}.focus\:bg-content1\/10:focus{background-color:rgb(var(--content1)/.1)}.focus\:bg-content1\/100:focus{background-color:rgb(var(--content1)/1)}.focus\:bg-content1\/20:focus{background-color:rgb(var(--content1)/.2)}.focus\:bg-content1\/25:focus{background-color:rgb(var(--content1)/.25)}.focus\:bg-content1\/30:focus{background-color:rgb(var(--content1)/.3)}.focus\:bg-content1\/40:focus{background-color:rgb(var(--content1)/.4)}.focus\:bg-content1\/5:focus{background-color:rgb(var(--content1)/.05)}.focus\:bg-content1\/50:focus{background-color:rgb(var(--content1)/.5)}.focus\:bg-content1\/60:focus{background-color:rgb(var(--content1)/.6)}.focus\:bg-content1\/70:focus{background-color:rgb(var(--content1)/.7)}.focus\:bg-content1\/75:focus{background-color:rgb(var(--content1)/.75)}.focus\:bg-content1\/80:focus{background-color:rgb(var(--content1)/.8)}.focus\:bg-content1\/90:focus{background-color:rgb(var(--content1)/.9)}.focus\:bg-content1\/95:focus{background-color:rgb(var(--content1)/.95)}.focus\:bg-content2:focus{--tw-bg-opacity:1;background-color:rgb(var(--content2)/var(--tw-bg-opacity))}.focus\:bg-content2\/0:focus{background-color:rgb(var(--content2)/0)}.focus\:bg-content2\/10:focus{background-color:rgb(var(--content2)/.1)}.focus\:bg-content2\/100:focus{background-color:rgb(var(--content2)/1)}.focus\:bg-content2\/20:focus{background-color:rgb(var(--content2)/.2)}.focus\:bg-content2\/25:focus{background-color:rgb(var(--content2)/.25)}.focus\:bg-content2\/30:focus{background-color:rgb(var(--content2)/.3)}.focus\:bg-content2\/40:focus{background-color:rgb(var(--content2)/.4)}.focus\:bg-content2\/5:focus{background-color:rgb(var(--content2)/.05)}.focus\:bg-content2\/50:focus{background-color:rgb(var(--content2)/.5)}.focus\:bg-content2\/60:focus{background-color:rgb(var(--content2)/.6)}.focus\:bg-content2\/70:focus{background-color:rgb(var(--content2)/.7)}.focus\:bg-content2\/75:focus{background-color:rgb(var(--content2)/.75)}.focus\:bg-content2\/80:focus{background-color:rgb(var(--content2)/.8)}.focus\:bg-content2\/90:focus{background-color:rgb(var(--content2)/.9)}.focus\:bg-content2\/95:focus{background-color:rgb(var(--content2)/.95)}.focus\:bg-content3:focus{--tw-bg-opacity:1;background-color:rgb(var(--content3)/var(--tw-bg-opacity))}.focus\:bg-content3\/0:focus{background-color:rgb(var(--content3)/0)}.focus\:bg-content3\/10:focus{background-color:rgb(var(--content3)/.1)}.focus\:bg-content3\/100:focus{background-color:rgb(var(--content3)/1)}.focus\:bg-content3\/20:focus{background-color:rgb(var(--content3)/.2)}.focus\:bg-content3\/25:focus{background-color:rgb(var(--content3)/.25)}.focus\:bg-content3\/30:focus{background-color:rgb(var(--content3)/.3)}.focus\:bg-content3\/40:focus{background-color:rgb(var(--content3)/.4)}.focus\:bg-content3\/5:focus{background-color:rgb(var(--content3)/.05)}.focus\:bg-content3\/50:focus{background-color:rgb(var(--content3)/.5)}.focus\:bg-content3\/60:focus{background-color:rgb(var(--content3)/.6)}.focus\:bg-content3\/70:focus{background-color:rgb(var(--content3)/.7)}.focus\:bg-content3\/75:focus{background-color:rgb(var(--content3)/.75)}.focus\:bg-content3\/80:focus{background-color:rgb(var(--content3)/.8)}.focus\:bg-content3\/90:focus{background-color:rgb(var(--content3)/.9)}.focus\:bg-content3\/95:focus{background-color:rgb(var(--content3)/.95)}.focus\:bg-cyan-1\/0:focus{background-color:rgb(var(--cyan-1)/0)}.focus\:bg-cyan-1\/10:focus{background-color:rgb(var(--cyan-1)/.1)}.focus\:bg-cyan-1\/100:focus{background-color:rgb(var(--cyan-1)/1)}.focus\:bg-cyan-1\/20:focus{background-color:rgb(var(--cyan-1)/.2)}.focus\:bg-cyan-1\/25:focus{background-color:rgb(var(--cyan-1)/.25)}.focus\:bg-cyan-1\/30:focus{background-color:rgb(var(--cyan-1)/.3)}.focus\:bg-cyan-1\/40:focus{background-color:rgb(var(--cyan-1)/.4)}.focus\:bg-cyan-1\/5:focus{background-color:rgb(var(--cyan-1)/.05)}.focus\:bg-cyan-1\/50:focus{background-color:rgb(var(--cyan-1)/.5)}.focus\:bg-cyan-1\/60:focus{background-color:rgb(var(--cyan-1)/.6)}.focus\:bg-cyan-1\/70:focus{background-color:rgb(var(--cyan-1)/.7)}.focus\:bg-cyan-1\/75:focus{background-color:rgb(var(--cyan-1)/.75)}.focus\:bg-cyan-1\/80:focus{background-color:rgb(var(--cyan-1)/.8)}.focus\:bg-cyan-1\/90:focus{background-color:rgb(var(--cyan-1)/.9)}.focus\:bg-cyan-1\/95:focus{background-color:rgb(var(--cyan-1)/.95)}.focus\:bg-cyan-10\/0:focus{background-color:rgb(var(--cyan-10)/0)}.focus\:bg-cyan-10\/10:focus{background-color:rgb(var(--cyan-10)/.1)}.focus\:bg-cyan-10\/100:focus{background-color:rgb(var(--cyan-10)/1)}.focus\:bg-cyan-10\/20:focus{background-color:rgb(var(--cyan-10)/.2)}.focus\:bg-cyan-10\/25:focus{background-color:rgb(var(--cyan-10)/.25)}.focus\:bg-cyan-10\/30:focus{background-color:rgb(var(--cyan-10)/.3)}.focus\:bg-cyan-10\/40:focus{background-color:rgb(var(--cyan-10)/.4)}.focus\:bg-cyan-10\/5:focus{background-color:rgb(var(--cyan-10)/.05)}.focus\:bg-cyan-10\/50:focus{background-color:rgb(var(--cyan-10)/.5)}.focus\:bg-cyan-10\/60:focus{background-color:rgb(var(--cyan-10)/.6)}.focus\:bg-cyan-10\/70:focus{background-color:rgb(var(--cyan-10)/.7)}.focus\:bg-cyan-10\/75:focus{background-color:rgb(var(--cyan-10)/.75)}.focus\:bg-cyan-10\/80:focus{background-color:rgb(var(--cyan-10)/.8)}.focus\:bg-cyan-10\/90:focus{background-color:rgb(var(--cyan-10)/.9)}.focus\:bg-cyan-10\/95:focus{background-color:rgb(var(--cyan-10)/.95)}.focus\:bg-cyan-2\/0:focus{background-color:rgb(var(--cyan-2)/0)}.focus\:bg-cyan-2\/10:focus{background-color:rgb(var(--cyan-2)/.1)}.focus\:bg-cyan-2\/100:focus{background-color:rgb(var(--cyan-2)/1)}.focus\:bg-cyan-2\/20:focus{background-color:rgb(var(--cyan-2)/.2)}.focus\:bg-cyan-2\/25:focus{background-color:rgb(var(--cyan-2)/.25)}.focus\:bg-cyan-2\/30:focus{background-color:rgb(var(--cyan-2)/.3)}.focus\:bg-cyan-2\/40:focus{background-color:rgb(var(--cyan-2)/.4)}.focus\:bg-cyan-2\/5:focus{background-color:rgb(var(--cyan-2)/.05)}.focus\:bg-cyan-2\/50:focus{background-color:rgb(var(--cyan-2)/.5)}.focus\:bg-cyan-2\/60:focus{background-color:rgb(var(--cyan-2)/.6)}.focus\:bg-cyan-2\/70:focus{background-color:rgb(var(--cyan-2)/.7)}.focus\:bg-cyan-2\/75:focus{background-color:rgb(var(--cyan-2)/.75)}.focus\:bg-cyan-2\/80:focus{background-color:rgb(var(--cyan-2)/.8)}.focus\:bg-cyan-2\/90:focus{background-color:rgb(var(--cyan-2)/.9)}.focus\:bg-cyan-2\/95:focus{background-color:rgb(var(--cyan-2)/.95)}.focus\:bg-cyan-3\/0:focus{background-color:rgb(var(--cyan-3)/0)}.focus\:bg-cyan-3\/10:focus{background-color:rgb(var(--cyan-3)/.1)}.focus\:bg-cyan-3\/100:focus{background-color:rgb(var(--cyan-3)/1)}.focus\:bg-cyan-3\/20:focus{background-color:rgb(var(--cyan-3)/.2)}.focus\:bg-cyan-3\/25:focus{background-color:rgb(var(--cyan-3)/.25)}.focus\:bg-cyan-3\/30:focus{background-color:rgb(var(--cyan-3)/.3)}.focus\:bg-cyan-3\/40:focus{background-color:rgb(var(--cyan-3)/.4)}.focus\:bg-cyan-3\/5:focus{background-color:rgb(var(--cyan-3)/.05)}.focus\:bg-cyan-3\/50:focus{background-color:rgb(var(--cyan-3)/.5)}.focus\:bg-cyan-3\/60:focus{background-color:rgb(var(--cyan-3)/.6)}.focus\:bg-cyan-3\/70:focus{background-color:rgb(var(--cyan-3)/.7)}.focus\:bg-cyan-3\/75:focus{background-color:rgb(var(--cyan-3)/.75)}.focus\:bg-cyan-3\/80:focus{background-color:rgb(var(--cyan-3)/.8)}.focus\:bg-cyan-3\/90:focus{background-color:rgb(var(--cyan-3)/.9)}.focus\:bg-cyan-3\/95:focus{background-color:rgb(var(--cyan-3)/.95)}.focus\:bg-cyan-4\/0:focus{background-color:rgb(var(--cyan-4)/0)}.focus\:bg-cyan-4\/10:focus{background-color:rgb(var(--cyan-4)/.1)}.focus\:bg-cyan-4\/100:focus{background-color:rgb(var(--cyan-4)/1)}.focus\:bg-cyan-4\/20:focus{background-color:rgb(var(--cyan-4)/.2)}.focus\:bg-cyan-4\/25:focus{background-color:rgb(var(--cyan-4)/.25)}.focus\:bg-cyan-4\/30:focus{background-color:rgb(var(--cyan-4)/.3)}.focus\:bg-cyan-4\/40:focus{background-color:rgb(var(--cyan-4)/.4)}.focus\:bg-cyan-4\/5:focus{background-color:rgb(var(--cyan-4)/.05)}.focus\:bg-cyan-4\/50:focus{background-color:rgb(var(--cyan-4)/.5)}.focus\:bg-cyan-4\/60:focus{background-color:rgb(var(--cyan-4)/.6)}.focus\:bg-cyan-4\/70:focus{background-color:rgb(var(--cyan-4)/.7)}.focus\:bg-cyan-4\/75:focus{background-color:rgb(var(--cyan-4)/.75)}.focus\:bg-cyan-4\/80:focus{background-color:rgb(var(--cyan-4)/.8)}.focus\:bg-cyan-4\/90:focus{background-color:rgb(var(--cyan-4)/.9)}.focus\:bg-cyan-4\/95:focus{background-color:rgb(var(--cyan-4)/.95)}.focus\:bg-cyan-5\/0:focus{background-color:rgb(var(--cyan-5)/0)}.focus\:bg-cyan-5\/10:focus{background-color:rgb(var(--cyan-5)/.1)}.focus\:bg-cyan-5\/100:focus{background-color:rgb(var(--cyan-5)/1)}.focus\:bg-cyan-5\/20:focus{background-color:rgb(var(--cyan-5)/.2)}.focus\:bg-cyan-5\/25:focus{background-color:rgb(var(--cyan-5)/.25)}.focus\:bg-cyan-5\/30:focus{background-color:rgb(var(--cyan-5)/.3)}.focus\:bg-cyan-5\/40:focus{background-color:rgb(var(--cyan-5)/.4)}.focus\:bg-cyan-5\/5:focus{background-color:rgb(var(--cyan-5)/.05)}.focus\:bg-cyan-5\/50:focus{background-color:rgb(var(--cyan-5)/.5)}.focus\:bg-cyan-5\/60:focus{background-color:rgb(var(--cyan-5)/.6)}.focus\:bg-cyan-5\/70:focus{background-color:rgb(var(--cyan-5)/.7)}.focus\:bg-cyan-5\/75:focus{background-color:rgb(var(--cyan-5)/.75)}.focus\:bg-cyan-5\/80:focus{background-color:rgb(var(--cyan-5)/.8)}.focus\:bg-cyan-5\/90:focus{background-color:rgb(var(--cyan-5)/.9)}.focus\:bg-cyan-5\/95:focus{background-color:rgb(var(--cyan-5)/.95)}.focus\:bg-cyan-6\/0:focus{background-color:rgb(var(--cyan-6)/0)}.focus\:bg-cyan-6\/10:focus{background-color:rgb(var(--cyan-6)/.1)}.focus\:bg-cyan-6\/100:focus{background-color:rgb(var(--cyan-6)/1)}.focus\:bg-cyan-6\/20:focus{background-color:rgb(var(--cyan-6)/.2)}.focus\:bg-cyan-6\/25:focus{background-color:rgb(var(--cyan-6)/.25)}.focus\:bg-cyan-6\/30:focus{background-color:rgb(var(--cyan-6)/.3)}.focus\:bg-cyan-6\/40:focus{background-color:rgb(var(--cyan-6)/.4)}.focus\:bg-cyan-6\/5:focus{background-color:rgb(var(--cyan-6)/.05)}.focus\:bg-cyan-6\/50:focus{background-color:rgb(var(--cyan-6)/.5)}.focus\:bg-cyan-6\/60:focus{background-color:rgb(var(--cyan-6)/.6)}.focus\:bg-cyan-6\/70:focus{background-color:rgb(var(--cyan-6)/.7)}.focus\:bg-cyan-6\/75:focus{background-color:rgb(var(--cyan-6)/.75)}.focus\:bg-cyan-6\/80:focus{background-color:rgb(var(--cyan-6)/.8)}.focus\:bg-cyan-6\/90:focus{background-color:rgb(var(--cyan-6)/.9)}.focus\:bg-cyan-6\/95:focus{background-color:rgb(var(--cyan-6)/.95)}.focus\:bg-cyan-7\/0:focus{background-color:rgb(var(--cyan-7)/0)}.focus\:bg-cyan-7\/10:focus{background-color:rgb(var(--cyan-7)/.1)}.focus\:bg-cyan-7\/100:focus{background-color:rgb(var(--cyan-7)/1)}.focus\:bg-cyan-7\/20:focus{background-color:rgb(var(--cyan-7)/.2)}.focus\:bg-cyan-7\/25:focus{background-color:rgb(var(--cyan-7)/.25)}.focus\:bg-cyan-7\/30:focus{background-color:rgb(var(--cyan-7)/.3)}.focus\:bg-cyan-7\/40:focus{background-color:rgb(var(--cyan-7)/.4)}.focus\:bg-cyan-7\/5:focus{background-color:rgb(var(--cyan-7)/.05)}.focus\:bg-cyan-7\/50:focus{background-color:rgb(var(--cyan-7)/.5)}.focus\:bg-cyan-7\/60:focus{background-color:rgb(var(--cyan-7)/.6)}.focus\:bg-cyan-7\/70:focus{background-color:rgb(var(--cyan-7)/.7)}.focus\:bg-cyan-7\/75:focus{background-color:rgb(var(--cyan-7)/.75)}.focus\:bg-cyan-7\/80:focus{background-color:rgb(var(--cyan-7)/.8)}.focus\:bg-cyan-7\/90:focus{background-color:rgb(var(--cyan-7)/.9)}.focus\:bg-cyan-7\/95:focus{background-color:rgb(var(--cyan-7)/.95)}.focus\:bg-cyan-8\/0:focus{background-color:rgb(var(--cyan-8)/0)}.focus\:bg-cyan-8\/10:focus{background-color:rgb(var(--cyan-8)/.1)}.focus\:bg-cyan-8\/100:focus{background-color:rgb(var(--cyan-8)/1)}.focus\:bg-cyan-8\/20:focus{background-color:rgb(var(--cyan-8)/.2)}.focus\:bg-cyan-8\/25:focus{background-color:rgb(var(--cyan-8)/.25)}.focus\:bg-cyan-8\/30:focus{background-color:rgb(var(--cyan-8)/.3)}.focus\:bg-cyan-8\/40:focus{background-color:rgb(var(--cyan-8)/.4)}.focus\:bg-cyan-8\/5:focus{background-color:rgb(var(--cyan-8)/.05)}.focus\:bg-cyan-8\/50:focus{background-color:rgb(var(--cyan-8)/.5)}.focus\:bg-cyan-8\/60:focus{background-color:rgb(var(--cyan-8)/.6)}.focus\:bg-cyan-8\/70:focus{background-color:rgb(var(--cyan-8)/.7)}.focus\:bg-cyan-8\/75:focus{background-color:rgb(var(--cyan-8)/.75)}.focus\:bg-cyan-8\/80:focus{background-color:rgb(var(--cyan-8)/.8)}.focus\:bg-cyan-8\/90:focus{background-color:rgb(var(--cyan-8)/.9)}.focus\:bg-cyan-8\/95:focus{background-color:rgb(var(--cyan-8)/.95)}.focus\:bg-cyan-9\/0:focus{background-color:rgb(var(--cyan-9)/0)}.focus\:bg-cyan-9\/10:focus{background-color:rgb(var(--cyan-9)/.1)}.focus\:bg-cyan-9\/100:focus{background-color:rgb(var(--cyan-9)/1)}.focus\:bg-cyan-9\/20:focus{background-color:rgb(var(--cyan-9)/.2)}.focus\:bg-cyan-9\/25:focus{background-color:rgb(var(--cyan-9)/.25)}.focus\:bg-cyan-9\/30:focus{background-color:rgb(var(--cyan-9)/.3)}.focus\:bg-cyan-9\/40:focus{background-color:rgb(var(--cyan-9)/.4)}.focus\:bg-cyan-9\/5:focus{background-color:rgb(var(--cyan-9)/.05)}.focus\:bg-cyan-9\/50:focus{background-color:rgb(var(--cyan-9)/.5)}.focus\:bg-cyan-9\/60:focus{background-color:rgb(var(--cyan-9)/.6)}.focus\:bg-cyan-9\/70:focus{background-color:rgb(var(--cyan-9)/.7)}.focus\:bg-cyan-9\/75:focus{background-color:rgb(var(--cyan-9)/.75)}.focus\:bg-cyan-9\/80:focus{background-color:rgb(var(--cyan-9)/.8)}.focus\:bg-cyan-9\/90:focus{background-color:rgb(var(--cyan-9)/.9)}.focus\:bg-cyan-9\/95:focus{background-color:rgb(var(--cyan-9)/.95)}.focus\:bg-error:focus{--tw-bg-opacity:1;background-color:rgb(var(--error)/var(--tw-bg-opacity))}.focus\:bg-error\/0:focus{background-color:rgb(var(--error)/0)}.focus\:bg-error\/10:focus{background-color:rgb(var(--error)/.1)}.focus\:bg-error\/100:focus{background-color:rgb(var(--error)/1)}.focus\:bg-error\/20:focus{background-color:rgb(var(--error)/.2)}.focus\:bg-error\/25:focus{background-color:rgb(var(--error)/.25)}.focus\:bg-error\/30:focus{background-color:rgb(var(--error)/.3)}.focus\:bg-error\/40:focus{background-color:rgb(var(--error)/.4)}.focus\:bg-error\/5:focus{background-color:rgb(var(--error)/.05)}.focus\:bg-error\/50:focus{background-color:rgb(var(--error)/.5)}.focus\:bg-error\/60:focus{background-color:rgb(var(--error)/.6)}.focus\:bg-error\/70:focus{background-color:rgb(var(--error)/.7)}.focus\:bg-error\/75:focus{background-color:rgb(var(--error)/.75)}.focus\:bg-error\/80:focus{background-color:rgb(var(--error)/.8)}.focus\:bg-error\/90:focus{background-color:rgb(var(--error)/.9)}.focus\:bg-error\/95:focus{background-color:rgb(var(--error)/.95)}.focus\:bg-gray-1\/0:focus{background-color:rgb(var(--gray-1)/0)}.focus\:bg-gray-1\/10:focus{background-color:rgb(var(--gray-1)/.1)}.focus\:bg-gray-1\/100:focus{background-color:rgb(var(--gray-1)/1)}.focus\:bg-gray-1\/20:focus{background-color:rgb(var(--gray-1)/.2)}.focus\:bg-gray-1\/25:focus{background-color:rgb(var(--gray-1)/.25)}.focus\:bg-gray-1\/30:focus{background-color:rgb(var(--gray-1)/.3)}.focus\:bg-gray-1\/40:focus{background-color:rgb(var(--gray-1)/.4)}.focus\:bg-gray-1\/5:focus{background-color:rgb(var(--gray-1)/.05)}.focus\:bg-gray-1\/50:focus{background-color:rgb(var(--gray-1)/.5)}.focus\:bg-gray-1\/60:focus{background-color:rgb(var(--gray-1)/.6)}.focus\:bg-gray-1\/70:focus{background-color:rgb(var(--gray-1)/.7)}.focus\:bg-gray-1\/75:focus{background-color:rgb(var(--gray-1)/.75)}.focus\:bg-gray-1\/80:focus{background-color:rgb(var(--gray-1)/.8)}.focus\:bg-gray-1\/90:focus{background-color:rgb(var(--gray-1)/.9)}.focus\:bg-gray-1\/95:focus{background-color:rgb(var(--gray-1)/.95)}.focus\:bg-gray-10\/0:focus{background-color:rgb(var(--gray-10)/0)}.focus\:bg-gray-10\/10:focus{background-color:rgb(var(--gray-10)/.1)}.focus\:bg-gray-10\/100:focus{background-color:rgb(var(--gray-10)/1)}.focus\:bg-gray-10\/20:focus{background-color:rgb(var(--gray-10)/.2)}.focus\:bg-gray-10\/25:focus{background-color:rgb(var(--gray-10)/.25)}.focus\:bg-gray-10\/30:focus{background-color:rgb(var(--gray-10)/.3)}.focus\:bg-gray-10\/40:focus{background-color:rgb(var(--gray-10)/.4)}.focus\:bg-gray-10\/5:focus{background-color:rgb(var(--gray-10)/.05)}.focus\:bg-gray-10\/50:focus{background-color:rgb(var(--gray-10)/.5)}.focus\:bg-gray-10\/60:focus{background-color:rgb(var(--gray-10)/.6)}.focus\:bg-gray-10\/70:focus{background-color:rgb(var(--gray-10)/.7)}.focus\:bg-gray-10\/75:focus{background-color:rgb(var(--gray-10)/.75)}.focus\:bg-gray-10\/80:focus{background-color:rgb(var(--gray-10)/.8)}.focus\:bg-gray-10\/90:focus{background-color:rgb(var(--gray-10)/.9)}.focus\:bg-gray-10\/95:focus{background-color:rgb(var(--gray-10)/.95)}.focus\:bg-gray-2\/0:focus{background-color:rgb(var(--gray-2)/0)}.focus\:bg-gray-2\/10:focus{background-color:rgb(var(--gray-2)/.1)}.focus\:bg-gray-2\/100:focus{background-color:rgb(var(--gray-2)/1)}.focus\:bg-gray-2\/20:focus{background-color:rgb(var(--gray-2)/.2)}.focus\:bg-gray-2\/25:focus{background-color:rgb(var(--gray-2)/.25)}.focus\:bg-gray-2\/30:focus{background-color:rgb(var(--gray-2)/.3)}.focus\:bg-gray-2\/40:focus{background-color:rgb(var(--gray-2)/.4)}.focus\:bg-gray-2\/5:focus{background-color:rgb(var(--gray-2)/.05)}.focus\:bg-gray-2\/50:focus{background-color:rgb(var(--gray-2)/.5)}.focus\:bg-gray-2\/60:focus{background-color:rgb(var(--gray-2)/.6)}.focus\:bg-gray-2\/70:focus{background-color:rgb(var(--gray-2)/.7)}.focus\:bg-gray-2\/75:focus{background-color:rgb(var(--gray-2)/.75)}.focus\:bg-gray-2\/80:focus{background-color:rgb(var(--gray-2)/.8)}.focus\:bg-gray-2\/90:focus{background-color:rgb(var(--gray-2)/.9)}.focus\:bg-gray-2\/95:focus{background-color:rgb(var(--gray-2)/.95)}.focus\:bg-gray-3\/0:focus{background-color:rgb(var(--gray-3)/0)}.focus\:bg-gray-3\/10:focus{background-color:rgb(var(--gray-3)/.1)}.focus\:bg-gray-3\/100:focus{background-color:rgb(var(--gray-3)/1)}.focus\:bg-gray-3\/20:focus{background-color:rgb(var(--gray-3)/.2)}.focus\:bg-gray-3\/25:focus{background-color:rgb(var(--gray-3)/.25)}.focus\:bg-gray-3\/30:focus{background-color:rgb(var(--gray-3)/.3)}.focus\:bg-gray-3\/40:focus{background-color:rgb(var(--gray-3)/.4)}.focus\:bg-gray-3\/5:focus{background-color:rgb(var(--gray-3)/.05)}.focus\:bg-gray-3\/50:focus{background-color:rgb(var(--gray-3)/.5)}.focus\:bg-gray-3\/60:focus{background-color:rgb(var(--gray-3)/.6)}.focus\:bg-gray-3\/70:focus{background-color:rgb(var(--gray-3)/.7)}.focus\:bg-gray-3\/75:focus{background-color:rgb(var(--gray-3)/.75)}.focus\:bg-gray-3\/80:focus{background-color:rgb(var(--gray-3)/.8)}.focus\:bg-gray-3\/90:focus{background-color:rgb(var(--gray-3)/.9)}.focus\:bg-gray-3\/95:focus{background-color:rgb(var(--gray-3)/.95)}.focus\:bg-gray-4\/0:focus{background-color:rgb(var(--gray-4)/0)}.focus\:bg-gray-4\/10:focus{background-color:rgb(var(--gray-4)/.1)}.focus\:bg-gray-4\/100:focus{background-color:rgb(var(--gray-4)/1)}.focus\:bg-gray-4\/20:focus{background-color:rgb(var(--gray-4)/.2)}.focus\:bg-gray-4\/25:focus{background-color:rgb(var(--gray-4)/.25)}.focus\:bg-gray-4\/30:focus{background-color:rgb(var(--gray-4)/.3)}.focus\:bg-gray-4\/40:focus{background-color:rgb(var(--gray-4)/.4)}.focus\:bg-gray-4\/5:focus{background-color:rgb(var(--gray-4)/.05)}.focus\:bg-gray-4\/50:focus{background-color:rgb(var(--gray-4)/.5)}.focus\:bg-gray-4\/60:focus{background-color:rgb(var(--gray-4)/.6)}.focus\:bg-gray-4\/70:focus{background-color:rgb(var(--gray-4)/.7)}.focus\:bg-gray-4\/75:focus{background-color:rgb(var(--gray-4)/.75)}.focus\:bg-gray-4\/80:focus{background-color:rgb(var(--gray-4)/.8)}.focus\:bg-gray-4\/90:focus{background-color:rgb(var(--gray-4)/.9)}.focus\:bg-gray-4\/95:focus{background-color:rgb(var(--gray-4)/.95)}.focus\:bg-gray-5\/0:focus{background-color:rgb(var(--gray-5)/0)}.focus\:bg-gray-5\/10:focus{background-color:rgb(var(--gray-5)/.1)}.focus\:bg-gray-5\/100:focus{background-color:rgb(var(--gray-5)/1)}.focus\:bg-gray-5\/20:focus{background-color:rgb(var(--gray-5)/.2)}.focus\:bg-gray-5\/25:focus{background-color:rgb(var(--gray-5)/.25)}.focus\:bg-gray-5\/30:focus{background-color:rgb(var(--gray-5)/.3)}.focus\:bg-gray-5\/40:focus{background-color:rgb(var(--gray-5)/.4)}.focus\:bg-gray-5\/5:focus{background-color:rgb(var(--gray-5)/.05)}.focus\:bg-gray-5\/50:focus{background-color:rgb(var(--gray-5)/.5)}.focus\:bg-gray-5\/60:focus{background-color:rgb(var(--gray-5)/.6)}.focus\:bg-gray-5\/70:focus{background-color:rgb(var(--gray-5)/.7)}.focus\:bg-gray-5\/75:focus{background-color:rgb(var(--gray-5)/.75)}.focus\:bg-gray-5\/80:focus{background-color:rgb(var(--gray-5)/.8)}.focus\:bg-gray-5\/90:focus{background-color:rgb(var(--gray-5)/.9)}.focus\:bg-gray-5\/95:focus{background-color:rgb(var(--gray-5)/.95)}.focus\:bg-gray-6\/0:focus{background-color:rgb(var(--gray-6)/0)}.focus\:bg-gray-6\/10:focus{background-color:rgb(var(--gray-6)/.1)}.focus\:bg-gray-6\/100:focus{background-color:rgb(var(--gray-6)/1)}.focus\:bg-gray-6\/20:focus{background-color:rgb(var(--gray-6)/.2)}.focus\:bg-gray-6\/25:focus{background-color:rgb(var(--gray-6)/.25)}.focus\:bg-gray-6\/30:focus{background-color:rgb(var(--gray-6)/.3)}.focus\:bg-gray-6\/40:focus{background-color:rgb(var(--gray-6)/.4)}.focus\:bg-gray-6\/5:focus{background-color:rgb(var(--gray-6)/.05)}.focus\:bg-gray-6\/50:focus{background-color:rgb(var(--gray-6)/.5)}.focus\:bg-gray-6\/60:focus{background-color:rgb(var(--gray-6)/.6)}.focus\:bg-gray-6\/70:focus{background-color:rgb(var(--gray-6)/.7)}.focus\:bg-gray-6\/75:focus{background-color:rgb(var(--gray-6)/.75)}.focus\:bg-gray-6\/80:focus{background-color:rgb(var(--gray-6)/.8)}.focus\:bg-gray-6\/90:focus{background-color:rgb(var(--gray-6)/.9)}.focus\:bg-gray-6\/95:focus{background-color:rgb(var(--gray-6)/.95)}.focus\:bg-gray-7\/0:focus{background-color:rgb(var(--gray-7)/0)}.focus\:bg-gray-7\/10:focus{background-color:rgb(var(--gray-7)/.1)}.focus\:bg-gray-7\/100:focus{background-color:rgb(var(--gray-7)/1)}.focus\:bg-gray-7\/20:focus{background-color:rgb(var(--gray-7)/.2)}.focus\:bg-gray-7\/25:focus{background-color:rgb(var(--gray-7)/.25)}.focus\:bg-gray-7\/30:focus{background-color:rgb(var(--gray-7)/.3)}.focus\:bg-gray-7\/40:focus{background-color:rgb(var(--gray-7)/.4)}.focus\:bg-gray-7\/5:focus{background-color:rgb(var(--gray-7)/.05)}.focus\:bg-gray-7\/50:focus{background-color:rgb(var(--gray-7)/.5)}.focus\:bg-gray-7\/60:focus{background-color:rgb(var(--gray-7)/.6)}.focus\:bg-gray-7\/70:focus{background-color:rgb(var(--gray-7)/.7)}.focus\:bg-gray-7\/75:focus{background-color:rgb(var(--gray-7)/.75)}.focus\:bg-gray-7\/80:focus{background-color:rgb(var(--gray-7)/.8)}.focus\:bg-gray-7\/90:focus{background-color:rgb(var(--gray-7)/.9)}.focus\:bg-gray-7\/95:focus{background-color:rgb(var(--gray-7)/.95)}.focus\:bg-gray-8\/0:focus{background-color:rgb(var(--gray-8)/0)}.focus\:bg-gray-8\/10:focus{background-color:rgb(var(--gray-8)/.1)}.focus\:bg-gray-8\/100:focus{background-color:rgb(var(--gray-8)/1)}.focus\:bg-gray-8\/20:focus{background-color:rgb(var(--gray-8)/.2)}.focus\:bg-gray-8\/25:focus{background-color:rgb(var(--gray-8)/.25)}.focus\:bg-gray-8\/30:focus{background-color:rgb(var(--gray-8)/.3)}.focus\:bg-gray-8\/40:focus{background-color:rgb(var(--gray-8)/.4)}.focus\:bg-gray-8\/5:focus{background-color:rgb(var(--gray-8)/.05)}.focus\:bg-gray-8\/50:focus{background-color:rgb(var(--gray-8)/.5)}.focus\:bg-gray-8\/60:focus{background-color:rgb(var(--gray-8)/.6)}.focus\:bg-gray-8\/70:focus{background-color:rgb(var(--gray-8)/.7)}.focus\:bg-gray-8\/75:focus{background-color:rgb(var(--gray-8)/.75)}.focus\:bg-gray-8\/80:focus{background-color:rgb(var(--gray-8)/.8)}.focus\:bg-gray-8\/90:focus{background-color:rgb(var(--gray-8)/.9)}.focus\:bg-gray-8\/95:focus{background-color:rgb(var(--gray-8)/.95)}.focus\:bg-gray-9\/0:focus{background-color:rgb(var(--gray-9)/0)}.focus\:bg-gray-9\/10:focus{background-color:rgb(var(--gray-9)/.1)}.focus\:bg-gray-9\/100:focus{background-color:rgb(var(--gray-9)/1)}.focus\:bg-gray-9\/20:focus{background-color:rgb(var(--gray-9)/.2)}.focus\:bg-gray-9\/25:focus{background-color:rgb(var(--gray-9)/.25)}.focus\:bg-gray-9\/30:focus{background-color:rgb(var(--gray-9)/.3)}.focus\:bg-gray-9\/40:focus{background-color:rgb(var(--gray-9)/.4)}.focus\:bg-gray-9\/5:focus{background-color:rgb(var(--gray-9)/.05)}.focus\:bg-gray-9\/50:focus{background-color:rgb(var(--gray-9)/.5)}.focus\:bg-gray-9\/60:focus{background-color:rgb(var(--gray-9)/.6)}.focus\:bg-gray-9\/70:focus{background-color:rgb(var(--gray-9)/.7)}.focus\:bg-gray-9\/75:focus{background-color:rgb(var(--gray-9)/.75)}.focus\:bg-gray-9\/80:focus{background-color:rgb(var(--gray-9)/.8)}.focus\:bg-gray-9\/90:focus{background-color:rgb(var(--gray-9)/.9)}.focus\:bg-gray-9\/95:focus{background-color:rgb(var(--gray-9)/.95)}.focus\:bg-green-1\/0:focus{background-color:rgb(var(--green-1)/0)}.focus\:bg-green-1\/10:focus{background-color:rgb(var(--green-1)/.1)}.focus\:bg-green-1\/100:focus{background-color:rgb(var(--green-1)/1)}.focus\:bg-green-1\/20:focus{background-color:rgb(var(--green-1)/.2)}.focus\:bg-green-1\/25:focus{background-color:rgb(var(--green-1)/.25)}.focus\:bg-green-1\/30:focus{background-color:rgb(var(--green-1)/.3)}.focus\:bg-green-1\/40:focus{background-color:rgb(var(--green-1)/.4)}.focus\:bg-green-1\/5:focus{background-color:rgb(var(--green-1)/.05)}.focus\:bg-green-1\/50:focus{background-color:rgb(var(--green-1)/.5)}.focus\:bg-green-1\/60:focus{background-color:rgb(var(--green-1)/.6)}.focus\:bg-green-1\/70:focus{background-color:rgb(var(--green-1)/.7)}.focus\:bg-green-1\/75:focus{background-color:rgb(var(--green-1)/.75)}.focus\:bg-green-1\/80:focus{background-color:rgb(var(--green-1)/.8)}.focus\:bg-green-1\/90:focus{background-color:rgb(var(--green-1)/.9)}.focus\:bg-green-1\/95:focus{background-color:rgb(var(--green-1)/.95)}.focus\:bg-green-10\/0:focus{background-color:rgb(var(--green-10)/0)}.focus\:bg-green-10\/10:focus{background-color:rgb(var(--green-10)/.1)}.focus\:bg-green-10\/100:focus{background-color:rgb(var(--green-10)/1)}.focus\:bg-green-10\/20:focus{background-color:rgb(var(--green-10)/.2)}.focus\:bg-green-10\/25:focus{background-color:rgb(var(--green-10)/.25)}.focus\:bg-green-10\/30:focus{background-color:rgb(var(--green-10)/.3)}.focus\:bg-green-10\/40:focus{background-color:rgb(var(--green-10)/.4)}.focus\:bg-green-10\/5:focus{background-color:rgb(var(--green-10)/.05)}.focus\:bg-green-10\/50:focus{background-color:rgb(var(--green-10)/.5)}.focus\:bg-green-10\/60:focus{background-color:rgb(var(--green-10)/.6)}.focus\:bg-green-10\/70:focus{background-color:rgb(var(--green-10)/.7)}.focus\:bg-green-10\/75:focus{background-color:rgb(var(--green-10)/.75)}.focus\:bg-green-10\/80:focus{background-color:rgb(var(--green-10)/.8)}.focus\:bg-green-10\/90:focus{background-color:rgb(var(--green-10)/.9)}.focus\:bg-green-10\/95:focus{background-color:rgb(var(--green-10)/.95)}.focus\:bg-green-2\/0:focus{background-color:rgb(var(--green-2)/0)}.focus\:bg-green-2\/10:focus{background-color:rgb(var(--green-2)/.1)}.focus\:bg-green-2\/100:focus{background-color:rgb(var(--green-2)/1)}.focus\:bg-green-2\/20:focus{background-color:rgb(var(--green-2)/.2)}.focus\:bg-green-2\/25:focus{background-color:rgb(var(--green-2)/.25)}.focus\:bg-green-2\/30:focus{background-color:rgb(var(--green-2)/.3)}.focus\:bg-green-2\/40:focus{background-color:rgb(var(--green-2)/.4)}.focus\:bg-green-2\/5:focus{background-color:rgb(var(--green-2)/.05)}.focus\:bg-green-2\/50:focus{background-color:rgb(var(--green-2)/.5)}.focus\:bg-green-2\/60:focus{background-color:rgb(var(--green-2)/.6)}.focus\:bg-green-2\/70:focus{background-color:rgb(var(--green-2)/.7)}.focus\:bg-green-2\/75:focus{background-color:rgb(var(--green-2)/.75)}.focus\:bg-green-2\/80:focus{background-color:rgb(var(--green-2)/.8)}.focus\:bg-green-2\/90:focus{background-color:rgb(var(--green-2)/.9)}.focus\:bg-green-2\/95:focus{background-color:rgb(var(--green-2)/.95)}.focus\:bg-green-3\/0:focus{background-color:rgb(var(--green-3)/0)}.focus\:bg-green-3\/10:focus{background-color:rgb(var(--green-3)/.1)}.focus\:bg-green-3\/100:focus{background-color:rgb(var(--green-3)/1)}.focus\:bg-green-3\/20:focus{background-color:rgb(var(--green-3)/.2)}.focus\:bg-green-3\/25:focus{background-color:rgb(var(--green-3)/.25)}.focus\:bg-green-3\/30:focus{background-color:rgb(var(--green-3)/.3)}.focus\:bg-green-3\/40:focus{background-color:rgb(var(--green-3)/.4)}.focus\:bg-green-3\/5:focus{background-color:rgb(var(--green-3)/.05)}.focus\:bg-green-3\/50:focus{background-color:rgb(var(--green-3)/.5)}.focus\:bg-green-3\/60:focus{background-color:rgb(var(--green-3)/.6)}.focus\:bg-green-3\/70:focus{background-color:rgb(var(--green-3)/.7)}.focus\:bg-green-3\/75:focus{background-color:rgb(var(--green-3)/.75)}.focus\:bg-green-3\/80:focus{background-color:rgb(var(--green-3)/.8)}.focus\:bg-green-3\/90:focus{background-color:rgb(var(--green-3)/.9)}.focus\:bg-green-3\/95:focus{background-color:rgb(var(--green-3)/.95)}.focus\:bg-green-4\/0:focus{background-color:rgb(var(--green-4)/0)}.focus\:bg-green-4\/10:focus{background-color:rgb(var(--green-4)/.1)}.focus\:bg-green-4\/100:focus{background-color:rgb(var(--green-4)/1)}.focus\:bg-green-4\/20:focus{background-color:rgb(var(--green-4)/.2)}.focus\:bg-green-4\/25:focus{background-color:rgb(var(--green-4)/.25)}.focus\:bg-green-4\/30:focus{background-color:rgb(var(--green-4)/.3)}.focus\:bg-green-4\/40:focus{background-color:rgb(var(--green-4)/.4)}.focus\:bg-green-4\/5:focus{background-color:rgb(var(--green-4)/.05)}.focus\:bg-green-4\/50:focus{background-color:rgb(var(--green-4)/.5)}.focus\:bg-green-4\/60:focus{background-color:rgb(var(--green-4)/.6)}.focus\:bg-green-4\/70:focus{background-color:rgb(var(--green-4)/.7)}.focus\:bg-green-4\/75:focus{background-color:rgb(var(--green-4)/.75)}.focus\:bg-green-4\/80:focus{background-color:rgb(var(--green-4)/.8)}.focus\:bg-green-4\/90:focus{background-color:rgb(var(--green-4)/.9)}.focus\:bg-green-4\/95:focus{background-color:rgb(var(--green-4)/.95)}.focus\:bg-green-5\/0:focus{background-color:rgb(var(--green-5)/0)}.focus\:bg-green-5\/10:focus{background-color:rgb(var(--green-5)/.1)}.focus\:bg-green-5\/100:focus{background-color:rgb(var(--green-5)/1)}.focus\:bg-green-5\/20:focus{background-color:rgb(var(--green-5)/.2)}.focus\:bg-green-5\/25:focus{background-color:rgb(var(--green-5)/.25)}.focus\:bg-green-5\/30:focus{background-color:rgb(var(--green-5)/.3)}.focus\:bg-green-5\/40:focus{background-color:rgb(var(--green-5)/.4)}.focus\:bg-green-5\/5:focus{background-color:rgb(var(--green-5)/.05)}.focus\:bg-green-5\/50:focus{background-color:rgb(var(--green-5)/.5)}.focus\:bg-green-5\/60:focus{background-color:rgb(var(--green-5)/.6)}.focus\:bg-green-5\/70:focus{background-color:rgb(var(--green-5)/.7)}.focus\:bg-green-5\/75:focus{background-color:rgb(var(--green-5)/.75)}.focus\:bg-green-5\/80:focus{background-color:rgb(var(--green-5)/.8)}.focus\:bg-green-5\/90:focus{background-color:rgb(var(--green-5)/.9)}.focus\:bg-green-5\/95:focus{background-color:rgb(var(--green-5)/.95)}.focus\:bg-green-6\/0:focus{background-color:rgb(var(--green-6)/0)}.focus\:bg-green-6\/10:focus{background-color:rgb(var(--green-6)/.1)}.focus\:bg-green-6\/100:focus{background-color:rgb(var(--green-6)/1)}.focus\:bg-green-6\/20:focus{background-color:rgb(var(--green-6)/.2)}.focus\:bg-green-6\/25:focus{background-color:rgb(var(--green-6)/.25)}.focus\:bg-green-6\/30:focus{background-color:rgb(var(--green-6)/.3)}.focus\:bg-green-6\/40:focus{background-color:rgb(var(--green-6)/.4)}.focus\:bg-green-6\/5:focus{background-color:rgb(var(--green-6)/.05)}.focus\:bg-green-6\/50:focus{background-color:rgb(var(--green-6)/.5)}.focus\:bg-green-6\/60:focus{background-color:rgb(var(--green-6)/.6)}.focus\:bg-green-6\/70:focus{background-color:rgb(var(--green-6)/.7)}.focus\:bg-green-6\/75:focus{background-color:rgb(var(--green-6)/.75)}.focus\:bg-green-6\/80:focus{background-color:rgb(var(--green-6)/.8)}.focus\:bg-green-6\/90:focus{background-color:rgb(var(--green-6)/.9)}.focus\:bg-green-6\/95:focus{background-color:rgb(var(--green-6)/.95)}.focus\:bg-green-7\/0:focus{background-color:rgb(var(--green-7)/0)}.focus\:bg-green-7\/10:focus{background-color:rgb(var(--green-7)/.1)}.focus\:bg-green-7\/100:focus{background-color:rgb(var(--green-7)/1)}.focus\:bg-green-7\/20:focus{background-color:rgb(var(--green-7)/.2)}.focus\:bg-green-7\/25:focus{background-color:rgb(var(--green-7)/.25)}.focus\:bg-green-7\/30:focus{background-color:rgb(var(--green-7)/.3)}.focus\:bg-green-7\/40:focus{background-color:rgb(var(--green-7)/.4)}.focus\:bg-green-7\/5:focus{background-color:rgb(var(--green-7)/.05)}.focus\:bg-green-7\/50:focus{background-color:rgb(var(--green-7)/.5)}.focus\:bg-green-7\/60:focus{background-color:rgb(var(--green-7)/.6)}.focus\:bg-green-7\/70:focus{background-color:rgb(var(--green-7)/.7)}.focus\:bg-green-7\/75:focus{background-color:rgb(var(--green-7)/.75)}.focus\:bg-green-7\/80:focus{background-color:rgb(var(--green-7)/.8)}.focus\:bg-green-7\/90:focus{background-color:rgb(var(--green-7)/.9)}.focus\:bg-green-7\/95:focus{background-color:rgb(var(--green-7)/.95)}.focus\:bg-green-8\/0:focus{background-color:rgb(var(--green-8)/0)}.focus\:bg-green-8\/10:focus{background-color:rgb(var(--green-8)/.1)}.focus\:bg-green-8\/100:focus{background-color:rgb(var(--green-8)/1)}.focus\:bg-green-8\/20:focus{background-color:rgb(var(--green-8)/.2)}.focus\:bg-green-8\/25:focus{background-color:rgb(var(--green-8)/.25)}.focus\:bg-green-8\/30:focus{background-color:rgb(var(--green-8)/.3)}.focus\:bg-green-8\/40:focus{background-color:rgb(var(--green-8)/.4)}.focus\:bg-green-8\/5:focus{background-color:rgb(var(--green-8)/.05)}.focus\:bg-green-8\/50:focus{background-color:rgb(var(--green-8)/.5)}.focus\:bg-green-8\/60:focus{background-color:rgb(var(--green-8)/.6)}.focus\:bg-green-8\/70:focus{background-color:rgb(var(--green-8)/.7)}.focus\:bg-green-8\/75:focus{background-color:rgb(var(--green-8)/.75)}.focus\:bg-green-8\/80:focus{background-color:rgb(var(--green-8)/.8)}.focus\:bg-green-8\/90:focus{background-color:rgb(var(--green-8)/.9)}.focus\:bg-green-8\/95:focus{background-color:rgb(var(--green-8)/.95)}.focus\:bg-green-9\/0:focus{background-color:rgb(var(--green-9)/0)}.focus\:bg-green-9\/10:focus{background-color:rgb(var(--green-9)/.1)}.focus\:bg-green-9\/100:focus{background-color:rgb(var(--green-9)/1)}.focus\:bg-green-9\/20:focus{background-color:rgb(var(--green-9)/.2)}.focus\:bg-green-9\/25:focus{background-color:rgb(var(--green-9)/.25)}.focus\:bg-green-9\/30:focus{background-color:rgb(var(--green-9)/.3)}.focus\:bg-green-9\/40:focus{background-color:rgb(var(--green-9)/.4)}.focus\:bg-green-9\/5:focus{background-color:rgb(var(--green-9)/.05)}.focus\:bg-green-9\/50:focus{background-color:rgb(var(--green-9)/.5)}.focus\:bg-green-9\/60:focus{background-color:rgb(var(--green-9)/.6)}.focus\:bg-green-9\/70:focus{background-color:rgb(var(--green-9)/.7)}.focus\:bg-green-9\/75:focus{background-color:rgb(var(--green-9)/.75)}.focus\:bg-green-9\/80:focus{background-color:rgb(var(--green-9)/.8)}.focus\:bg-green-9\/90:focus{background-color:rgb(var(--green-9)/.9)}.focus\:bg-green-9\/95:focus{background-color:rgb(var(--green-9)/.95)}.focus\:bg-pink-1\/0:focus{background-color:rgb(var(--pink-1)/0)}.focus\:bg-pink-1\/10:focus{background-color:rgb(var(--pink-1)/.1)}.focus\:bg-pink-1\/100:focus{background-color:rgb(var(--pink-1)/1)}.focus\:bg-pink-1\/20:focus{background-color:rgb(var(--pink-1)/.2)}.focus\:bg-pink-1\/25:focus{background-color:rgb(var(--pink-1)/.25)}.focus\:bg-pink-1\/30:focus{background-color:rgb(var(--pink-1)/.3)}.focus\:bg-pink-1\/40:focus{background-color:rgb(var(--pink-1)/.4)}.focus\:bg-pink-1\/5:focus{background-color:rgb(var(--pink-1)/.05)}.focus\:bg-pink-1\/50:focus{background-color:rgb(var(--pink-1)/.5)}.focus\:bg-pink-1\/60:focus{background-color:rgb(var(--pink-1)/.6)}.focus\:bg-pink-1\/70:focus{background-color:rgb(var(--pink-1)/.7)}.focus\:bg-pink-1\/75:focus{background-color:rgb(var(--pink-1)/.75)}.focus\:bg-pink-1\/80:focus{background-color:rgb(var(--pink-1)/.8)}.focus\:bg-pink-1\/90:focus{background-color:rgb(var(--pink-1)/.9)}.focus\:bg-pink-1\/95:focus{background-color:rgb(var(--pink-1)/.95)}.focus\:bg-pink-10\/0:focus{background-color:rgb(var(--pink-10)/0)}.focus\:bg-pink-10\/10:focus{background-color:rgb(var(--pink-10)/.1)}.focus\:bg-pink-10\/100:focus{background-color:rgb(var(--pink-10)/1)}.focus\:bg-pink-10\/20:focus{background-color:rgb(var(--pink-10)/.2)}.focus\:bg-pink-10\/25:focus{background-color:rgb(var(--pink-10)/.25)}.focus\:bg-pink-10\/30:focus{background-color:rgb(var(--pink-10)/.3)}.focus\:bg-pink-10\/40:focus{background-color:rgb(var(--pink-10)/.4)}.focus\:bg-pink-10\/5:focus{background-color:rgb(var(--pink-10)/.05)}.focus\:bg-pink-10\/50:focus{background-color:rgb(var(--pink-10)/.5)}.focus\:bg-pink-10\/60:focus{background-color:rgb(var(--pink-10)/.6)}.focus\:bg-pink-10\/70:focus{background-color:rgb(var(--pink-10)/.7)}.focus\:bg-pink-10\/75:focus{background-color:rgb(var(--pink-10)/.75)}.focus\:bg-pink-10\/80:focus{background-color:rgb(var(--pink-10)/.8)}.focus\:bg-pink-10\/90:focus{background-color:rgb(var(--pink-10)/.9)}.focus\:bg-pink-10\/95:focus{background-color:rgb(var(--pink-10)/.95)}.focus\:bg-pink-2\/0:focus{background-color:rgb(var(--pink-2)/0)}.focus\:bg-pink-2\/10:focus{background-color:rgb(var(--pink-2)/.1)}.focus\:bg-pink-2\/100:focus{background-color:rgb(var(--pink-2)/1)}.focus\:bg-pink-2\/20:focus{background-color:rgb(var(--pink-2)/.2)}.focus\:bg-pink-2\/25:focus{background-color:rgb(var(--pink-2)/.25)}.focus\:bg-pink-2\/30:focus{background-color:rgb(var(--pink-2)/.3)}.focus\:bg-pink-2\/40:focus{background-color:rgb(var(--pink-2)/.4)}.focus\:bg-pink-2\/5:focus{background-color:rgb(var(--pink-2)/.05)}.focus\:bg-pink-2\/50:focus{background-color:rgb(var(--pink-2)/.5)}.focus\:bg-pink-2\/60:focus{background-color:rgb(var(--pink-2)/.6)}.focus\:bg-pink-2\/70:focus{background-color:rgb(var(--pink-2)/.7)}.focus\:bg-pink-2\/75:focus{background-color:rgb(var(--pink-2)/.75)}.focus\:bg-pink-2\/80:focus{background-color:rgb(var(--pink-2)/.8)}.focus\:bg-pink-2\/90:focus{background-color:rgb(var(--pink-2)/.9)}.focus\:bg-pink-2\/95:focus{background-color:rgb(var(--pink-2)/.95)}.focus\:bg-pink-3\/0:focus{background-color:rgb(var(--pink-3)/0)}.focus\:bg-pink-3\/10:focus{background-color:rgb(var(--pink-3)/.1)}.focus\:bg-pink-3\/100:focus{background-color:rgb(var(--pink-3)/1)}.focus\:bg-pink-3\/20:focus{background-color:rgb(var(--pink-3)/.2)}.focus\:bg-pink-3\/25:focus{background-color:rgb(var(--pink-3)/.25)}.focus\:bg-pink-3\/30:focus{background-color:rgb(var(--pink-3)/.3)}.focus\:bg-pink-3\/40:focus{background-color:rgb(var(--pink-3)/.4)}.focus\:bg-pink-3\/5:focus{background-color:rgb(var(--pink-3)/.05)}.focus\:bg-pink-3\/50:focus{background-color:rgb(var(--pink-3)/.5)}.focus\:bg-pink-3\/60:focus{background-color:rgb(var(--pink-3)/.6)}.focus\:bg-pink-3\/70:focus{background-color:rgb(var(--pink-3)/.7)}.focus\:bg-pink-3\/75:focus{background-color:rgb(var(--pink-3)/.75)}.focus\:bg-pink-3\/80:focus{background-color:rgb(var(--pink-3)/.8)}.focus\:bg-pink-3\/90:focus{background-color:rgb(var(--pink-3)/.9)}.focus\:bg-pink-3\/95:focus{background-color:rgb(var(--pink-3)/.95)}.focus\:bg-pink-4\/0:focus{background-color:rgb(var(--pink-4)/0)}.focus\:bg-pink-4\/10:focus{background-color:rgb(var(--pink-4)/.1)}.focus\:bg-pink-4\/100:focus{background-color:rgb(var(--pink-4)/1)}.focus\:bg-pink-4\/20:focus{background-color:rgb(var(--pink-4)/.2)}.focus\:bg-pink-4\/25:focus{background-color:rgb(var(--pink-4)/.25)}.focus\:bg-pink-4\/30:focus{background-color:rgb(var(--pink-4)/.3)}.focus\:bg-pink-4\/40:focus{background-color:rgb(var(--pink-4)/.4)}.focus\:bg-pink-4\/5:focus{background-color:rgb(var(--pink-4)/.05)}.focus\:bg-pink-4\/50:focus{background-color:rgb(var(--pink-4)/.5)}.focus\:bg-pink-4\/60:focus{background-color:rgb(var(--pink-4)/.6)}.focus\:bg-pink-4\/70:focus{background-color:rgb(var(--pink-4)/.7)}.focus\:bg-pink-4\/75:focus{background-color:rgb(var(--pink-4)/.75)}.focus\:bg-pink-4\/80:focus{background-color:rgb(var(--pink-4)/.8)}.focus\:bg-pink-4\/90:focus{background-color:rgb(var(--pink-4)/.9)}.focus\:bg-pink-4\/95:focus{background-color:rgb(var(--pink-4)/.95)}.focus\:bg-pink-5\/0:focus{background-color:rgb(var(--pink-5)/0)}.focus\:bg-pink-5\/10:focus{background-color:rgb(var(--pink-5)/.1)}.focus\:bg-pink-5\/100:focus{background-color:rgb(var(--pink-5)/1)}.focus\:bg-pink-5\/20:focus{background-color:rgb(var(--pink-5)/.2)}.focus\:bg-pink-5\/25:focus{background-color:rgb(var(--pink-5)/.25)}.focus\:bg-pink-5\/30:focus{background-color:rgb(var(--pink-5)/.3)}.focus\:bg-pink-5\/40:focus{background-color:rgb(var(--pink-5)/.4)}.focus\:bg-pink-5\/5:focus{background-color:rgb(var(--pink-5)/.05)}.focus\:bg-pink-5\/50:focus{background-color:rgb(var(--pink-5)/.5)}.focus\:bg-pink-5\/60:focus{background-color:rgb(var(--pink-5)/.6)}.focus\:bg-pink-5\/70:focus{background-color:rgb(var(--pink-5)/.7)}.focus\:bg-pink-5\/75:focus{background-color:rgb(var(--pink-5)/.75)}.focus\:bg-pink-5\/80:focus{background-color:rgb(var(--pink-5)/.8)}.focus\:bg-pink-5\/90:focus{background-color:rgb(var(--pink-5)/.9)}.focus\:bg-pink-5\/95:focus{background-color:rgb(var(--pink-5)/.95)}.focus\:bg-pink-6\/0:focus{background-color:rgb(var(--pink-6)/0)}.focus\:bg-pink-6\/10:focus{background-color:rgb(var(--pink-6)/.1)}.focus\:bg-pink-6\/100:focus{background-color:rgb(var(--pink-6)/1)}.focus\:bg-pink-6\/20:focus{background-color:rgb(var(--pink-6)/.2)}.focus\:bg-pink-6\/25:focus{background-color:rgb(var(--pink-6)/.25)}.focus\:bg-pink-6\/30:focus{background-color:rgb(var(--pink-6)/.3)}.focus\:bg-pink-6\/40:focus{background-color:rgb(var(--pink-6)/.4)}.focus\:bg-pink-6\/5:focus{background-color:rgb(var(--pink-6)/.05)}.focus\:bg-pink-6\/50:focus{background-color:rgb(var(--pink-6)/.5)}.focus\:bg-pink-6\/60:focus{background-color:rgb(var(--pink-6)/.6)}.focus\:bg-pink-6\/70:focus{background-color:rgb(var(--pink-6)/.7)}.focus\:bg-pink-6\/75:focus{background-color:rgb(var(--pink-6)/.75)}.focus\:bg-pink-6\/80:focus{background-color:rgb(var(--pink-6)/.8)}.focus\:bg-pink-6\/90:focus{background-color:rgb(var(--pink-6)/.9)}.focus\:bg-pink-6\/95:focus{background-color:rgb(var(--pink-6)/.95)}.focus\:bg-pink-7\/0:focus{background-color:rgb(var(--pink-7)/0)}.focus\:bg-pink-7\/10:focus{background-color:rgb(var(--pink-7)/.1)}.focus\:bg-pink-7\/100:focus{background-color:rgb(var(--pink-7)/1)}.focus\:bg-pink-7\/20:focus{background-color:rgb(var(--pink-7)/.2)}.focus\:bg-pink-7\/25:focus{background-color:rgb(var(--pink-7)/.25)}.focus\:bg-pink-7\/30:focus{background-color:rgb(var(--pink-7)/.3)}.focus\:bg-pink-7\/40:focus{background-color:rgb(var(--pink-7)/.4)}.focus\:bg-pink-7\/5:focus{background-color:rgb(var(--pink-7)/.05)}.focus\:bg-pink-7\/50:focus{background-color:rgb(var(--pink-7)/.5)}.focus\:bg-pink-7\/60:focus{background-color:rgb(var(--pink-7)/.6)}.focus\:bg-pink-7\/70:focus{background-color:rgb(var(--pink-7)/.7)}.focus\:bg-pink-7\/75:focus{background-color:rgb(var(--pink-7)/.75)}.focus\:bg-pink-7\/80:focus{background-color:rgb(var(--pink-7)/.8)}.focus\:bg-pink-7\/90:focus{background-color:rgb(var(--pink-7)/.9)}.focus\:bg-pink-7\/95:focus{background-color:rgb(var(--pink-7)/.95)}.focus\:bg-pink-8\/0:focus{background-color:rgb(var(--pink-8)/0)}.focus\:bg-pink-8\/10:focus{background-color:rgb(var(--pink-8)/.1)}.focus\:bg-pink-8\/100:focus{background-color:rgb(var(--pink-8)/1)}.focus\:bg-pink-8\/20:focus{background-color:rgb(var(--pink-8)/.2)}.focus\:bg-pink-8\/25:focus{background-color:rgb(var(--pink-8)/.25)}.focus\:bg-pink-8\/30:focus{background-color:rgb(var(--pink-8)/.3)}.focus\:bg-pink-8\/40:focus{background-color:rgb(var(--pink-8)/.4)}.focus\:bg-pink-8\/5:focus{background-color:rgb(var(--pink-8)/.05)}.focus\:bg-pink-8\/50:focus{background-color:rgb(var(--pink-8)/.5)}.focus\:bg-pink-8\/60:focus{background-color:rgb(var(--pink-8)/.6)}.focus\:bg-pink-8\/70:focus{background-color:rgb(var(--pink-8)/.7)}.focus\:bg-pink-8\/75:focus{background-color:rgb(var(--pink-8)/.75)}.focus\:bg-pink-8\/80:focus{background-color:rgb(var(--pink-8)/.8)}.focus\:bg-pink-8\/90:focus{background-color:rgb(var(--pink-8)/.9)}.focus\:bg-pink-8\/95:focus{background-color:rgb(var(--pink-8)/.95)}.focus\:bg-pink-9\/0:focus{background-color:rgb(var(--pink-9)/0)}.focus\:bg-pink-9\/10:focus{background-color:rgb(var(--pink-9)/.1)}.focus\:bg-pink-9\/100:focus{background-color:rgb(var(--pink-9)/1)}.focus\:bg-pink-9\/20:focus{background-color:rgb(var(--pink-9)/.2)}.focus\:bg-pink-9\/25:focus{background-color:rgb(var(--pink-9)/.25)}.focus\:bg-pink-9\/30:focus{background-color:rgb(var(--pink-9)/.3)}.focus\:bg-pink-9\/40:focus{background-color:rgb(var(--pink-9)/.4)}.focus\:bg-pink-9\/5:focus{background-color:rgb(var(--pink-9)/.05)}.focus\:bg-pink-9\/50:focus{background-color:rgb(var(--pink-9)/.5)}.focus\:bg-pink-9\/60:focus{background-color:rgb(var(--pink-9)/.6)}.focus\:bg-pink-9\/70:focus{background-color:rgb(var(--pink-9)/.7)}.focus\:bg-pink-9\/75:focus{background-color:rgb(var(--pink-9)/.75)}.focus\:bg-pink-9\/80:focus{background-color:rgb(var(--pink-9)/.8)}.focus\:bg-pink-9\/90:focus{background-color:rgb(var(--pink-9)/.9)}.focus\:bg-pink-9\/95:focus{background-color:rgb(var(--pink-9)/.95)}.focus\:bg-primary:focus{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity))}.focus\:bg-primary\/0:focus{background-color:rgb(var(--primary)/0)}.focus\:bg-primary\/10:focus{background-color:rgb(var(--primary)/.1)}.focus\:bg-primary\/100:focus{background-color:rgb(var(--primary)/1)}.focus\:bg-primary\/20:focus{background-color:rgb(var(--primary)/.2)}.focus\:bg-primary\/25:focus{background-color:rgb(var(--primary)/.25)}.focus\:bg-primary\/30:focus{background-color:rgb(var(--primary)/.3)}.focus\:bg-primary\/40:focus{background-color:rgb(var(--primary)/.4)}.focus\:bg-primary\/5:focus{background-color:rgb(var(--primary)/.05)}.focus\:bg-primary\/50:focus{background-color:rgb(var(--primary)/.5)}.focus\:bg-primary\/60:focus{background-color:rgb(var(--primary)/.6)}.focus\:bg-primary\/70:focus{background-color:rgb(var(--primary)/.7)}.focus\:bg-primary\/75:focus{background-color:rgb(var(--primary)/.75)}.focus\:bg-primary\/80:focus{background-color:rgb(var(--primary)/.8)}.focus\:bg-primary\/90:focus{background-color:rgb(var(--primary)/.9)}.focus\:bg-primary\/95:focus{background-color:rgb(var(--primary)/.95)}.focus\:bg-purple-1\/0:focus{background-color:rgb(var(--purple-1)/0)}.focus\:bg-purple-1\/10:focus{background-color:rgb(var(--purple-1)/.1)}.focus\:bg-purple-1\/100:focus{background-color:rgb(var(--purple-1)/1)}.focus\:bg-purple-1\/20:focus{background-color:rgb(var(--purple-1)/.2)}.focus\:bg-purple-1\/25:focus{background-color:rgb(var(--purple-1)/.25)}.focus\:bg-purple-1\/30:focus{background-color:rgb(var(--purple-1)/.3)}.focus\:bg-purple-1\/40:focus{background-color:rgb(var(--purple-1)/.4)}.focus\:bg-purple-1\/5:focus{background-color:rgb(var(--purple-1)/.05)}.focus\:bg-purple-1\/50:focus{background-color:rgb(var(--purple-1)/.5)}.focus\:bg-purple-1\/60:focus{background-color:rgb(var(--purple-1)/.6)}.focus\:bg-purple-1\/70:focus{background-color:rgb(var(--purple-1)/.7)}.focus\:bg-purple-1\/75:focus{background-color:rgb(var(--purple-1)/.75)}.focus\:bg-purple-1\/80:focus{background-color:rgb(var(--purple-1)/.8)}.focus\:bg-purple-1\/90:focus{background-color:rgb(var(--purple-1)/.9)}.focus\:bg-purple-1\/95:focus{background-color:rgb(var(--purple-1)/.95)}.focus\:bg-purple-10\/0:focus{background-color:rgb(var(--purple-10)/0)}.focus\:bg-purple-10\/10:focus{background-color:rgb(var(--purple-10)/.1)}.focus\:bg-purple-10\/100:focus{background-color:rgb(var(--purple-10)/1)}.focus\:bg-purple-10\/20:focus{background-color:rgb(var(--purple-10)/.2)}.focus\:bg-purple-10\/25:focus{background-color:rgb(var(--purple-10)/.25)}.focus\:bg-purple-10\/30:focus{background-color:rgb(var(--purple-10)/.3)}.focus\:bg-purple-10\/40:focus{background-color:rgb(var(--purple-10)/.4)}.focus\:bg-purple-10\/5:focus{background-color:rgb(var(--purple-10)/.05)}.focus\:bg-purple-10\/50:focus{background-color:rgb(var(--purple-10)/.5)}.focus\:bg-purple-10\/60:focus{background-color:rgb(var(--purple-10)/.6)}.focus\:bg-purple-10\/70:focus{background-color:rgb(var(--purple-10)/.7)}.focus\:bg-purple-10\/75:focus{background-color:rgb(var(--purple-10)/.75)}.focus\:bg-purple-10\/80:focus{background-color:rgb(var(--purple-10)/.8)}.focus\:bg-purple-10\/90:focus{background-color:rgb(var(--purple-10)/.9)}.focus\:bg-purple-10\/95:focus{background-color:rgb(var(--purple-10)/.95)}.focus\:bg-purple-2\/0:focus{background-color:rgb(var(--purple-2)/0)}.focus\:bg-purple-2\/10:focus{background-color:rgb(var(--purple-2)/.1)}.focus\:bg-purple-2\/100:focus{background-color:rgb(var(--purple-2)/1)}.focus\:bg-purple-2\/20:focus{background-color:rgb(var(--purple-2)/.2)}.focus\:bg-purple-2\/25:focus{background-color:rgb(var(--purple-2)/.25)}.focus\:bg-purple-2\/30:focus{background-color:rgb(var(--purple-2)/.3)}.focus\:bg-purple-2\/40:focus{background-color:rgb(var(--purple-2)/.4)}.focus\:bg-purple-2\/5:focus{background-color:rgb(var(--purple-2)/.05)}.focus\:bg-purple-2\/50:focus{background-color:rgb(var(--purple-2)/.5)}.focus\:bg-purple-2\/60:focus{background-color:rgb(var(--purple-2)/.6)}.focus\:bg-purple-2\/70:focus{background-color:rgb(var(--purple-2)/.7)}.focus\:bg-purple-2\/75:focus{background-color:rgb(var(--purple-2)/.75)}.focus\:bg-purple-2\/80:focus{background-color:rgb(var(--purple-2)/.8)}.focus\:bg-purple-2\/90:focus{background-color:rgb(var(--purple-2)/.9)}.focus\:bg-purple-2\/95:focus{background-color:rgb(var(--purple-2)/.95)}.focus\:bg-purple-3\/0:focus{background-color:rgb(var(--purple-3)/0)}.focus\:bg-purple-3\/10:focus{background-color:rgb(var(--purple-3)/.1)}.focus\:bg-purple-3\/100:focus{background-color:rgb(var(--purple-3)/1)}.focus\:bg-purple-3\/20:focus{background-color:rgb(var(--purple-3)/.2)}.focus\:bg-purple-3\/25:focus{background-color:rgb(var(--purple-3)/.25)}.focus\:bg-purple-3\/30:focus{background-color:rgb(var(--purple-3)/.3)}.focus\:bg-purple-3\/40:focus{background-color:rgb(var(--purple-3)/.4)}.focus\:bg-purple-3\/5:focus{background-color:rgb(var(--purple-3)/.05)}.focus\:bg-purple-3\/50:focus{background-color:rgb(var(--purple-3)/.5)}.focus\:bg-purple-3\/60:focus{background-color:rgb(var(--purple-3)/.6)}.focus\:bg-purple-3\/70:focus{background-color:rgb(var(--purple-3)/.7)}.focus\:bg-purple-3\/75:focus{background-color:rgb(var(--purple-3)/.75)}.focus\:bg-purple-3\/80:focus{background-color:rgb(var(--purple-3)/.8)}.focus\:bg-purple-3\/90:focus{background-color:rgb(var(--purple-3)/.9)}.focus\:bg-purple-3\/95:focus{background-color:rgb(var(--purple-3)/.95)}.focus\:bg-purple-4\/0:focus{background-color:rgb(var(--purple-4)/0)}.focus\:bg-purple-4\/10:focus{background-color:rgb(var(--purple-4)/.1)}.focus\:bg-purple-4\/100:focus{background-color:rgb(var(--purple-4)/1)}.focus\:bg-purple-4\/20:focus{background-color:rgb(var(--purple-4)/.2)}.focus\:bg-purple-4\/25:focus{background-color:rgb(var(--purple-4)/.25)}.focus\:bg-purple-4\/30:focus{background-color:rgb(var(--purple-4)/.3)}.focus\:bg-purple-4\/40:focus{background-color:rgb(var(--purple-4)/.4)}.focus\:bg-purple-4\/5:focus{background-color:rgb(var(--purple-4)/.05)}.focus\:bg-purple-4\/50:focus{background-color:rgb(var(--purple-4)/.5)}.focus\:bg-purple-4\/60:focus{background-color:rgb(var(--purple-4)/.6)}.focus\:bg-purple-4\/70:focus{background-color:rgb(var(--purple-4)/.7)}.focus\:bg-purple-4\/75:focus{background-color:rgb(var(--purple-4)/.75)}.focus\:bg-purple-4\/80:focus{background-color:rgb(var(--purple-4)/.8)}.focus\:bg-purple-4\/90:focus{background-color:rgb(var(--purple-4)/.9)}.focus\:bg-purple-4\/95:focus{background-color:rgb(var(--purple-4)/.95)}.focus\:bg-purple-5\/0:focus{background-color:rgb(var(--purple-5)/0)}.focus\:bg-purple-5\/10:focus{background-color:rgb(var(--purple-5)/.1)}.focus\:bg-purple-5\/100:focus{background-color:rgb(var(--purple-5)/1)}.focus\:bg-purple-5\/20:focus{background-color:rgb(var(--purple-5)/.2)}.focus\:bg-purple-5\/25:focus{background-color:rgb(var(--purple-5)/.25)}.focus\:bg-purple-5\/30:focus{background-color:rgb(var(--purple-5)/.3)}.focus\:bg-purple-5\/40:focus{background-color:rgb(var(--purple-5)/.4)}.focus\:bg-purple-5\/5:focus{background-color:rgb(var(--purple-5)/.05)}.focus\:bg-purple-5\/50:focus{background-color:rgb(var(--purple-5)/.5)}.focus\:bg-purple-5\/60:focus{background-color:rgb(var(--purple-5)/.6)}.focus\:bg-purple-5\/70:focus{background-color:rgb(var(--purple-5)/.7)}.focus\:bg-purple-5\/75:focus{background-color:rgb(var(--purple-5)/.75)}.focus\:bg-purple-5\/80:focus{background-color:rgb(var(--purple-5)/.8)}.focus\:bg-purple-5\/90:focus{background-color:rgb(var(--purple-5)/.9)}.focus\:bg-purple-5\/95:focus{background-color:rgb(var(--purple-5)/.95)}.focus\:bg-purple-6\/0:focus{background-color:rgb(var(--purple-6)/0)}.focus\:bg-purple-6\/10:focus{background-color:rgb(var(--purple-6)/.1)}.focus\:bg-purple-6\/100:focus{background-color:rgb(var(--purple-6)/1)}.focus\:bg-purple-6\/20:focus{background-color:rgb(var(--purple-6)/.2)}.focus\:bg-purple-6\/25:focus{background-color:rgb(var(--purple-6)/.25)}.focus\:bg-purple-6\/30:focus{background-color:rgb(var(--purple-6)/.3)}.focus\:bg-purple-6\/40:focus{background-color:rgb(var(--purple-6)/.4)}.focus\:bg-purple-6\/5:focus{background-color:rgb(var(--purple-6)/.05)}.focus\:bg-purple-6\/50:focus{background-color:rgb(var(--purple-6)/.5)}.focus\:bg-purple-6\/60:focus{background-color:rgb(var(--purple-6)/.6)}.focus\:bg-purple-6\/70:focus{background-color:rgb(var(--purple-6)/.7)}.focus\:bg-purple-6\/75:focus{background-color:rgb(var(--purple-6)/.75)}.focus\:bg-purple-6\/80:focus{background-color:rgb(var(--purple-6)/.8)}.focus\:bg-purple-6\/90:focus{background-color:rgb(var(--purple-6)/.9)}.focus\:bg-purple-6\/95:focus{background-color:rgb(var(--purple-6)/.95)}.focus\:bg-purple-7\/0:focus{background-color:rgb(var(--purple-7)/0)}.focus\:bg-purple-7\/10:focus{background-color:rgb(var(--purple-7)/.1)}.focus\:bg-purple-7\/100:focus{background-color:rgb(var(--purple-7)/1)}.focus\:bg-purple-7\/20:focus{background-color:rgb(var(--purple-7)/.2)}.focus\:bg-purple-7\/25:focus{background-color:rgb(var(--purple-7)/.25)}.focus\:bg-purple-7\/30:focus{background-color:rgb(var(--purple-7)/.3)}.focus\:bg-purple-7\/40:focus{background-color:rgb(var(--purple-7)/.4)}.focus\:bg-purple-7\/5:focus{background-color:rgb(var(--purple-7)/.05)}.focus\:bg-purple-7\/50:focus{background-color:rgb(var(--purple-7)/.5)}.focus\:bg-purple-7\/60:focus{background-color:rgb(var(--purple-7)/.6)}.focus\:bg-purple-7\/70:focus{background-color:rgb(var(--purple-7)/.7)}.focus\:bg-purple-7\/75:focus{background-color:rgb(var(--purple-7)/.75)}.focus\:bg-purple-7\/80:focus{background-color:rgb(var(--purple-7)/.8)}.focus\:bg-purple-7\/90:focus{background-color:rgb(var(--purple-7)/.9)}.focus\:bg-purple-7\/95:focus{background-color:rgb(var(--purple-7)/.95)}.focus\:bg-purple-8\/0:focus{background-color:rgb(var(--purple-8)/0)}.focus\:bg-purple-8\/10:focus{background-color:rgb(var(--purple-8)/.1)}.focus\:bg-purple-8\/100:focus{background-color:rgb(var(--purple-8)/1)}.focus\:bg-purple-8\/20:focus{background-color:rgb(var(--purple-8)/.2)}.focus\:bg-purple-8\/25:focus{background-color:rgb(var(--purple-8)/.25)}.focus\:bg-purple-8\/30:focus{background-color:rgb(var(--purple-8)/.3)}.focus\:bg-purple-8\/40:focus{background-color:rgb(var(--purple-8)/.4)}.focus\:bg-purple-8\/5:focus{background-color:rgb(var(--purple-8)/.05)}.focus\:bg-purple-8\/50:focus{background-color:rgb(var(--purple-8)/.5)}.focus\:bg-purple-8\/60:focus{background-color:rgb(var(--purple-8)/.6)}.focus\:bg-purple-8\/70:focus{background-color:rgb(var(--purple-8)/.7)}.focus\:bg-purple-8\/75:focus{background-color:rgb(var(--purple-8)/.75)}.focus\:bg-purple-8\/80:focus{background-color:rgb(var(--purple-8)/.8)}.focus\:bg-purple-8\/90:focus{background-color:rgb(var(--purple-8)/.9)}.focus\:bg-purple-8\/95:focus{background-color:rgb(var(--purple-8)/.95)}.focus\:bg-purple-9\/0:focus{background-color:rgb(var(--purple-9)/0)}.focus\:bg-purple-9\/10:focus{background-color:rgb(var(--purple-9)/.1)}.focus\:bg-purple-9\/100:focus{background-color:rgb(var(--purple-9)/1)}.focus\:bg-purple-9\/20:focus{background-color:rgb(var(--purple-9)/.2)}.focus\:bg-purple-9\/25:focus{background-color:rgb(var(--purple-9)/.25)}.focus\:bg-purple-9\/30:focus{background-color:rgb(var(--purple-9)/.3)}.focus\:bg-purple-9\/40:focus{background-color:rgb(var(--purple-9)/.4)}.focus\:bg-purple-9\/5:focus{background-color:rgb(var(--purple-9)/.05)}.focus\:bg-purple-9\/50:focus{background-color:rgb(var(--purple-9)/.5)}.focus\:bg-purple-9\/60:focus{background-color:rgb(var(--purple-9)/.6)}.focus\:bg-purple-9\/70:focus{background-color:rgb(var(--purple-9)/.7)}.focus\:bg-purple-9\/75:focus{background-color:rgb(var(--purple-9)/.75)}.focus\:bg-purple-9\/80:focus{background-color:rgb(var(--purple-9)/.8)}.focus\:bg-purple-9\/90:focus{background-color:rgb(var(--purple-9)/.9)}.focus\:bg-purple-9\/95:focus{background-color:rgb(var(--purple-9)/.95)}.focus\:bg-red-1\/0:focus{background-color:rgb(var(--red-1)/0)}.focus\:bg-red-1\/10:focus{background-color:rgb(var(--red-1)/.1)}.focus\:bg-red-1\/100:focus{background-color:rgb(var(--red-1)/1)}.focus\:bg-red-1\/20:focus{background-color:rgb(var(--red-1)/.2)}.focus\:bg-red-1\/25:focus{background-color:rgb(var(--red-1)/.25)}.focus\:bg-red-1\/30:focus{background-color:rgb(var(--red-1)/.3)}.focus\:bg-red-1\/40:focus{background-color:rgb(var(--red-1)/.4)}.focus\:bg-red-1\/5:focus{background-color:rgb(var(--red-1)/.05)}.focus\:bg-red-1\/50:focus{background-color:rgb(var(--red-1)/.5)}.focus\:bg-red-1\/60:focus{background-color:rgb(var(--red-1)/.6)}.focus\:bg-red-1\/70:focus{background-color:rgb(var(--red-1)/.7)}.focus\:bg-red-1\/75:focus{background-color:rgb(var(--red-1)/.75)}.focus\:bg-red-1\/80:focus{background-color:rgb(var(--red-1)/.8)}.focus\:bg-red-1\/90:focus{background-color:rgb(var(--red-1)/.9)}.focus\:bg-red-1\/95:focus{background-color:rgb(var(--red-1)/.95)}.focus\:bg-red-10\/0:focus{background-color:rgb(var(--red-10)/0)}.focus\:bg-red-10\/10:focus{background-color:rgb(var(--red-10)/.1)}.focus\:bg-red-10\/100:focus{background-color:rgb(var(--red-10)/1)}.focus\:bg-red-10\/20:focus{background-color:rgb(var(--red-10)/.2)}.focus\:bg-red-10\/25:focus{background-color:rgb(var(--red-10)/.25)}.focus\:bg-red-10\/30:focus{background-color:rgb(var(--red-10)/.3)}.focus\:bg-red-10\/40:focus{background-color:rgb(var(--red-10)/.4)}.focus\:bg-red-10\/5:focus{background-color:rgb(var(--red-10)/.05)}.focus\:bg-red-10\/50:focus{background-color:rgb(var(--red-10)/.5)}.focus\:bg-red-10\/60:focus{background-color:rgb(var(--red-10)/.6)}.focus\:bg-red-10\/70:focus{background-color:rgb(var(--red-10)/.7)}.focus\:bg-red-10\/75:focus{background-color:rgb(var(--red-10)/.75)}.focus\:bg-red-10\/80:focus{background-color:rgb(var(--red-10)/.8)}.focus\:bg-red-10\/90:focus{background-color:rgb(var(--red-10)/.9)}.focus\:bg-red-10\/95:focus{background-color:rgb(var(--red-10)/.95)}.focus\:bg-red-2\/0:focus{background-color:rgb(var(--red-2)/0)}.focus\:bg-red-2\/10:focus{background-color:rgb(var(--red-2)/.1)}.focus\:bg-red-2\/100:focus{background-color:rgb(var(--red-2)/1)}.focus\:bg-red-2\/20:focus{background-color:rgb(var(--red-2)/.2)}.focus\:bg-red-2\/25:focus{background-color:rgb(var(--red-2)/.25)}.focus\:bg-red-2\/30:focus{background-color:rgb(var(--red-2)/.3)}.focus\:bg-red-2\/40:focus{background-color:rgb(var(--red-2)/.4)}.focus\:bg-red-2\/5:focus{background-color:rgb(var(--red-2)/.05)}.focus\:bg-red-2\/50:focus{background-color:rgb(var(--red-2)/.5)}.focus\:bg-red-2\/60:focus{background-color:rgb(var(--red-2)/.6)}.focus\:bg-red-2\/70:focus{background-color:rgb(var(--red-2)/.7)}.focus\:bg-red-2\/75:focus{background-color:rgb(var(--red-2)/.75)}.focus\:bg-red-2\/80:focus{background-color:rgb(var(--red-2)/.8)}.focus\:bg-red-2\/90:focus{background-color:rgb(var(--red-2)/.9)}.focus\:bg-red-2\/95:focus{background-color:rgb(var(--red-2)/.95)}.focus\:bg-red-3\/0:focus{background-color:rgb(var(--red-3)/0)}.focus\:bg-red-3\/10:focus{background-color:rgb(var(--red-3)/.1)}.focus\:bg-red-3\/100:focus{background-color:rgb(var(--red-3)/1)}.focus\:bg-red-3\/20:focus{background-color:rgb(var(--red-3)/.2)}.focus\:bg-red-3\/25:focus{background-color:rgb(var(--red-3)/.25)}.focus\:bg-red-3\/30:focus{background-color:rgb(var(--red-3)/.3)}.focus\:bg-red-3\/40:focus{background-color:rgb(var(--red-3)/.4)}.focus\:bg-red-3\/5:focus{background-color:rgb(var(--red-3)/.05)}.focus\:bg-red-3\/50:focus{background-color:rgb(var(--red-3)/.5)}.focus\:bg-red-3\/60:focus{background-color:rgb(var(--red-3)/.6)}.focus\:bg-red-3\/70:focus{background-color:rgb(var(--red-3)/.7)}.focus\:bg-red-3\/75:focus{background-color:rgb(var(--red-3)/.75)}.focus\:bg-red-3\/80:focus{background-color:rgb(var(--red-3)/.8)}.focus\:bg-red-3\/90:focus{background-color:rgb(var(--red-3)/.9)}.focus\:bg-red-3\/95:focus{background-color:rgb(var(--red-3)/.95)}.focus\:bg-red-4\/0:focus{background-color:rgb(var(--red-4)/0)}.focus\:bg-red-4\/10:focus{background-color:rgb(var(--red-4)/.1)}.focus\:bg-red-4\/100:focus{background-color:rgb(var(--red-4)/1)}.focus\:bg-red-4\/20:focus{background-color:rgb(var(--red-4)/.2)}.focus\:bg-red-4\/25:focus{background-color:rgb(var(--red-4)/.25)}.focus\:bg-red-4\/30:focus{background-color:rgb(var(--red-4)/.3)}.focus\:bg-red-4\/40:focus{background-color:rgb(var(--red-4)/.4)}.focus\:bg-red-4\/5:focus{background-color:rgb(var(--red-4)/.05)}.focus\:bg-red-4\/50:focus{background-color:rgb(var(--red-4)/.5)}.focus\:bg-red-4\/60:focus{background-color:rgb(var(--red-4)/.6)}.focus\:bg-red-4\/70:focus{background-color:rgb(var(--red-4)/.7)}.focus\:bg-red-4\/75:focus{background-color:rgb(var(--red-4)/.75)}.focus\:bg-red-4\/80:focus{background-color:rgb(var(--red-4)/.8)}.focus\:bg-red-4\/90:focus{background-color:rgb(var(--red-4)/.9)}.focus\:bg-red-4\/95:focus{background-color:rgb(var(--red-4)/.95)}.focus\:bg-red-5\/0:focus{background-color:rgb(var(--red-5)/0)}.focus\:bg-red-5\/10:focus{background-color:rgb(var(--red-5)/.1)}.focus\:bg-red-5\/100:focus{background-color:rgb(var(--red-5)/1)}.focus\:bg-red-5\/20:focus{background-color:rgb(var(--red-5)/.2)}.focus\:bg-red-5\/25:focus{background-color:rgb(var(--red-5)/.25)}.focus\:bg-red-5\/30:focus{background-color:rgb(var(--red-5)/.3)}.focus\:bg-red-5\/40:focus{background-color:rgb(var(--red-5)/.4)}.focus\:bg-red-5\/5:focus{background-color:rgb(var(--red-5)/.05)}.focus\:bg-red-5\/50:focus{background-color:rgb(var(--red-5)/.5)}.focus\:bg-red-5\/60:focus{background-color:rgb(var(--red-5)/.6)}.focus\:bg-red-5\/70:focus{background-color:rgb(var(--red-5)/.7)}.focus\:bg-red-5\/75:focus{background-color:rgb(var(--red-5)/.75)}.focus\:bg-red-5\/80:focus{background-color:rgb(var(--red-5)/.8)}.focus\:bg-red-5\/90:focus{background-color:rgb(var(--red-5)/.9)}.focus\:bg-red-5\/95:focus{background-color:rgb(var(--red-5)/.95)}.focus\:bg-red-6\/0:focus{background-color:rgb(var(--red-6)/0)}.focus\:bg-red-6\/10:focus{background-color:rgb(var(--red-6)/.1)}.focus\:bg-red-6\/100:focus{background-color:rgb(var(--red-6)/1)}.focus\:bg-red-6\/20:focus{background-color:rgb(var(--red-6)/.2)}.focus\:bg-red-6\/25:focus{background-color:rgb(var(--red-6)/.25)}.focus\:bg-red-6\/30:focus{background-color:rgb(var(--red-6)/.3)}.focus\:bg-red-6\/40:focus{background-color:rgb(var(--red-6)/.4)}.focus\:bg-red-6\/5:focus{background-color:rgb(var(--red-6)/.05)}.focus\:bg-red-6\/50:focus{background-color:rgb(var(--red-6)/.5)}.focus\:bg-red-6\/60:focus{background-color:rgb(var(--red-6)/.6)}.focus\:bg-red-6\/70:focus{background-color:rgb(var(--red-6)/.7)}.focus\:bg-red-6\/75:focus{background-color:rgb(var(--red-6)/.75)}.focus\:bg-red-6\/80:focus{background-color:rgb(var(--red-6)/.8)}.focus\:bg-red-6\/90:focus{background-color:rgb(var(--red-6)/.9)}.focus\:bg-red-6\/95:focus{background-color:rgb(var(--red-6)/.95)}.focus\:bg-red-7\/0:focus{background-color:rgb(var(--red-7)/0)}.focus\:bg-red-7\/10:focus{background-color:rgb(var(--red-7)/.1)}.focus\:bg-red-7\/100:focus{background-color:rgb(var(--red-7)/1)}.focus\:bg-red-7\/20:focus{background-color:rgb(var(--red-7)/.2)}.focus\:bg-red-7\/25:focus{background-color:rgb(var(--red-7)/.25)}.focus\:bg-red-7\/30:focus{background-color:rgb(var(--red-7)/.3)}.focus\:bg-red-7\/40:focus{background-color:rgb(var(--red-7)/.4)}.focus\:bg-red-7\/5:focus{background-color:rgb(var(--red-7)/.05)}.focus\:bg-red-7\/50:focus{background-color:rgb(var(--red-7)/.5)}.focus\:bg-red-7\/60:focus{background-color:rgb(var(--red-7)/.6)}.focus\:bg-red-7\/70:focus{background-color:rgb(var(--red-7)/.7)}.focus\:bg-red-7\/75:focus{background-color:rgb(var(--red-7)/.75)}.focus\:bg-red-7\/80:focus{background-color:rgb(var(--red-7)/.8)}.focus\:bg-red-7\/90:focus{background-color:rgb(var(--red-7)/.9)}.focus\:bg-red-7\/95:focus{background-color:rgb(var(--red-7)/.95)}.focus\:bg-red-8\/0:focus{background-color:rgb(var(--red-8)/0)}.focus\:bg-red-8\/10:focus{background-color:rgb(var(--red-8)/.1)}.focus\:bg-red-8\/100:focus{background-color:rgb(var(--red-8)/1)}.focus\:bg-red-8\/20:focus{background-color:rgb(var(--red-8)/.2)}.focus\:bg-red-8\/25:focus{background-color:rgb(var(--red-8)/.25)}.focus\:bg-red-8\/30:focus{background-color:rgb(var(--red-8)/.3)}.focus\:bg-red-8\/40:focus{background-color:rgb(var(--red-8)/.4)}.focus\:bg-red-8\/5:focus{background-color:rgb(var(--red-8)/.05)}.focus\:bg-red-8\/50:focus{background-color:rgb(var(--red-8)/.5)}.focus\:bg-red-8\/60:focus{background-color:rgb(var(--red-8)/.6)}.focus\:bg-red-8\/70:focus{background-color:rgb(var(--red-8)/.7)}.focus\:bg-red-8\/75:focus{background-color:rgb(var(--red-8)/.75)}.focus\:bg-red-8\/80:focus{background-color:rgb(var(--red-8)/.8)}.focus\:bg-red-8\/90:focus{background-color:rgb(var(--red-8)/.9)}.focus\:bg-red-8\/95:focus{background-color:rgb(var(--red-8)/.95)}.focus\:bg-red-9\/0:focus{background-color:rgb(var(--red-9)/0)}.focus\:bg-red-9\/10:focus{background-color:rgb(var(--red-9)/.1)}.focus\:bg-red-9\/100:focus{background-color:rgb(var(--red-9)/1)}.focus\:bg-red-9\/20:focus{background-color:rgb(var(--red-9)/.2)}.focus\:bg-red-9\/25:focus{background-color:rgb(var(--red-9)/.25)}.focus\:bg-red-9\/30:focus{background-color:rgb(var(--red-9)/.3)}.focus\:bg-red-9\/40:focus{background-color:rgb(var(--red-9)/.4)}.focus\:bg-red-9\/5:focus{background-color:rgb(var(--red-9)/.05)}.focus\:bg-red-9\/50:focus{background-color:rgb(var(--red-9)/.5)}.focus\:bg-red-9\/60:focus{background-color:rgb(var(--red-9)/.6)}.focus\:bg-red-9\/70:focus{background-color:rgb(var(--red-9)/.7)}.focus\:bg-red-9\/75:focus{background-color:rgb(var(--red-9)/.75)}.focus\:bg-red-9\/80:focus{background-color:rgb(var(--red-9)/.8)}.focus\:bg-red-9\/90:focus{background-color:rgb(var(--red-9)/.9)}.focus\:bg-red-9\/95:focus{background-color:rgb(var(--red-9)/.95)}.focus\:bg-secondary:focus{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity))}.focus\:bg-secondary\/0:focus{background-color:rgb(var(--secondary)/0)}.focus\:bg-secondary\/10:focus{background-color:rgb(var(--secondary)/.1)}.focus\:bg-secondary\/100:focus{background-color:rgb(var(--secondary)/1)}.focus\:bg-secondary\/20:focus{background-color:rgb(var(--secondary)/.2)}.focus\:bg-secondary\/25:focus{background-color:rgb(var(--secondary)/.25)}.focus\:bg-secondary\/30:focus{background-color:rgb(var(--secondary)/.3)}.focus\:bg-secondary\/40:focus{background-color:rgb(var(--secondary)/.4)}.focus\:bg-secondary\/5:focus{background-color:rgb(var(--secondary)/.05)}.focus\:bg-secondary\/50:focus{background-color:rgb(var(--secondary)/.5)}.focus\:bg-secondary\/60:focus{background-color:rgb(var(--secondary)/.6)}.focus\:bg-secondary\/70:focus{background-color:rgb(var(--secondary)/.7)}.focus\:bg-secondary\/75:focus{background-color:rgb(var(--secondary)/.75)}.focus\:bg-secondary\/80:focus{background-color:rgb(var(--secondary)/.8)}.focus\:bg-secondary\/90:focus{background-color:rgb(var(--secondary)/.9)}.focus\:bg-secondary\/95:focus{background-color:rgb(var(--secondary)/.95)}.focus\:bg-slate-1\/0:focus{background-color:rgb(var(--slate-1)/0)}.focus\:bg-slate-1\/10:focus{background-color:rgb(var(--slate-1)/.1)}.focus\:bg-slate-1\/100:focus{background-color:rgb(var(--slate-1)/1)}.focus\:bg-slate-1\/20:focus{background-color:rgb(var(--slate-1)/.2)}.focus\:bg-slate-1\/25:focus{background-color:rgb(var(--slate-1)/.25)}.focus\:bg-slate-1\/30:focus{background-color:rgb(var(--slate-1)/.3)}.focus\:bg-slate-1\/40:focus{background-color:rgb(var(--slate-1)/.4)}.focus\:bg-slate-1\/5:focus{background-color:rgb(var(--slate-1)/.05)}.focus\:bg-slate-1\/50:focus{background-color:rgb(var(--slate-1)/.5)}.focus\:bg-slate-1\/60:focus{background-color:rgb(var(--slate-1)/.6)}.focus\:bg-slate-1\/70:focus{background-color:rgb(var(--slate-1)/.7)}.focus\:bg-slate-1\/75:focus{background-color:rgb(var(--slate-1)/.75)}.focus\:bg-slate-1\/80:focus{background-color:rgb(var(--slate-1)/.8)}.focus\:bg-slate-1\/90:focus{background-color:rgb(var(--slate-1)/.9)}.focus\:bg-slate-1\/95:focus{background-color:rgb(var(--slate-1)/.95)}.focus\:bg-slate-10\/0:focus{background-color:rgb(var(--slate-10)/0)}.focus\:bg-slate-10\/10:focus{background-color:rgb(var(--slate-10)/.1)}.focus\:bg-slate-10\/100:focus{background-color:rgb(var(--slate-10)/1)}.focus\:bg-slate-10\/20:focus{background-color:rgb(var(--slate-10)/.2)}.focus\:bg-slate-10\/25:focus{background-color:rgb(var(--slate-10)/.25)}.focus\:bg-slate-10\/30:focus{background-color:rgb(var(--slate-10)/.3)}.focus\:bg-slate-10\/40:focus{background-color:rgb(var(--slate-10)/.4)}.focus\:bg-slate-10\/5:focus{background-color:rgb(var(--slate-10)/.05)}.focus\:bg-slate-10\/50:focus{background-color:rgb(var(--slate-10)/.5)}.focus\:bg-slate-10\/60:focus{background-color:rgb(var(--slate-10)/.6)}.focus\:bg-slate-10\/70:focus{background-color:rgb(var(--slate-10)/.7)}.focus\:bg-slate-10\/75:focus{background-color:rgb(var(--slate-10)/.75)}.focus\:bg-slate-10\/80:focus{background-color:rgb(var(--slate-10)/.8)}.focus\:bg-slate-10\/90:focus{background-color:rgb(var(--slate-10)/.9)}.focus\:bg-slate-10\/95:focus{background-color:rgb(var(--slate-10)/.95)}.focus\:bg-slate-2\/0:focus{background-color:rgb(var(--slate-2)/0)}.focus\:bg-slate-2\/10:focus{background-color:rgb(var(--slate-2)/.1)}.focus\:bg-slate-2\/100:focus{background-color:rgb(var(--slate-2)/1)}.focus\:bg-slate-2\/20:focus{background-color:rgb(var(--slate-2)/.2)}.focus\:bg-slate-2\/25:focus{background-color:rgb(var(--slate-2)/.25)}.focus\:bg-slate-2\/30:focus{background-color:rgb(var(--slate-2)/.3)}.focus\:bg-slate-2\/40:focus{background-color:rgb(var(--slate-2)/.4)}.focus\:bg-slate-2\/5:focus{background-color:rgb(var(--slate-2)/.05)}.focus\:bg-slate-2\/50:focus{background-color:rgb(var(--slate-2)/.5)}.focus\:bg-slate-2\/60:focus{background-color:rgb(var(--slate-2)/.6)}.focus\:bg-slate-2\/70:focus{background-color:rgb(var(--slate-2)/.7)}.focus\:bg-slate-2\/75:focus{background-color:rgb(var(--slate-2)/.75)}.focus\:bg-slate-2\/80:focus{background-color:rgb(var(--slate-2)/.8)}.focus\:bg-slate-2\/90:focus{background-color:rgb(var(--slate-2)/.9)}.focus\:bg-slate-2\/95:focus{background-color:rgb(var(--slate-2)/.95)}.focus\:bg-slate-3\/0:focus{background-color:rgb(var(--slate-3)/0)}.focus\:bg-slate-3\/10:focus{background-color:rgb(var(--slate-3)/.1)}.focus\:bg-slate-3\/100:focus{background-color:rgb(var(--slate-3)/1)}.focus\:bg-slate-3\/20:focus{background-color:rgb(var(--slate-3)/.2)}.focus\:bg-slate-3\/25:focus{background-color:rgb(var(--slate-3)/.25)}.focus\:bg-slate-3\/30:focus{background-color:rgb(var(--slate-3)/.3)}.focus\:bg-slate-3\/40:focus{background-color:rgb(var(--slate-3)/.4)}.focus\:bg-slate-3\/5:focus{background-color:rgb(var(--slate-3)/.05)}.focus\:bg-slate-3\/50:focus{background-color:rgb(var(--slate-3)/.5)}.focus\:bg-slate-3\/60:focus{background-color:rgb(var(--slate-3)/.6)}.focus\:bg-slate-3\/70:focus{background-color:rgb(var(--slate-3)/.7)}.focus\:bg-slate-3\/75:focus{background-color:rgb(var(--slate-3)/.75)}.focus\:bg-slate-3\/80:focus{background-color:rgb(var(--slate-3)/.8)}.focus\:bg-slate-3\/90:focus{background-color:rgb(var(--slate-3)/.9)}.focus\:bg-slate-3\/95:focus{background-color:rgb(var(--slate-3)/.95)}.focus\:bg-slate-4\/0:focus{background-color:rgb(var(--slate-4)/0)}.focus\:bg-slate-4\/10:focus{background-color:rgb(var(--slate-4)/.1)}.focus\:bg-slate-4\/100:focus{background-color:rgb(var(--slate-4)/1)}.focus\:bg-slate-4\/20:focus{background-color:rgb(var(--slate-4)/.2)}.focus\:bg-slate-4\/25:focus{background-color:rgb(var(--slate-4)/.25)}.focus\:bg-slate-4\/30:focus{background-color:rgb(var(--slate-4)/.3)}.focus\:bg-slate-4\/40:focus{background-color:rgb(var(--slate-4)/.4)}.focus\:bg-slate-4\/5:focus{background-color:rgb(var(--slate-4)/.05)}.focus\:bg-slate-4\/50:focus{background-color:rgb(var(--slate-4)/.5)}.focus\:bg-slate-4\/60:focus{background-color:rgb(var(--slate-4)/.6)}.focus\:bg-slate-4\/70:focus{background-color:rgb(var(--slate-4)/.7)}.focus\:bg-slate-4\/75:focus{background-color:rgb(var(--slate-4)/.75)}.focus\:bg-slate-4\/80:focus{background-color:rgb(var(--slate-4)/.8)}.focus\:bg-slate-4\/90:focus{background-color:rgb(var(--slate-4)/.9)}.focus\:bg-slate-4\/95:focus{background-color:rgb(var(--slate-4)/.95)}.focus\:bg-slate-5\/0:focus{background-color:rgb(var(--slate-5)/0)}.focus\:bg-slate-5\/10:focus{background-color:rgb(var(--slate-5)/.1)}.focus\:bg-slate-5\/100:focus{background-color:rgb(var(--slate-5)/1)}.focus\:bg-slate-5\/20:focus{background-color:rgb(var(--slate-5)/.2)}.focus\:bg-slate-5\/25:focus{background-color:rgb(var(--slate-5)/.25)}.focus\:bg-slate-5\/30:focus{background-color:rgb(var(--slate-5)/.3)}.focus\:bg-slate-5\/40:focus{background-color:rgb(var(--slate-5)/.4)}.focus\:bg-slate-5\/5:focus{background-color:rgb(var(--slate-5)/.05)}.focus\:bg-slate-5\/50:focus{background-color:rgb(var(--slate-5)/.5)}.focus\:bg-slate-5\/60:focus{background-color:rgb(var(--slate-5)/.6)}.focus\:bg-slate-5\/70:focus{background-color:rgb(var(--slate-5)/.7)}.focus\:bg-slate-5\/75:focus{background-color:rgb(var(--slate-5)/.75)}.focus\:bg-slate-5\/80:focus{background-color:rgb(var(--slate-5)/.8)}.focus\:bg-slate-5\/90:focus{background-color:rgb(var(--slate-5)/.9)}.focus\:bg-slate-5\/95:focus{background-color:rgb(var(--slate-5)/.95)}.focus\:bg-slate-6\/0:focus{background-color:rgb(var(--slate-6)/0)}.focus\:bg-slate-6\/10:focus{background-color:rgb(var(--slate-6)/.1)}.focus\:bg-slate-6\/100:focus{background-color:rgb(var(--slate-6)/1)}.focus\:bg-slate-6\/20:focus{background-color:rgb(var(--slate-6)/.2)}.focus\:bg-slate-6\/25:focus{background-color:rgb(var(--slate-6)/.25)}.focus\:bg-slate-6\/30:focus{background-color:rgb(var(--slate-6)/.3)}.focus\:bg-slate-6\/40:focus{background-color:rgb(var(--slate-6)/.4)}.focus\:bg-slate-6\/5:focus{background-color:rgb(var(--slate-6)/.05)}.focus\:bg-slate-6\/50:focus{background-color:rgb(var(--slate-6)/.5)}.focus\:bg-slate-6\/60:focus{background-color:rgb(var(--slate-6)/.6)}.focus\:bg-slate-6\/70:focus{background-color:rgb(var(--slate-6)/.7)}.focus\:bg-slate-6\/75:focus{background-color:rgb(var(--slate-6)/.75)}.focus\:bg-slate-6\/80:focus{background-color:rgb(var(--slate-6)/.8)}.focus\:bg-slate-6\/90:focus{background-color:rgb(var(--slate-6)/.9)}.focus\:bg-slate-6\/95:focus{background-color:rgb(var(--slate-6)/.95)}.focus\:bg-slate-7\/0:focus{background-color:rgb(var(--slate-7)/0)}.focus\:bg-slate-7\/10:focus{background-color:rgb(var(--slate-7)/.1)}.focus\:bg-slate-7\/100:focus{background-color:rgb(var(--slate-7)/1)}.focus\:bg-slate-7\/20:focus{background-color:rgb(var(--slate-7)/.2)}.focus\:bg-slate-7\/25:focus{background-color:rgb(var(--slate-7)/.25)}.focus\:bg-slate-7\/30:focus{background-color:rgb(var(--slate-7)/.3)}.focus\:bg-slate-7\/40:focus{background-color:rgb(var(--slate-7)/.4)}.focus\:bg-slate-7\/5:focus{background-color:rgb(var(--slate-7)/.05)}.focus\:bg-slate-7\/50:focus{background-color:rgb(var(--slate-7)/.5)}.focus\:bg-slate-7\/60:focus{background-color:rgb(var(--slate-7)/.6)}.focus\:bg-slate-7\/70:focus{background-color:rgb(var(--slate-7)/.7)}.focus\:bg-slate-7\/75:focus{background-color:rgb(var(--slate-7)/.75)}.focus\:bg-slate-7\/80:focus{background-color:rgb(var(--slate-7)/.8)}.focus\:bg-slate-7\/90:focus{background-color:rgb(var(--slate-7)/.9)}.focus\:bg-slate-7\/95:focus{background-color:rgb(var(--slate-7)/.95)}.focus\:bg-slate-8\/0:focus{background-color:rgb(var(--slate-8)/0)}.focus\:bg-slate-8\/10:focus{background-color:rgb(var(--slate-8)/.1)}.focus\:bg-slate-8\/100:focus{background-color:rgb(var(--slate-8)/1)}.focus\:bg-slate-8\/20:focus{background-color:rgb(var(--slate-8)/.2)}.focus\:bg-slate-8\/25:focus{background-color:rgb(var(--slate-8)/.25)}.focus\:bg-slate-8\/30:focus{background-color:rgb(var(--slate-8)/.3)}.focus\:bg-slate-8\/40:focus{background-color:rgb(var(--slate-8)/.4)}.focus\:bg-slate-8\/5:focus{background-color:rgb(var(--slate-8)/.05)}.focus\:bg-slate-8\/50:focus{background-color:rgb(var(--slate-8)/.5)}.focus\:bg-slate-8\/60:focus{background-color:rgb(var(--slate-8)/.6)}.focus\:bg-slate-8\/70:focus{background-color:rgb(var(--slate-8)/.7)}.focus\:bg-slate-8\/75:focus{background-color:rgb(var(--slate-8)/.75)}.focus\:bg-slate-8\/80:focus{background-color:rgb(var(--slate-8)/.8)}.focus\:bg-slate-8\/90:focus{background-color:rgb(var(--slate-8)/.9)}.focus\:bg-slate-8\/95:focus{background-color:rgb(var(--slate-8)/.95)}.focus\:bg-slate-9\/0:focus{background-color:rgb(var(--slate-9)/0)}.focus\:bg-slate-9\/10:focus{background-color:rgb(var(--slate-9)/.1)}.focus\:bg-slate-9\/100:focus{background-color:rgb(var(--slate-9)/1)}.focus\:bg-slate-9\/20:focus{background-color:rgb(var(--slate-9)/.2)}.focus\:bg-slate-9\/25:focus{background-color:rgb(var(--slate-9)/.25)}.focus\:bg-slate-9\/30:focus{background-color:rgb(var(--slate-9)/.3)}.focus\:bg-slate-9\/40:focus{background-color:rgb(var(--slate-9)/.4)}.focus\:bg-slate-9\/5:focus{background-color:rgb(var(--slate-9)/.05)}.focus\:bg-slate-9\/50:focus{background-color:rgb(var(--slate-9)/.5)}.focus\:bg-slate-9\/60:focus{background-color:rgb(var(--slate-9)/.6)}.focus\:bg-slate-9\/70:focus{background-color:rgb(var(--slate-9)/.7)}.focus\:bg-slate-9\/75:focus{background-color:rgb(var(--slate-9)/.75)}.focus\:bg-slate-9\/80:focus{background-color:rgb(var(--slate-9)/.8)}.focus\:bg-slate-9\/90:focus{background-color:rgb(var(--slate-9)/.9)}.focus\:bg-slate-9\/95:focus{background-color:rgb(var(--slate-9)/.95)}.focus\:bg-success:focus{--tw-bg-opacity:1;background-color:rgb(var(--success)/var(--tw-bg-opacity))}.focus\:bg-success\/0:focus{background-color:rgb(var(--success)/0)}.focus\:bg-success\/10:focus{background-color:rgb(var(--success)/.1)}.focus\:bg-success\/100:focus{background-color:rgb(var(--success)/1)}.focus\:bg-success\/20:focus{background-color:rgb(var(--success)/.2)}.focus\:bg-success\/25:focus{background-color:rgb(var(--success)/.25)}.focus\:bg-success\/30:focus{background-color:rgb(var(--success)/.3)}.focus\:bg-success\/40:focus{background-color:rgb(var(--success)/.4)}.focus\:bg-success\/5:focus{background-color:rgb(var(--success)/.05)}.focus\:bg-success\/50:focus{background-color:rgb(var(--success)/.5)}.focus\:bg-success\/60:focus{background-color:rgb(var(--success)/.6)}.focus\:bg-success\/70:focus{background-color:rgb(var(--success)/.7)}.focus\:bg-success\/75:focus{background-color:rgb(var(--success)/.75)}.focus\:bg-success\/80:focus{background-color:rgb(var(--success)/.8)}.focus\:bg-success\/90:focus{background-color:rgb(var(--success)/.9)}.focus\:bg-success\/95:focus{background-color:rgb(var(--success)/.95)}.focus\:bg-warning:focus{--tw-bg-opacity:1;background-color:rgb(var(--warning)/var(--tw-bg-opacity))}.focus\:bg-warning\/0:focus{background-color:rgb(var(--warning)/0)}.focus\:bg-warning\/10:focus{background-color:rgb(var(--warning)/.1)}.focus\:bg-warning\/100:focus{background-color:rgb(var(--warning)/1)}.focus\:bg-warning\/20:focus{background-color:rgb(var(--warning)/.2)}.focus\:bg-warning\/25:focus{background-color:rgb(var(--warning)/.25)}.focus\:bg-warning\/30:focus{background-color:rgb(var(--warning)/.3)}.focus\:bg-warning\/40:focus{background-color:rgb(var(--warning)/.4)}.focus\:bg-warning\/5:focus{background-color:rgb(var(--warning)/.05)}.focus\:bg-warning\/50:focus{background-color:rgb(var(--warning)/.5)}.focus\:bg-warning\/60:focus{background-color:rgb(var(--warning)/.6)}.focus\:bg-warning\/70:focus{background-color:rgb(var(--warning)/.7)}.focus\:bg-warning\/75:focus{background-color:rgb(var(--warning)/.75)}.focus\:bg-warning\/80:focus{background-color:rgb(var(--warning)/.8)}.focus\:bg-warning\/90:focus{background-color:rgb(var(--warning)/.9)}.focus\:bg-warning\/95:focus{background-color:rgb(var(--warning)/.95)}.focus\:bg-white:focus{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.focus\:bg-white\/0:focus{background-color:hsla(0,0%,100%,0)}.focus\:bg-white\/10:focus{background-color:hsla(0,0%,100%,.1)}.focus\:bg-white\/100:focus{background-color:#fff}.focus\:bg-white\/20:focus{background-color:hsla(0,0%,100%,.2)}.focus\:bg-white\/25:focus{background-color:hsla(0,0%,100%,.25)}.focus\:bg-white\/30:focus{background-color:hsla(0,0%,100%,.3)}.focus\:bg-white\/40:focus{background-color:hsla(0,0%,100%,.4)}.focus\:bg-white\/5:focus{background-color:hsla(0,0%,100%,.05)}.focus\:bg-white\/50:focus{background-color:hsla(0,0%,100%,.5)}.focus\:bg-white\/60:focus{background-color:hsla(0,0%,100%,.6)}.focus\:bg-white\/70:focus{background-color:hsla(0,0%,100%,.7)}.focus\:bg-white\/75:focus{background-color:hsla(0,0%,100%,.75)}.focus\:bg-white\/80:focus{background-color:hsla(0,0%,100%,.8)}.focus\:bg-white\/90:focus{background-color:hsla(0,0%,100%,.9)}.focus\:bg-white\/95:focus{background-color:hsla(0,0%,100%,.95)}.focus\:bg-whiteInverted:focus{--tw-bg-opacity:1;background-color:rgb(var(--whiteInverted)/var(--tw-bg-opacity))}.focus\:bg-whiteInverted\/0:focus{background-color:rgb(var(--whiteInverted)/0)}.focus\:bg-whiteInverted\/10:focus{background-color:rgb(var(--whiteInverted)/.1)}.focus\:bg-whiteInverted\/100:focus{background-color:rgb(var(--whiteInverted)/1)}.focus\:bg-whiteInverted\/20:focus{background-color:rgb(var(--whiteInverted)/.2)}.focus\:bg-whiteInverted\/25:focus{background-color:rgb(var(--whiteInverted)/.25)}.focus\:bg-whiteInverted\/30:focus{background-color:rgb(var(--whiteInverted)/.3)}.focus\:bg-whiteInverted\/40:focus{background-color:rgb(var(--whiteInverted)/.4)}.focus\:bg-whiteInverted\/5:focus{background-color:rgb(var(--whiteInverted)/.05)}.focus\:bg-whiteInverted\/50:focus{background-color:rgb(var(--whiteInverted)/.5)}.focus\:bg-whiteInverted\/60:focus{background-color:rgb(var(--whiteInverted)/.6)}.focus\:bg-whiteInverted\/70:focus{background-color:rgb(var(--whiteInverted)/.7)}.focus\:bg-whiteInverted\/75:focus{background-color:rgb(var(--whiteInverted)/.75)}.focus\:bg-whiteInverted\/80:focus{background-color:rgb(var(--whiteInverted)/.8)}.focus\:bg-whiteInverted\/90:focus{background-color:rgb(var(--whiteInverted)/.9)}.focus\:bg-whiteInverted\/95:focus{background-color:rgb(var(--whiteInverted)/.95)}.focus\:from-backgroundPrimary:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/0:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/10:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/100:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/20:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/25:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/30:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/40:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/5:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/50:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/60:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/70:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/75:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/80:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/90:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundPrimary\/95:focus{--tw-gradient-from:rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/0:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/10:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/100:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/20:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/25:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/30:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/40:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/5:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/50:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/60:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/70:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/75:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/80:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/90:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-backgroundSecondary\/95:focus{--tw-gradient-from:rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black:focus{--tw-gradient-from:#000 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/0:focus{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/10:focus{--tw-gradient-from:rgba(0,0,0,.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/100:focus{--tw-gradient-from:#000 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/20:focus{--tw-gradient-from:rgba(0,0,0,.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/25:focus{--tw-gradient-from:rgba(0,0,0,.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/30:focus{--tw-gradient-from:rgba(0,0,0,.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/40:focus{--tw-gradient-from:rgba(0,0,0,.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/5:focus{--tw-gradient-from:rgba(0,0,0,.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/50:focus{--tw-gradient-from:rgba(0,0,0,.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/60:focus{--tw-gradient-from:rgba(0,0,0,.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/70:focus{--tw-gradient-from:rgba(0,0,0,.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/75:focus{--tw-gradient-from:rgba(0,0,0,.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/80:focus{--tw-gradient-from:rgba(0,0,0,.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/90:focus{--tw-gradient-from:rgba(0,0,0,.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-black\/95:focus{--tw-gradient-from:rgba(0,0,0,.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:transparent var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted:focus{--tw-gradient-from:rgb(var(--blackInverted)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/0:focus{--tw-gradient-from:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/10:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/100:focus{--tw-gradient-from:rgb(var(--blackInverted)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/20:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/25:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/30:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/40:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/5:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/50:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/60:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/70:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/75:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/80:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/90:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blackInverted\/95:focus{--tw-gradient-from:rgb(var(--blackInverted)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/0:focus{--tw-gradient-from:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/10:focus{--tw-gradient-from:rgb(var(--blue-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/100:focus{--tw-gradient-from:rgb(var(--blue-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/20:focus{--tw-gradient-from:rgb(var(--blue-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/25:focus{--tw-gradient-from:rgb(var(--blue-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/30:focus{--tw-gradient-from:rgb(var(--blue-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/40:focus{--tw-gradient-from:rgb(var(--blue-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/5:focus{--tw-gradient-from:rgb(var(--blue-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/50:focus{--tw-gradient-from:rgb(var(--blue-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/60:focus{--tw-gradient-from:rgb(var(--blue-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/70:focus{--tw-gradient-from:rgb(var(--blue-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/75:focus{--tw-gradient-from:rgb(var(--blue-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/80:focus{--tw-gradient-from:rgb(var(--blue-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/90:focus{--tw-gradient-from:rgb(var(--blue-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-1\/95:focus{--tw-gradient-from:rgb(var(--blue-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/0:focus{--tw-gradient-from:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/10:focus{--tw-gradient-from:rgb(var(--blue-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/100:focus{--tw-gradient-from:rgb(var(--blue-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/20:focus{--tw-gradient-from:rgb(var(--blue-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/25:focus{--tw-gradient-from:rgb(var(--blue-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/30:focus{--tw-gradient-from:rgb(var(--blue-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/40:focus{--tw-gradient-from:rgb(var(--blue-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/5:focus{--tw-gradient-from:rgb(var(--blue-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/50:focus{--tw-gradient-from:rgb(var(--blue-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/60:focus{--tw-gradient-from:rgb(var(--blue-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/70:focus{--tw-gradient-from:rgb(var(--blue-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/75:focus{--tw-gradient-from:rgb(var(--blue-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/80:focus{--tw-gradient-from:rgb(var(--blue-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/90:focus{--tw-gradient-from:rgb(var(--blue-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-10\/95:focus{--tw-gradient-from:rgb(var(--blue-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/0:focus{--tw-gradient-from:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/10:focus{--tw-gradient-from:rgb(var(--blue-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/100:focus{--tw-gradient-from:rgb(var(--blue-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/20:focus{--tw-gradient-from:rgb(var(--blue-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/25:focus{--tw-gradient-from:rgb(var(--blue-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/30:focus{--tw-gradient-from:rgb(var(--blue-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/40:focus{--tw-gradient-from:rgb(var(--blue-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/5:focus{--tw-gradient-from:rgb(var(--blue-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/50:focus{--tw-gradient-from:rgb(var(--blue-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/60:focus{--tw-gradient-from:rgb(var(--blue-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/70:focus{--tw-gradient-from:rgb(var(--blue-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/75:focus{--tw-gradient-from:rgb(var(--blue-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/80:focus{--tw-gradient-from:rgb(var(--blue-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/90:focus{--tw-gradient-from:rgb(var(--blue-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-2\/95:focus{--tw-gradient-from:rgb(var(--blue-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/0:focus{--tw-gradient-from:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/10:focus{--tw-gradient-from:rgb(var(--blue-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/100:focus{--tw-gradient-from:rgb(var(--blue-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/20:focus{--tw-gradient-from:rgb(var(--blue-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/25:focus{--tw-gradient-from:rgb(var(--blue-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/30:focus{--tw-gradient-from:rgb(var(--blue-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/40:focus{--tw-gradient-from:rgb(var(--blue-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/5:focus{--tw-gradient-from:rgb(var(--blue-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/50:focus{--tw-gradient-from:rgb(var(--blue-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/60:focus{--tw-gradient-from:rgb(var(--blue-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/70:focus{--tw-gradient-from:rgb(var(--blue-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/75:focus{--tw-gradient-from:rgb(var(--blue-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/80:focus{--tw-gradient-from:rgb(var(--blue-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/90:focus{--tw-gradient-from:rgb(var(--blue-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-3\/95:focus{--tw-gradient-from:rgb(var(--blue-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/0:focus{--tw-gradient-from:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/10:focus{--tw-gradient-from:rgb(var(--blue-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/100:focus{--tw-gradient-from:rgb(var(--blue-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/20:focus{--tw-gradient-from:rgb(var(--blue-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/25:focus{--tw-gradient-from:rgb(var(--blue-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/30:focus{--tw-gradient-from:rgb(var(--blue-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/40:focus{--tw-gradient-from:rgb(var(--blue-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/5:focus{--tw-gradient-from:rgb(var(--blue-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/50:focus{--tw-gradient-from:rgb(var(--blue-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/60:focus{--tw-gradient-from:rgb(var(--blue-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/70:focus{--tw-gradient-from:rgb(var(--blue-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/75:focus{--tw-gradient-from:rgb(var(--blue-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/80:focus{--tw-gradient-from:rgb(var(--blue-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/90:focus{--tw-gradient-from:rgb(var(--blue-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-4\/95:focus{--tw-gradient-from:rgb(var(--blue-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/0:focus{--tw-gradient-from:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/10:focus{--tw-gradient-from:rgb(var(--blue-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/100:focus{--tw-gradient-from:rgb(var(--blue-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/20:focus{--tw-gradient-from:rgb(var(--blue-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/25:focus{--tw-gradient-from:rgb(var(--blue-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/30:focus{--tw-gradient-from:rgb(var(--blue-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/40:focus{--tw-gradient-from:rgb(var(--blue-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/5:focus{--tw-gradient-from:rgb(var(--blue-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/50:focus{--tw-gradient-from:rgb(var(--blue-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/60:focus{--tw-gradient-from:rgb(var(--blue-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/70:focus{--tw-gradient-from:rgb(var(--blue-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/75:focus{--tw-gradient-from:rgb(var(--blue-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/80:focus{--tw-gradient-from:rgb(var(--blue-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/90:focus{--tw-gradient-from:rgb(var(--blue-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-5\/95:focus{--tw-gradient-from:rgb(var(--blue-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/0:focus{--tw-gradient-from:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/10:focus{--tw-gradient-from:rgb(var(--blue-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/100:focus{--tw-gradient-from:rgb(var(--blue-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/20:focus{--tw-gradient-from:rgb(var(--blue-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/25:focus{--tw-gradient-from:rgb(var(--blue-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/30:focus{--tw-gradient-from:rgb(var(--blue-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/40:focus{--tw-gradient-from:rgb(var(--blue-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/5:focus{--tw-gradient-from:rgb(var(--blue-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/50:focus{--tw-gradient-from:rgb(var(--blue-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/60:focus{--tw-gradient-from:rgb(var(--blue-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/70:focus{--tw-gradient-from:rgb(var(--blue-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/75:focus{--tw-gradient-from:rgb(var(--blue-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/80:focus{--tw-gradient-from:rgb(var(--blue-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/90:focus{--tw-gradient-from:rgb(var(--blue-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-6\/95:focus{--tw-gradient-from:rgb(var(--blue-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/0:focus{--tw-gradient-from:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/10:focus{--tw-gradient-from:rgb(var(--blue-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/100:focus{--tw-gradient-from:rgb(var(--blue-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/20:focus{--tw-gradient-from:rgb(var(--blue-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/25:focus{--tw-gradient-from:rgb(var(--blue-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/30:focus{--tw-gradient-from:rgb(var(--blue-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/40:focus{--tw-gradient-from:rgb(var(--blue-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/5:focus{--tw-gradient-from:rgb(var(--blue-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/50:focus{--tw-gradient-from:rgb(var(--blue-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/60:focus{--tw-gradient-from:rgb(var(--blue-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/70:focus{--tw-gradient-from:rgb(var(--blue-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/75:focus{--tw-gradient-from:rgb(var(--blue-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/80:focus{--tw-gradient-from:rgb(var(--blue-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/90:focus{--tw-gradient-from:rgb(var(--blue-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-7\/95:focus{--tw-gradient-from:rgb(var(--blue-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/0:focus{--tw-gradient-from:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/10:focus{--tw-gradient-from:rgb(var(--blue-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/100:focus{--tw-gradient-from:rgb(var(--blue-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/20:focus{--tw-gradient-from:rgb(var(--blue-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/25:focus{--tw-gradient-from:rgb(var(--blue-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/30:focus{--tw-gradient-from:rgb(var(--blue-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/40:focus{--tw-gradient-from:rgb(var(--blue-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/5:focus{--tw-gradient-from:rgb(var(--blue-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/50:focus{--tw-gradient-from:rgb(var(--blue-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/60:focus{--tw-gradient-from:rgb(var(--blue-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/70:focus{--tw-gradient-from:rgb(var(--blue-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/75:focus{--tw-gradient-from:rgb(var(--blue-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/80:focus{--tw-gradient-from:rgb(var(--blue-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/90:focus{--tw-gradient-from:rgb(var(--blue-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-8\/95:focus{--tw-gradient-from:rgb(var(--blue-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/0:focus{--tw-gradient-from:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/10:focus{--tw-gradient-from:rgb(var(--blue-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/100:focus{--tw-gradient-from:rgb(var(--blue-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/20:focus{--tw-gradient-from:rgb(var(--blue-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/25:focus{--tw-gradient-from:rgb(var(--blue-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/30:focus{--tw-gradient-from:rgb(var(--blue-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/40:focus{--tw-gradient-from:rgb(var(--blue-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/5:focus{--tw-gradient-from:rgb(var(--blue-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/50:focus{--tw-gradient-from:rgb(var(--blue-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/60:focus{--tw-gradient-from:rgb(var(--blue-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/70:focus{--tw-gradient-from:rgb(var(--blue-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/75:focus{--tw-gradient-from:rgb(var(--blue-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/80:focus{--tw-gradient-from:rgb(var(--blue-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/90:focus{--tw-gradient-from:rgb(var(--blue-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-blue-9\/95:focus{--tw-gradient-from:rgb(var(--blue-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border:focus{--tw-gradient-from:rgb(var(--border)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/0:focus{--tw-gradient-from:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/10:focus{--tw-gradient-from:rgb(var(--border)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/100:focus{--tw-gradient-from:rgb(var(--border)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/20:focus{--tw-gradient-from:rgb(var(--border)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/25:focus{--tw-gradient-from:rgb(var(--border)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/30:focus{--tw-gradient-from:rgb(var(--border)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/40:focus{--tw-gradient-from:rgb(var(--border)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/5:focus{--tw-gradient-from:rgb(var(--border)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/50:focus{--tw-gradient-from:rgb(var(--border)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/60:focus{--tw-gradient-from:rgb(var(--border)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/70:focus{--tw-gradient-from:rgb(var(--border)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/75:focus{--tw-gradient-from:rgb(var(--border)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/80:focus{--tw-gradient-from:rgb(var(--border)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/90:focus{--tw-gradient-from:rgb(var(--border)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-border\/95:focus{--tw-gradient-from:rgb(var(--border)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1:focus{--tw-gradient-from:rgb(var(--content1)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/0:focus{--tw-gradient-from:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/10:focus{--tw-gradient-from:rgb(var(--content1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/100:focus{--tw-gradient-from:rgb(var(--content1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/20:focus{--tw-gradient-from:rgb(var(--content1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/25:focus{--tw-gradient-from:rgb(var(--content1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/30:focus{--tw-gradient-from:rgb(var(--content1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/40:focus{--tw-gradient-from:rgb(var(--content1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/5:focus{--tw-gradient-from:rgb(var(--content1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/50:focus{--tw-gradient-from:rgb(var(--content1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/60:focus{--tw-gradient-from:rgb(var(--content1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/70:focus{--tw-gradient-from:rgb(var(--content1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/75:focus{--tw-gradient-from:rgb(var(--content1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/80:focus{--tw-gradient-from:rgb(var(--content1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/90:focus{--tw-gradient-from:rgb(var(--content1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content1\/95:focus{--tw-gradient-from:rgb(var(--content1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2:focus{--tw-gradient-from:rgb(var(--content2)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/0:focus{--tw-gradient-from:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/10:focus{--tw-gradient-from:rgb(var(--content2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/100:focus{--tw-gradient-from:rgb(var(--content2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/20:focus{--tw-gradient-from:rgb(var(--content2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/25:focus{--tw-gradient-from:rgb(var(--content2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/30:focus{--tw-gradient-from:rgb(var(--content2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/40:focus{--tw-gradient-from:rgb(var(--content2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/5:focus{--tw-gradient-from:rgb(var(--content2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/50:focus{--tw-gradient-from:rgb(var(--content2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/60:focus{--tw-gradient-from:rgb(var(--content2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/70:focus{--tw-gradient-from:rgb(var(--content2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/75:focus{--tw-gradient-from:rgb(var(--content2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/80:focus{--tw-gradient-from:rgb(var(--content2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/90:focus{--tw-gradient-from:rgb(var(--content2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content2\/95:focus{--tw-gradient-from:rgb(var(--content2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3:focus{--tw-gradient-from:rgb(var(--content3)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/0:focus{--tw-gradient-from:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/10:focus{--tw-gradient-from:rgb(var(--content3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/100:focus{--tw-gradient-from:rgb(var(--content3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/20:focus{--tw-gradient-from:rgb(var(--content3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/25:focus{--tw-gradient-from:rgb(var(--content3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/30:focus{--tw-gradient-from:rgb(var(--content3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/40:focus{--tw-gradient-from:rgb(var(--content3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/5:focus{--tw-gradient-from:rgb(var(--content3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/50:focus{--tw-gradient-from:rgb(var(--content3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/60:focus{--tw-gradient-from:rgb(var(--content3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/70:focus{--tw-gradient-from:rgb(var(--content3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/75:focus{--tw-gradient-from:rgb(var(--content3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/80:focus{--tw-gradient-from:rgb(var(--content3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/90:focus{--tw-gradient-from:rgb(var(--content3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-content3\/95:focus{--tw-gradient-from:rgb(var(--content3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/0:focus{--tw-gradient-from:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/10:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/100:focus{--tw-gradient-from:rgb(var(--cyan-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/20:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/25:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/30:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/40:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/5:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/50:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/60:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/70:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/75:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/80:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/90:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-1\/95:focus{--tw-gradient-from:rgb(var(--cyan-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/0:focus{--tw-gradient-from:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/10:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/100:focus{--tw-gradient-from:rgb(var(--cyan-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/20:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/25:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/30:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/40:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/5:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/50:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/60:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/70:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/75:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/80:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/90:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-10\/95:focus{--tw-gradient-from:rgb(var(--cyan-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/0:focus{--tw-gradient-from:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/10:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/100:focus{--tw-gradient-from:rgb(var(--cyan-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/20:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/25:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/30:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/40:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/5:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/50:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/60:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/70:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/75:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/80:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/90:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-2\/95:focus{--tw-gradient-from:rgb(var(--cyan-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/0:focus{--tw-gradient-from:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/10:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/100:focus{--tw-gradient-from:rgb(var(--cyan-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/20:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/25:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/30:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/40:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/5:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/50:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/60:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/70:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/75:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/80:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/90:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-3\/95:focus{--tw-gradient-from:rgb(var(--cyan-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/0:focus{--tw-gradient-from:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/10:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/100:focus{--tw-gradient-from:rgb(var(--cyan-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/20:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/25:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/30:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/40:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/5:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/50:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/60:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/70:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/75:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/80:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/90:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-4\/95:focus{--tw-gradient-from:rgb(var(--cyan-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/0:focus{--tw-gradient-from:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/10:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/100:focus{--tw-gradient-from:rgb(var(--cyan-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/20:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/25:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/30:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/40:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/5:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/50:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/60:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/70:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/75:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/80:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/90:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-5\/95:focus{--tw-gradient-from:rgb(var(--cyan-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/0:focus{--tw-gradient-from:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/10:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/100:focus{--tw-gradient-from:rgb(var(--cyan-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/20:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/25:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/30:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/40:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/5:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/50:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/60:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/70:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/75:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/80:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/90:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-6\/95:focus{--tw-gradient-from:rgb(var(--cyan-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/0:focus{--tw-gradient-from:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/10:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/100:focus{--tw-gradient-from:rgb(var(--cyan-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/20:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/25:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/30:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/40:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/5:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/50:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/60:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/70:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/75:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/80:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/90:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-7\/95:focus{--tw-gradient-from:rgb(var(--cyan-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/0:focus{--tw-gradient-from:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/10:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/100:focus{--tw-gradient-from:rgb(var(--cyan-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/20:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/25:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/30:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/40:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/5:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/50:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/60:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/70:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/75:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/80:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/90:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-8\/95:focus{--tw-gradient-from:rgb(var(--cyan-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/0:focus{--tw-gradient-from:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/10:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/100:focus{--tw-gradient-from:rgb(var(--cyan-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/20:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/25:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/30:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/40:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/5:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/50:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/60:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/70:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/75:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/80:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/90:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-cyan-9\/95:focus{--tw-gradient-from:rgb(var(--cyan-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error:focus{--tw-gradient-from:rgb(var(--error)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/0:focus{--tw-gradient-from:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/10:focus{--tw-gradient-from:rgb(var(--error)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/100:focus{--tw-gradient-from:rgb(var(--error)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/20:focus{--tw-gradient-from:rgb(var(--error)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/25:focus{--tw-gradient-from:rgb(var(--error)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/30:focus{--tw-gradient-from:rgb(var(--error)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/40:focus{--tw-gradient-from:rgb(var(--error)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/5:focus{--tw-gradient-from:rgb(var(--error)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/50:focus{--tw-gradient-from:rgb(var(--error)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/60:focus{--tw-gradient-from:rgb(var(--error)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/70:focus{--tw-gradient-from:rgb(var(--error)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/75:focus{--tw-gradient-from:rgb(var(--error)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/80:focus{--tw-gradient-from:rgb(var(--error)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/90:focus{--tw-gradient-from:rgb(var(--error)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/95:focus{--tw-gradient-from:rgb(var(--error)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/0:focus{--tw-gradient-from:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/10:focus{--tw-gradient-from:rgb(var(--gray-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/100:focus{--tw-gradient-from:rgb(var(--gray-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/20:focus{--tw-gradient-from:rgb(var(--gray-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/25:focus{--tw-gradient-from:rgb(var(--gray-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/30:focus{--tw-gradient-from:rgb(var(--gray-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/40:focus{--tw-gradient-from:rgb(var(--gray-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/5:focus{--tw-gradient-from:rgb(var(--gray-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/50:focus{--tw-gradient-from:rgb(var(--gray-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/60:focus{--tw-gradient-from:rgb(var(--gray-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/70:focus{--tw-gradient-from:rgb(var(--gray-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/75:focus{--tw-gradient-from:rgb(var(--gray-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/80:focus{--tw-gradient-from:rgb(var(--gray-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/90:focus{--tw-gradient-from:rgb(var(--gray-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-1\/95:focus{--tw-gradient-from:rgb(var(--gray-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/0:focus{--tw-gradient-from:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/10:focus{--tw-gradient-from:rgb(var(--gray-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/100:focus{--tw-gradient-from:rgb(var(--gray-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/20:focus{--tw-gradient-from:rgb(var(--gray-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/25:focus{--tw-gradient-from:rgb(var(--gray-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/30:focus{--tw-gradient-from:rgb(var(--gray-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/40:focus{--tw-gradient-from:rgb(var(--gray-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/5:focus{--tw-gradient-from:rgb(var(--gray-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/50:focus{--tw-gradient-from:rgb(var(--gray-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/60:focus{--tw-gradient-from:rgb(var(--gray-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/70:focus{--tw-gradient-from:rgb(var(--gray-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/75:focus{--tw-gradient-from:rgb(var(--gray-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/80:focus{--tw-gradient-from:rgb(var(--gray-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/90:focus{--tw-gradient-from:rgb(var(--gray-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-10\/95:focus{--tw-gradient-from:rgb(var(--gray-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/0:focus{--tw-gradient-from:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/10:focus{--tw-gradient-from:rgb(var(--gray-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/100:focus{--tw-gradient-from:rgb(var(--gray-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/20:focus{--tw-gradient-from:rgb(var(--gray-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/25:focus{--tw-gradient-from:rgb(var(--gray-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/30:focus{--tw-gradient-from:rgb(var(--gray-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/40:focus{--tw-gradient-from:rgb(var(--gray-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/5:focus{--tw-gradient-from:rgb(var(--gray-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/50:focus{--tw-gradient-from:rgb(var(--gray-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/60:focus{--tw-gradient-from:rgb(var(--gray-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/70:focus{--tw-gradient-from:rgb(var(--gray-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/75:focus{--tw-gradient-from:rgb(var(--gray-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/80:focus{--tw-gradient-from:rgb(var(--gray-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/90:focus{--tw-gradient-from:rgb(var(--gray-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-2\/95:focus{--tw-gradient-from:rgb(var(--gray-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/0:focus{--tw-gradient-from:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/10:focus{--tw-gradient-from:rgb(var(--gray-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/100:focus{--tw-gradient-from:rgb(var(--gray-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/20:focus{--tw-gradient-from:rgb(var(--gray-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/25:focus{--tw-gradient-from:rgb(var(--gray-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/30:focus{--tw-gradient-from:rgb(var(--gray-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/40:focus{--tw-gradient-from:rgb(var(--gray-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/5:focus{--tw-gradient-from:rgb(var(--gray-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/50:focus{--tw-gradient-from:rgb(var(--gray-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/60:focus{--tw-gradient-from:rgb(var(--gray-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/70:focus{--tw-gradient-from:rgb(var(--gray-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/75:focus{--tw-gradient-from:rgb(var(--gray-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/80:focus{--tw-gradient-from:rgb(var(--gray-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/90:focus{--tw-gradient-from:rgb(var(--gray-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-3\/95:focus{--tw-gradient-from:rgb(var(--gray-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/0:focus{--tw-gradient-from:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/10:focus{--tw-gradient-from:rgb(var(--gray-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/100:focus{--tw-gradient-from:rgb(var(--gray-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/20:focus{--tw-gradient-from:rgb(var(--gray-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/25:focus{--tw-gradient-from:rgb(var(--gray-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/30:focus{--tw-gradient-from:rgb(var(--gray-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/40:focus{--tw-gradient-from:rgb(var(--gray-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/5:focus{--tw-gradient-from:rgb(var(--gray-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/50:focus{--tw-gradient-from:rgb(var(--gray-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/60:focus{--tw-gradient-from:rgb(var(--gray-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/70:focus{--tw-gradient-from:rgb(var(--gray-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/75:focus{--tw-gradient-from:rgb(var(--gray-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/80:focus{--tw-gradient-from:rgb(var(--gray-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/90:focus{--tw-gradient-from:rgb(var(--gray-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-4\/95:focus{--tw-gradient-from:rgb(var(--gray-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/0:focus{--tw-gradient-from:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/10:focus{--tw-gradient-from:rgb(var(--gray-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/100:focus{--tw-gradient-from:rgb(var(--gray-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/20:focus{--tw-gradient-from:rgb(var(--gray-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/25:focus{--tw-gradient-from:rgb(var(--gray-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/30:focus{--tw-gradient-from:rgb(var(--gray-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/40:focus{--tw-gradient-from:rgb(var(--gray-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/5:focus{--tw-gradient-from:rgb(var(--gray-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/50:focus{--tw-gradient-from:rgb(var(--gray-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/60:focus{--tw-gradient-from:rgb(var(--gray-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/70:focus{--tw-gradient-from:rgb(var(--gray-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/75:focus{--tw-gradient-from:rgb(var(--gray-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/80:focus{--tw-gradient-from:rgb(var(--gray-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/90:focus{--tw-gradient-from:rgb(var(--gray-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-5\/95:focus{--tw-gradient-from:rgb(var(--gray-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/0:focus{--tw-gradient-from:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/10:focus{--tw-gradient-from:rgb(var(--gray-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/100:focus{--tw-gradient-from:rgb(var(--gray-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/20:focus{--tw-gradient-from:rgb(var(--gray-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/25:focus{--tw-gradient-from:rgb(var(--gray-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/30:focus{--tw-gradient-from:rgb(var(--gray-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/40:focus{--tw-gradient-from:rgb(var(--gray-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/5:focus{--tw-gradient-from:rgb(var(--gray-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/50:focus{--tw-gradient-from:rgb(var(--gray-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/60:focus{--tw-gradient-from:rgb(var(--gray-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/70:focus{--tw-gradient-from:rgb(var(--gray-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/75:focus{--tw-gradient-from:rgb(var(--gray-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/80:focus{--tw-gradient-from:rgb(var(--gray-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/90:focus{--tw-gradient-from:rgb(var(--gray-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-6\/95:focus{--tw-gradient-from:rgb(var(--gray-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/0:focus{--tw-gradient-from:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/10:focus{--tw-gradient-from:rgb(var(--gray-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/100:focus{--tw-gradient-from:rgb(var(--gray-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/20:focus{--tw-gradient-from:rgb(var(--gray-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/25:focus{--tw-gradient-from:rgb(var(--gray-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/30:focus{--tw-gradient-from:rgb(var(--gray-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/40:focus{--tw-gradient-from:rgb(var(--gray-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/5:focus{--tw-gradient-from:rgb(var(--gray-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/50:focus{--tw-gradient-from:rgb(var(--gray-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/60:focus{--tw-gradient-from:rgb(var(--gray-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/70:focus{--tw-gradient-from:rgb(var(--gray-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/75:focus{--tw-gradient-from:rgb(var(--gray-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/80:focus{--tw-gradient-from:rgb(var(--gray-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/90:focus{--tw-gradient-from:rgb(var(--gray-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-7\/95:focus{--tw-gradient-from:rgb(var(--gray-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/0:focus{--tw-gradient-from:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/10:focus{--tw-gradient-from:rgb(var(--gray-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/100:focus{--tw-gradient-from:rgb(var(--gray-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/20:focus{--tw-gradient-from:rgb(var(--gray-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/25:focus{--tw-gradient-from:rgb(var(--gray-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/30:focus{--tw-gradient-from:rgb(var(--gray-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/40:focus{--tw-gradient-from:rgb(var(--gray-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/5:focus{--tw-gradient-from:rgb(var(--gray-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/50:focus{--tw-gradient-from:rgb(var(--gray-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/60:focus{--tw-gradient-from:rgb(var(--gray-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/70:focus{--tw-gradient-from:rgb(var(--gray-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/75:focus{--tw-gradient-from:rgb(var(--gray-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/80:focus{--tw-gradient-from:rgb(var(--gray-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/90:focus{--tw-gradient-from:rgb(var(--gray-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-8\/95:focus{--tw-gradient-from:rgb(var(--gray-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/0:focus{--tw-gradient-from:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/10:focus{--tw-gradient-from:rgb(var(--gray-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/100:focus{--tw-gradient-from:rgb(var(--gray-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/20:focus{--tw-gradient-from:rgb(var(--gray-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/25:focus{--tw-gradient-from:rgb(var(--gray-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/30:focus{--tw-gradient-from:rgb(var(--gray-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/40:focus{--tw-gradient-from:rgb(var(--gray-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/5:focus{--tw-gradient-from:rgb(var(--gray-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/50:focus{--tw-gradient-from:rgb(var(--gray-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/60:focus{--tw-gradient-from:rgb(var(--gray-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/70:focus{--tw-gradient-from:rgb(var(--gray-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/75:focus{--tw-gradient-from:rgb(var(--gray-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/80:focus{--tw-gradient-from:rgb(var(--gray-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/90:focus{--tw-gradient-from:rgb(var(--gray-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-gray-9\/95:focus{--tw-gradient-from:rgb(var(--gray-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/0:focus{--tw-gradient-from:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/10:focus{--tw-gradient-from:rgb(var(--green-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/100:focus{--tw-gradient-from:rgb(var(--green-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/20:focus{--tw-gradient-from:rgb(var(--green-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/25:focus{--tw-gradient-from:rgb(var(--green-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/30:focus{--tw-gradient-from:rgb(var(--green-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/40:focus{--tw-gradient-from:rgb(var(--green-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/5:focus{--tw-gradient-from:rgb(var(--green-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/50:focus{--tw-gradient-from:rgb(var(--green-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/60:focus{--tw-gradient-from:rgb(var(--green-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/70:focus{--tw-gradient-from:rgb(var(--green-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/75:focus{--tw-gradient-from:rgb(var(--green-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/80:focus{--tw-gradient-from:rgb(var(--green-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/90:focus{--tw-gradient-from:rgb(var(--green-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-1\/95:focus{--tw-gradient-from:rgb(var(--green-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/0:focus{--tw-gradient-from:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/10:focus{--tw-gradient-from:rgb(var(--green-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/100:focus{--tw-gradient-from:rgb(var(--green-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/20:focus{--tw-gradient-from:rgb(var(--green-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/25:focus{--tw-gradient-from:rgb(var(--green-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/30:focus{--tw-gradient-from:rgb(var(--green-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/40:focus{--tw-gradient-from:rgb(var(--green-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/5:focus{--tw-gradient-from:rgb(var(--green-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/50:focus{--tw-gradient-from:rgb(var(--green-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/60:focus{--tw-gradient-from:rgb(var(--green-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/70:focus{--tw-gradient-from:rgb(var(--green-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/75:focus{--tw-gradient-from:rgb(var(--green-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/80:focus{--tw-gradient-from:rgb(var(--green-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/90:focus{--tw-gradient-from:rgb(var(--green-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-10\/95:focus{--tw-gradient-from:rgb(var(--green-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/0:focus{--tw-gradient-from:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/10:focus{--tw-gradient-from:rgb(var(--green-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/100:focus{--tw-gradient-from:rgb(var(--green-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/20:focus{--tw-gradient-from:rgb(var(--green-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/25:focus{--tw-gradient-from:rgb(var(--green-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/30:focus{--tw-gradient-from:rgb(var(--green-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/40:focus{--tw-gradient-from:rgb(var(--green-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/5:focus{--tw-gradient-from:rgb(var(--green-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/50:focus{--tw-gradient-from:rgb(var(--green-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/60:focus{--tw-gradient-from:rgb(var(--green-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/70:focus{--tw-gradient-from:rgb(var(--green-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/75:focus{--tw-gradient-from:rgb(var(--green-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/80:focus{--tw-gradient-from:rgb(var(--green-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/90:focus{--tw-gradient-from:rgb(var(--green-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-2\/95:focus{--tw-gradient-from:rgb(var(--green-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/0:focus{--tw-gradient-from:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/10:focus{--tw-gradient-from:rgb(var(--green-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/100:focus{--tw-gradient-from:rgb(var(--green-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/20:focus{--tw-gradient-from:rgb(var(--green-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/25:focus{--tw-gradient-from:rgb(var(--green-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/30:focus{--tw-gradient-from:rgb(var(--green-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/40:focus{--tw-gradient-from:rgb(var(--green-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/5:focus{--tw-gradient-from:rgb(var(--green-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/50:focus{--tw-gradient-from:rgb(var(--green-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/60:focus{--tw-gradient-from:rgb(var(--green-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/70:focus{--tw-gradient-from:rgb(var(--green-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/75:focus{--tw-gradient-from:rgb(var(--green-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/80:focus{--tw-gradient-from:rgb(var(--green-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/90:focus{--tw-gradient-from:rgb(var(--green-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-3\/95:focus{--tw-gradient-from:rgb(var(--green-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/0:focus{--tw-gradient-from:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/10:focus{--tw-gradient-from:rgb(var(--green-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/100:focus{--tw-gradient-from:rgb(var(--green-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/20:focus{--tw-gradient-from:rgb(var(--green-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/25:focus{--tw-gradient-from:rgb(var(--green-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/30:focus{--tw-gradient-from:rgb(var(--green-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/40:focus{--tw-gradient-from:rgb(var(--green-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/5:focus{--tw-gradient-from:rgb(var(--green-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/50:focus{--tw-gradient-from:rgb(var(--green-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/60:focus{--tw-gradient-from:rgb(var(--green-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/70:focus{--tw-gradient-from:rgb(var(--green-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/75:focus{--tw-gradient-from:rgb(var(--green-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/80:focus{--tw-gradient-from:rgb(var(--green-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/90:focus{--tw-gradient-from:rgb(var(--green-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-4\/95:focus{--tw-gradient-from:rgb(var(--green-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/0:focus{--tw-gradient-from:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/10:focus{--tw-gradient-from:rgb(var(--green-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/100:focus{--tw-gradient-from:rgb(var(--green-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/20:focus{--tw-gradient-from:rgb(var(--green-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/25:focus{--tw-gradient-from:rgb(var(--green-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/30:focus{--tw-gradient-from:rgb(var(--green-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/40:focus{--tw-gradient-from:rgb(var(--green-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/5:focus{--tw-gradient-from:rgb(var(--green-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/50:focus{--tw-gradient-from:rgb(var(--green-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/60:focus{--tw-gradient-from:rgb(var(--green-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/70:focus{--tw-gradient-from:rgb(var(--green-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/75:focus{--tw-gradient-from:rgb(var(--green-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/80:focus{--tw-gradient-from:rgb(var(--green-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/90:focus{--tw-gradient-from:rgb(var(--green-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-5\/95:focus{--tw-gradient-from:rgb(var(--green-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/0:focus{--tw-gradient-from:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/10:focus{--tw-gradient-from:rgb(var(--green-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/100:focus{--tw-gradient-from:rgb(var(--green-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/20:focus{--tw-gradient-from:rgb(var(--green-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/25:focus{--tw-gradient-from:rgb(var(--green-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/30:focus{--tw-gradient-from:rgb(var(--green-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/40:focus{--tw-gradient-from:rgb(var(--green-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/5:focus{--tw-gradient-from:rgb(var(--green-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/50:focus{--tw-gradient-from:rgb(var(--green-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/60:focus{--tw-gradient-from:rgb(var(--green-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/70:focus{--tw-gradient-from:rgb(var(--green-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/75:focus{--tw-gradient-from:rgb(var(--green-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/80:focus{--tw-gradient-from:rgb(var(--green-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/90:focus{--tw-gradient-from:rgb(var(--green-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-6\/95:focus{--tw-gradient-from:rgb(var(--green-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/0:focus{--tw-gradient-from:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/10:focus{--tw-gradient-from:rgb(var(--green-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/100:focus{--tw-gradient-from:rgb(var(--green-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/20:focus{--tw-gradient-from:rgb(var(--green-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/25:focus{--tw-gradient-from:rgb(var(--green-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/30:focus{--tw-gradient-from:rgb(var(--green-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/40:focus{--tw-gradient-from:rgb(var(--green-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/5:focus{--tw-gradient-from:rgb(var(--green-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/50:focus{--tw-gradient-from:rgb(var(--green-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/60:focus{--tw-gradient-from:rgb(var(--green-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/70:focus{--tw-gradient-from:rgb(var(--green-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/75:focus{--tw-gradient-from:rgb(var(--green-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/80:focus{--tw-gradient-from:rgb(var(--green-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/90:focus{--tw-gradient-from:rgb(var(--green-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-7\/95:focus{--tw-gradient-from:rgb(var(--green-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/0:focus{--tw-gradient-from:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/10:focus{--tw-gradient-from:rgb(var(--green-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/100:focus{--tw-gradient-from:rgb(var(--green-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/20:focus{--tw-gradient-from:rgb(var(--green-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/25:focus{--tw-gradient-from:rgb(var(--green-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/30:focus{--tw-gradient-from:rgb(var(--green-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/40:focus{--tw-gradient-from:rgb(var(--green-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/5:focus{--tw-gradient-from:rgb(var(--green-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/50:focus{--tw-gradient-from:rgb(var(--green-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/60:focus{--tw-gradient-from:rgb(var(--green-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/70:focus{--tw-gradient-from:rgb(var(--green-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/75:focus{--tw-gradient-from:rgb(var(--green-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/80:focus{--tw-gradient-from:rgb(var(--green-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/90:focus{--tw-gradient-from:rgb(var(--green-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-8\/95:focus{--tw-gradient-from:rgb(var(--green-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/0:focus{--tw-gradient-from:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/10:focus{--tw-gradient-from:rgb(var(--green-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/100:focus{--tw-gradient-from:rgb(var(--green-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/20:focus{--tw-gradient-from:rgb(var(--green-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/25:focus{--tw-gradient-from:rgb(var(--green-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/30:focus{--tw-gradient-from:rgb(var(--green-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/40:focus{--tw-gradient-from:rgb(var(--green-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/5:focus{--tw-gradient-from:rgb(var(--green-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/50:focus{--tw-gradient-from:rgb(var(--green-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/60:focus{--tw-gradient-from:rgb(var(--green-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/70:focus{--tw-gradient-from:rgb(var(--green-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/75:focus{--tw-gradient-from:rgb(var(--green-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/80:focus{--tw-gradient-from:rgb(var(--green-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/90:focus{--tw-gradient-from:rgb(var(--green-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-green-9\/95:focus{--tw-gradient-from:rgb(var(--green-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/0:focus{--tw-gradient-from:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/10:focus{--tw-gradient-from:rgb(var(--pink-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/100:focus{--tw-gradient-from:rgb(var(--pink-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/20:focus{--tw-gradient-from:rgb(var(--pink-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/25:focus{--tw-gradient-from:rgb(var(--pink-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/30:focus{--tw-gradient-from:rgb(var(--pink-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/40:focus{--tw-gradient-from:rgb(var(--pink-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/5:focus{--tw-gradient-from:rgb(var(--pink-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/50:focus{--tw-gradient-from:rgb(var(--pink-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/60:focus{--tw-gradient-from:rgb(var(--pink-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/70:focus{--tw-gradient-from:rgb(var(--pink-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/75:focus{--tw-gradient-from:rgb(var(--pink-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/80:focus{--tw-gradient-from:rgb(var(--pink-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/90:focus{--tw-gradient-from:rgb(var(--pink-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-1\/95:focus{--tw-gradient-from:rgb(var(--pink-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/0:focus{--tw-gradient-from:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/10:focus{--tw-gradient-from:rgb(var(--pink-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/100:focus{--tw-gradient-from:rgb(var(--pink-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/20:focus{--tw-gradient-from:rgb(var(--pink-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/25:focus{--tw-gradient-from:rgb(var(--pink-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/30:focus{--tw-gradient-from:rgb(var(--pink-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/40:focus{--tw-gradient-from:rgb(var(--pink-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/5:focus{--tw-gradient-from:rgb(var(--pink-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/50:focus{--tw-gradient-from:rgb(var(--pink-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/60:focus{--tw-gradient-from:rgb(var(--pink-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/70:focus{--tw-gradient-from:rgb(var(--pink-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/75:focus{--tw-gradient-from:rgb(var(--pink-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/80:focus{--tw-gradient-from:rgb(var(--pink-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/90:focus{--tw-gradient-from:rgb(var(--pink-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-10\/95:focus{--tw-gradient-from:rgb(var(--pink-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/0:focus{--tw-gradient-from:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/10:focus{--tw-gradient-from:rgb(var(--pink-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/100:focus{--tw-gradient-from:rgb(var(--pink-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/20:focus{--tw-gradient-from:rgb(var(--pink-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/25:focus{--tw-gradient-from:rgb(var(--pink-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/30:focus{--tw-gradient-from:rgb(var(--pink-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/40:focus{--tw-gradient-from:rgb(var(--pink-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/5:focus{--tw-gradient-from:rgb(var(--pink-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/50:focus{--tw-gradient-from:rgb(var(--pink-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/60:focus{--tw-gradient-from:rgb(var(--pink-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/70:focus{--tw-gradient-from:rgb(var(--pink-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/75:focus{--tw-gradient-from:rgb(var(--pink-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/80:focus{--tw-gradient-from:rgb(var(--pink-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/90:focus{--tw-gradient-from:rgb(var(--pink-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-2\/95:focus{--tw-gradient-from:rgb(var(--pink-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/0:focus{--tw-gradient-from:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/10:focus{--tw-gradient-from:rgb(var(--pink-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/100:focus{--tw-gradient-from:rgb(var(--pink-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/20:focus{--tw-gradient-from:rgb(var(--pink-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/25:focus{--tw-gradient-from:rgb(var(--pink-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/30:focus{--tw-gradient-from:rgb(var(--pink-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/40:focus{--tw-gradient-from:rgb(var(--pink-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/5:focus{--tw-gradient-from:rgb(var(--pink-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/50:focus{--tw-gradient-from:rgb(var(--pink-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/60:focus{--tw-gradient-from:rgb(var(--pink-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/70:focus{--tw-gradient-from:rgb(var(--pink-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/75:focus{--tw-gradient-from:rgb(var(--pink-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/80:focus{--tw-gradient-from:rgb(var(--pink-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/90:focus{--tw-gradient-from:rgb(var(--pink-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-3\/95:focus{--tw-gradient-from:rgb(var(--pink-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/0:focus{--tw-gradient-from:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/10:focus{--tw-gradient-from:rgb(var(--pink-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/100:focus{--tw-gradient-from:rgb(var(--pink-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/20:focus{--tw-gradient-from:rgb(var(--pink-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/25:focus{--tw-gradient-from:rgb(var(--pink-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/30:focus{--tw-gradient-from:rgb(var(--pink-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/40:focus{--tw-gradient-from:rgb(var(--pink-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/5:focus{--tw-gradient-from:rgb(var(--pink-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/50:focus{--tw-gradient-from:rgb(var(--pink-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/60:focus{--tw-gradient-from:rgb(var(--pink-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/70:focus{--tw-gradient-from:rgb(var(--pink-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/75:focus{--tw-gradient-from:rgb(var(--pink-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/80:focus{--tw-gradient-from:rgb(var(--pink-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/90:focus{--tw-gradient-from:rgb(var(--pink-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-4\/95:focus{--tw-gradient-from:rgb(var(--pink-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/0:focus{--tw-gradient-from:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/10:focus{--tw-gradient-from:rgb(var(--pink-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/100:focus{--tw-gradient-from:rgb(var(--pink-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/20:focus{--tw-gradient-from:rgb(var(--pink-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/25:focus{--tw-gradient-from:rgb(var(--pink-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/30:focus{--tw-gradient-from:rgb(var(--pink-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/40:focus{--tw-gradient-from:rgb(var(--pink-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/5:focus{--tw-gradient-from:rgb(var(--pink-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/50:focus{--tw-gradient-from:rgb(var(--pink-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/60:focus{--tw-gradient-from:rgb(var(--pink-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/70:focus{--tw-gradient-from:rgb(var(--pink-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/75:focus{--tw-gradient-from:rgb(var(--pink-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/80:focus{--tw-gradient-from:rgb(var(--pink-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/90:focus{--tw-gradient-from:rgb(var(--pink-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-5\/95:focus{--tw-gradient-from:rgb(var(--pink-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/0:focus{--tw-gradient-from:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/10:focus{--tw-gradient-from:rgb(var(--pink-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/100:focus{--tw-gradient-from:rgb(var(--pink-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/20:focus{--tw-gradient-from:rgb(var(--pink-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/25:focus{--tw-gradient-from:rgb(var(--pink-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/30:focus{--tw-gradient-from:rgb(var(--pink-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/40:focus{--tw-gradient-from:rgb(var(--pink-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/5:focus{--tw-gradient-from:rgb(var(--pink-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/50:focus{--tw-gradient-from:rgb(var(--pink-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/60:focus{--tw-gradient-from:rgb(var(--pink-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/70:focus{--tw-gradient-from:rgb(var(--pink-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/75:focus{--tw-gradient-from:rgb(var(--pink-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/80:focus{--tw-gradient-from:rgb(var(--pink-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/90:focus{--tw-gradient-from:rgb(var(--pink-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-6\/95:focus{--tw-gradient-from:rgb(var(--pink-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/0:focus{--tw-gradient-from:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/10:focus{--tw-gradient-from:rgb(var(--pink-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/100:focus{--tw-gradient-from:rgb(var(--pink-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/20:focus{--tw-gradient-from:rgb(var(--pink-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/25:focus{--tw-gradient-from:rgb(var(--pink-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/30:focus{--tw-gradient-from:rgb(var(--pink-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/40:focus{--tw-gradient-from:rgb(var(--pink-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/5:focus{--tw-gradient-from:rgb(var(--pink-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/50:focus{--tw-gradient-from:rgb(var(--pink-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/60:focus{--tw-gradient-from:rgb(var(--pink-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/70:focus{--tw-gradient-from:rgb(var(--pink-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/75:focus{--tw-gradient-from:rgb(var(--pink-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/80:focus{--tw-gradient-from:rgb(var(--pink-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/90:focus{--tw-gradient-from:rgb(var(--pink-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-7\/95:focus{--tw-gradient-from:rgb(var(--pink-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/0:focus{--tw-gradient-from:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/10:focus{--tw-gradient-from:rgb(var(--pink-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/100:focus{--tw-gradient-from:rgb(var(--pink-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/20:focus{--tw-gradient-from:rgb(var(--pink-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/25:focus{--tw-gradient-from:rgb(var(--pink-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/30:focus{--tw-gradient-from:rgb(var(--pink-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/40:focus{--tw-gradient-from:rgb(var(--pink-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/5:focus{--tw-gradient-from:rgb(var(--pink-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/50:focus{--tw-gradient-from:rgb(var(--pink-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/60:focus{--tw-gradient-from:rgb(var(--pink-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/70:focus{--tw-gradient-from:rgb(var(--pink-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/75:focus{--tw-gradient-from:rgb(var(--pink-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/80:focus{--tw-gradient-from:rgb(var(--pink-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/90:focus{--tw-gradient-from:rgb(var(--pink-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-8\/95:focus{--tw-gradient-from:rgb(var(--pink-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/0:focus{--tw-gradient-from:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/10:focus{--tw-gradient-from:rgb(var(--pink-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/100:focus{--tw-gradient-from:rgb(var(--pink-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/20:focus{--tw-gradient-from:rgb(var(--pink-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/25:focus{--tw-gradient-from:rgb(var(--pink-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/30:focus{--tw-gradient-from:rgb(var(--pink-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/40:focus{--tw-gradient-from:rgb(var(--pink-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/5:focus{--tw-gradient-from:rgb(var(--pink-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/50:focus{--tw-gradient-from:rgb(var(--pink-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/60:focus{--tw-gradient-from:rgb(var(--pink-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/70:focus{--tw-gradient-from:rgb(var(--pink-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/75:focus{--tw-gradient-from:rgb(var(--pink-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/80:focus{--tw-gradient-from:rgb(var(--pink-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/90:focus{--tw-gradient-from:rgb(var(--pink-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-pink-9\/95:focus{--tw-gradient-from:rgb(var(--pink-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary:focus{--tw-gradient-from:rgb(var(--primary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/0:focus{--tw-gradient-from:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/10:focus{--tw-gradient-from:rgb(var(--primary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/100:focus{--tw-gradient-from:rgb(var(--primary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/20:focus{--tw-gradient-from:rgb(var(--primary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/25:focus{--tw-gradient-from:rgb(var(--primary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/30:focus{--tw-gradient-from:rgb(var(--primary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/40:focus{--tw-gradient-from:rgb(var(--primary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/5:focus{--tw-gradient-from:rgb(var(--primary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/50:focus{--tw-gradient-from:rgb(var(--primary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/60:focus{--tw-gradient-from:rgb(var(--primary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/70:focus{--tw-gradient-from:rgb(var(--primary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/75:focus{--tw-gradient-from:rgb(var(--primary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/80:focus{--tw-gradient-from:rgb(var(--primary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/90:focus{--tw-gradient-from:rgb(var(--primary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/95:focus{--tw-gradient-from:rgb(var(--primary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/0:focus{--tw-gradient-from:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/10:focus{--tw-gradient-from:rgb(var(--purple-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/100:focus{--tw-gradient-from:rgb(var(--purple-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/20:focus{--tw-gradient-from:rgb(var(--purple-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/25:focus{--tw-gradient-from:rgb(var(--purple-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/30:focus{--tw-gradient-from:rgb(var(--purple-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/40:focus{--tw-gradient-from:rgb(var(--purple-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/5:focus{--tw-gradient-from:rgb(var(--purple-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/50:focus{--tw-gradient-from:rgb(var(--purple-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/60:focus{--tw-gradient-from:rgb(var(--purple-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/70:focus{--tw-gradient-from:rgb(var(--purple-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/75:focus{--tw-gradient-from:rgb(var(--purple-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/80:focus{--tw-gradient-from:rgb(var(--purple-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/90:focus{--tw-gradient-from:rgb(var(--purple-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-1\/95:focus{--tw-gradient-from:rgb(var(--purple-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/0:focus{--tw-gradient-from:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/10:focus{--tw-gradient-from:rgb(var(--purple-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/100:focus{--tw-gradient-from:rgb(var(--purple-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/20:focus{--tw-gradient-from:rgb(var(--purple-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/25:focus{--tw-gradient-from:rgb(var(--purple-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/30:focus{--tw-gradient-from:rgb(var(--purple-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/40:focus{--tw-gradient-from:rgb(var(--purple-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/5:focus{--tw-gradient-from:rgb(var(--purple-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/50:focus{--tw-gradient-from:rgb(var(--purple-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/60:focus{--tw-gradient-from:rgb(var(--purple-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/70:focus{--tw-gradient-from:rgb(var(--purple-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/75:focus{--tw-gradient-from:rgb(var(--purple-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/80:focus{--tw-gradient-from:rgb(var(--purple-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/90:focus{--tw-gradient-from:rgb(var(--purple-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-10\/95:focus{--tw-gradient-from:rgb(var(--purple-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/0:focus{--tw-gradient-from:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/10:focus{--tw-gradient-from:rgb(var(--purple-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/100:focus{--tw-gradient-from:rgb(var(--purple-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/20:focus{--tw-gradient-from:rgb(var(--purple-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/25:focus{--tw-gradient-from:rgb(var(--purple-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/30:focus{--tw-gradient-from:rgb(var(--purple-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/40:focus{--tw-gradient-from:rgb(var(--purple-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/5:focus{--tw-gradient-from:rgb(var(--purple-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/50:focus{--tw-gradient-from:rgb(var(--purple-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/60:focus{--tw-gradient-from:rgb(var(--purple-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/70:focus{--tw-gradient-from:rgb(var(--purple-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/75:focus{--tw-gradient-from:rgb(var(--purple-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/80:focus{--tw-gradient-from:rgb(var(--purple-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/90:focus{--tw-gradient-from:rgb(var(--purple-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-2\/95:focus{--tw-gradient-from:rgb(var(--purple-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/0:focus{--tw-gradient-from:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/10:focus{--tw-gradient-from:rgb(var(--purple-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/100:focus{--tw-gradient-from:rgb(var(--purple-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/20:focus{--tw-gradient-from:rgb(var(--purple-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/25:focus{--tw-gradient-from:rgb(var(--purple-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/30:focus{--tw-gradient-from:rgb(var(--purple-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/40:focus{--tw-gradient-from:rgb(var(--purple-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/5:focus{--tw-gradient-from:rgb(var(--purple-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/50:focus{--tw-gradient-from:rgb(var(--purple-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/60:focus{--tw-gradient-from:rgb(var(--purple-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/70:focus{--tw-gradient-from:rgb(var(--purple-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/75:focus{--tw-gradient-from:rgb(var(--purple-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/80:focus{--tw-gradient-from:rgb(var(--purple-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/90:focus{--tw-gradient-from:rgb(var(--purple-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-3\/95:focus{--tw-gradient-from:rgb(var(--purple-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/0:focus{--tw-gradient-from:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/10:focus{--tw-gradient-from:rgb(var(--purple-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/100:focus{--tw-gradient-from:rgb(var(--purple-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/20:focus{--tw-gradient-from:rgb(var(--purple-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/25:focus{--tw-gradient-from:rgb(var(--purple-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/30:focus{--tw-gradient-from:rgb(var(--purple-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/40:focus{--tw-gradient-from:rgb(var(--purple-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/5:focus{--tw-gradient-from:rgb(var(--purple-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/50:focus{--tw-gradient-from:rgb(var(--purple-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/60:focus{--tw-gradient-from:rgb(var(--purple-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/70:focus{--tw-gradient-from:rgb(var(--purple-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/75:focus{--tw-gradient-from:rgb(var(--purple-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/80:focus{--tw-gradient-from:rgb(var(--purple-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/90:focus{--tw-gradient-from:rgb(var(--purple-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-4\/95:focus{--tw-gradient-from:rgb(var(--purple-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/0:focus{--tw-gradient-from:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/10:focus{--tw-gradient-from:rgb(var(--purple-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/100:focus{--tw-gradient-from:rgb(var(--purple-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/20:focus{--tw-gradient-from:rgb(var(--purple-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/25:focus{--tw-gradient-from:rgb(var(--purple-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/30:focus{--tw-gradient-from:rgb(var(--purple-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/40:focus{--tw-gradient-from:rgb(var(--purple-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/5:focus{--tw-gradient-from:rgb(var(--purple-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/50:focus{--tw-gradient-from:rgb(var(--purple-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/60:focus{--tw-gradient-from:rgb(var(--purple-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/70:focus{--tw-gradient-from:rgb(var(--purple-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/75:focus{--tw-gradient-from:rgb(var(--purple-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/80:focus{--tw-gradient-from:rgb(var(--purple-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/90:focus{--tw-gradient-from:rgb(var(--purple-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-5\/95:focus{--tw-gradient-from:rgb(var(--purple-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/0:focus{--tw-gradient-from:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/10:focus{--tw-gradient-from:rgb(var(--purple-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/100:focus{--tw-gradient-from:rgb(var(--purple-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/20:focus{--tw-gradient-from:rgb(var(--purple-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/25:focus{--tw-gradient-from:rgb(var(--purple-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/30:focus{--tw-gradient-from:rgb(var(--purple-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/40:focus{--tw-gradient-from:rgb(var(--purple-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/5:focus{--tw-gradient-from:rgb(var(--purple-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/50:focus{--tw-gradient-from:rgb(var(--purple-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/60:focus{--tw-gradient-from:rgb(var(--purple-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/70:focus{--tw-gradient-from:rgb(var(--purple-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/75:focus{--tw-gradient-from:rgb(var(--purple-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/80:focus{--tw-gradient-from:rgb(var(--purple-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/90:focus{--tw-gradient-from:rgb(var(--purple-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-6\/95:focus{--tw-gradient-from:rgb(var(--purple-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/0:focus{--tw-gradient-from:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/10:focus{--tw-gradient-from:rgb(var(--purple-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/100:focus{--tw-gradient-from:rgb(var(--purple-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/20:focus{--tw-gradient-from:rgb(var(--purple-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/25:focus{--tw-gradient-from:rgb(var(--purple-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/30:focus{--tw-gradient-from:rgb(var(--purple-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/40:focus{--tw-gradient-from:rgb(var(--purple-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/5:focus{--tw-gradient-from:rgb(var(--purple-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/50:focus{--tw-gradient-from:rgb(var(--purple-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/60:focus{--tw-gradient-from:rgb(var(--purple-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/70:focus{--tw-gradient-from:rgb(var(--purple-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/75:focus{--tw-gradient-from:rgb(var(--purple-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/80:focus{--tw-gradient-from:rgb(var(--purple-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/90:focus{--tw-gradient-from:rgb(var(--purple-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-7\/95:focus{--tw-gradient-from:rgb(var(--purple-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/0:focus{--tw-gradient-from:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/10:focus{--tw-gradient-from:rgb(var(--purple-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/100:focus{--tw-gradient-from:rgb(var(--purple-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/20:focus{--tw-gradient-from:rgb(var(--purple-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/25:focus{--tw-gradient-from:rgb(var(--purple-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/30:focus{--tw-gradient-from:rgb(var(--purple-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/40:focus{--tw-gradient-from:rgb(var(--purple-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/5:focus{--tw-gradient-from:rgb(var(--purple-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/50:focus{--tw-gradient-from:rgb(var(--purple-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/60:focus{--tw-gradient-from:rgb(var(--purple-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/70:focus{--tw-gradient-from:rgb(var(--purple-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/75:focus{--tw-gradient-from:rgb(var(--purple-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/80:focus{--tw-gradient-from:rgb(var(--purple-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/90:focus{--tw-gradient-from:rgb(var(--purple-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-8\/95:focus{--tw-gradient-from:rgb(var(--purple-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/0:focus{--tw-gradient-from:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/10:focus{--tw-gradient-from:rgb(var(--purple-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/100:focus{--tw-gradient-from:rgb(var(--purple-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/20:focus{--tw-gradient-from:rgb(var(--purple-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/25:focus{--tw-gradient-from:rgb(var(--purple-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/30:focus{--tw-gradient-from:rgb(var(--purple-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/40:focus{--tw-gradient-from:rgb(var(--purple-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/5:focus{--tw-gradient-from:rgb(var(--purple-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/50:focus{--tw-gradient-from:rgb(var(--purple-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/60:focus{--tw-gradient-from:rgb(var(--purple-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/70:focus{--tw-gradient-from:rgb(var(--purple-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/75:focus{--tw-gradient-from:rgb(var(--purple-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/80:focus{--tw-gradient-from:rgb(var(--purple-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/90:focus{--tw-gradient-from:rgb(var(--purple-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-purple-9\/95:focus{--tw-gradient-from:rgb(var(--purple-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/0:focus{--tw-gradient-from:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/10:focus{--tw-gradient-from:rgb(var(--red-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/100:focus{--tw-gradient-from:rgb(var(--red-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/20:focus{--tw-gradient-from:rgb(var(--red-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/25:focus{--tw-gradient-from:rgb(var(--red-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/30:focus{--tw-gradient-from:rgb(var(--red-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/40:focus{--tw-gradient-from:rgb(var(--red-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/5:focus{--tw-gradient-from:rgb(var(--red-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/50:focus{--tw-gradient-from:rgb(var(--red-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/60:focus{--tw-gradient-from:rgb(var(--red-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/70:focus{--tw-gradient-from:rgb(var(--red-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/75:focus{--tw-gradient-from:rgb(var(--red-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/80:focus{--tw-gradient-from:rgb(var(--red-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/90:focus{--tw-gradient-from:rgb(var(--red-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-1\/95:focus{--tw-gradient-from:rgb(var(--red-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/0:focus{--tw-gradient-from:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/10:focus{--tw-gradient-from:rgb(var(--red-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/100:focus{--tw-gradient-from:rgb(var(--red-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/20:focus{--tw-gradient-from:rgb(var(--red-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/25:focus{--tw-gradient-from:rgb(var(--red-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/30:focus{--tw-gradient-from:rgb(var(--red-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/40:focus{--tw-gradient-from:rgb(var(--red-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/5:focus{--tw-gradient-from:rgb(var(--red-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/50:focus{--tw-gradient-from:rgb(var(--red-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/60:focus{--tw-gradient-from:rgb(var(--red-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/70:focus{--tw-gradient-from:rgb(var(--red-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/75:focus{--tw-gradient-from:rgb(var(--red-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/80:focus{--tw-gradient-from:rgb(var(--red-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/90:focus{--tw-gradient-from:rgb(var(--red-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-10\/95:focus{--tw-gradient-from:rgb(var(--red-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/0:focus{--tw-gradient-from:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/10:focus{--tw-gradient-from:rgb(var(--red-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/100:focus{--tw-gradient-from:rgb(var(--red-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/20:focus{--tw-gradient-from:rgb(var(--red-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/25:focus{--tw-gradient-from:rgb(var(--red-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/30:focus{--tw-gradient-from:rgb(var(--red-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/40:focus{--tw-gradient-from:rgb(var(--red-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/5:focus{--tw-gradient-from:rgb(var(--red-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/50:focus{--tw-gradient-from:rgb(var(--red-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/60:focus{--tw-gradient-from:rgb(var(--red-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/70:focus{--tw-gradient-from:rgb(var(--red-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/75:focus{--tw-gradient-from:rgb(var(--red-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/80:focus{--tw-gradient-from:rgb(var(--red-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/90:focus{--tw-gradient-from:rgb(var(--red-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-2\/95:focus{--tw-gradient-from:rgb(var(--red-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/0:focus{--tw-gradient-from:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/10:focus{--tw-gradient-from:rgb(var(--red-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/100:focus{--tw-gradient-from:rgb(var(--red-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/20:focus{--tw-gradient-from:rgb(var(--red-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/25:focus{--tw-gradient-from:rgb(var(--red-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/30:focus{--tw-gradient-from:rgb(var(--red-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/40:focus{--tw-gradient-from:rgb(var(--red-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/5:focus{--tw-gradient-from:rgb(var(--red-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/50:focus{--tw-gradient-from:rgb(var(--red-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/60:focus{--tw-gradient-from:rgb(var(--red-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/70:focus{--tw-gradient-from:rgb(var(--red-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/75:focus{--tw-gradient-from:rgb(var(--red-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/80:focus{--tw-gradient-from:rgb(var(--red-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/90:focus{--tw-gradient-from:rgb(var(--red-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-3\/95:focus{--tw-gradient-from:rgb(var(--red-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/0:focus{--tw-gradient-from:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/10:focus{--tw-gradient-from:rgb(var(--red-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/100:focus{--tw-gradient-from:rgb(var(--red-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/20:focus{--tw-gradient-from:rgb(var(--red-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/25:focus{--tw-gradient-from:rgb(var(--red-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/30:focus{--tw-gradient-from:rgb(var(--red-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/40:focus{--tw-gradient-from:rgb(var(--red-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/5:focus{--tw-gradient-from:rgb(var(--red-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/50:focus{--tw-gradient-from:rgb(var(--red-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/60:focus{--tw-gradient-from:rgb(var(--red-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/70:focus{--tw-gradient-from:rgb(var(--red-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/75:focus{--tw-gradient-from:rgb(var(--red-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/80:focus{--tw-gradient-from:rgb(var(--red-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/90:focus{--tw-gradient-from:rgb(var(--red-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-4\/95:focus{--tw-gradient-from:rgb(var(--red-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/0:focus{--tw-gradient-from:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/10:focus{--tw-gradient-from:rgb(var(--red-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/100:focus{--tw-gradient-from:rgb(var(--red-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/20:focus{--tw-gradient-from:rgb(var(--red-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/25:focus{--tw-gradient-from:rgb(var(--red-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/30:focus{--tw-gradient-from:rgb(var(--red-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/40:focus{--tw-gradient-from:rgb(var(--red-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/5:focus{--tw-gradient-from:rgb(var(--red-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/50:focus{--tw-gradient-from:rgb(var(--red-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/60:focus{--tw-gradient-from:rgb(var(--red-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/70:focus{--tw-gradient-from:rgb(var(--red-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/75:focus{--tw-gradient-from:rgb(var(--red-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/80:focus{--tw-gradient-from:rgb(var(--red-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/90:focus{--tw-gradient-from:rgb(var(--red-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-5\/95:focus{--tw-gradient-from:rgb(var(--red-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/0:focus{--tw-gradient-from:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/10:focus{--tw-gradient-from:rgb(var(--red-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/100:focus{--tw-gradient-from:rgb(var(--red-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/20:focus{--tw-gradient-from:rgb(var(--red-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/25:focus{--tw-gradient-from:rgb(var(--red-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/30:focus{--tw-gradient-from:rgb(var(--red-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/40:focus{--tw-gradient-from:rgb(var(--red-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/5:focus{--tw-gradient-from:rgb(var(--red-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/50:focus{--tw-gradient-from:rgb(var(--red-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/60:focus{--tw-gradient-from:rgb(var(--red-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/70:focus{--tw-gradient-from:rgb(var(--red-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/75:focus{--tw-gradient-from:rgb(var(--red-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/80:focus{--tw-gradient-from:rgb(var(--red-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/90:focus{--tw-gradient-from:rgb(var(--red-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-6\/95:focus{--tw-gradient-from:rgb(var(--red-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/0:focus{--tw-gradient-from:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/10:focus{--tw-gradient-from:rgb(var(--red-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/100:focus{--tw-gradient-from:rgb(var(--red-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/20:focus{--tw-gradient-from:rgb(var(--red-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/25:focus{--tw-gradient-from:rgb(var(--red-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/30:focus{--tw-gradient-from:rgb(var(--red-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/40:focus{--tw-gradient-from:rgb(var(--red-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/5:focus{--tw-gradient-from:rgb(var(--red-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/50:focus{--tw-gradient-from:rgb(var(--red-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/60:focus{--tw-gradient-from:rgb(var(--red-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/70:focus{--tw-gradient-from:rgb(var(--red-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/75:focus{--tw-gradient-from:rgb(var(--red-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/80:focus{--tw-gradient-from:rgb(var(--red-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/90:focus{--tw-gradient-from:rgb(var(--red-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-7\/95:focus{--tw-gradient-from:rgb(var(--red-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/0:focus{--tw-gradient-from:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/10:focus{--tw-gradient-from:rgb(var(--red-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/100:focus{--tw-gradient-from:rgb(var(--red-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/20:focus{--tw-gradient-from:rgb(var(--red-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/25:focus{--tw-gradient-from:rgb(var(--red-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/30:focus{--tw-gradient-from:rgb(var(--red-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/40:focus{--tw-gradient-from:rgb(var(--red-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/5:focus{--tw-gradient-from:rgb(var(--red-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/50:focus{--tw-gradient-from:rgb(var(--red-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/60:focus{--tw-gradient-from:rgb(var(--red-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/70:focus{--tw-gradient-from:rgb(var(--red-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/75:focus{--tw-gradient-from:rgb(var(--red-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/80:focus{--tw-gradient-from:rgb(var(--red-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/90:focus{--tw-gradient-from:rgb(var(--red-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-8\/95:focus{--tw-gradient-from:rgb(var(--red-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/0:focus{--tw-gradient-from:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/10:focus{--tw-gradient-from:rgb(var(--red-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/100:focus{--tw-gradient-from:rgb(var(--red-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/20:focus{--tw-gradient-from:rgb(var(--red-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/25:focus{--tw-gradient-from:rgb(var(--red-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/30:focus{--tw-gradient-from:rgb(var(--red-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/40:focus{--tw-gradient-from:rgb(var(--red-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/5:focus{--tw-gradient-from:rgb(var(--red-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/50:focus{--tw-gradient-from:rgb(var(--red-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/60:focus{--tw-gradient-from:rgb(var(--red-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/70:focus{--tw-gradient-from:rgb(var(--red-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/75:focus{--tw-gradient-from:rgb(var(--red-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/80:focus{--tw-gradient-from:rgb(var(--red-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/90:focus{--tw-gradient-from:rgb(var(--red-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-red-9\/95:focus{--tw-gradient-from:rgb(var(--red-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary:focus{--tw-gradient-from:rgb(var(--secondary)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/0:focus{--tw-gradient-from:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/10:focus{--tw-gradient-from:rgb(var(--secondary)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/100:focus{--tw-gradient-from:rgb(var(--secondary)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/20:focus{--tw-gradient-from:rgb(var(--secondary)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/25:focus{--tw-gradient-from:rgb(var(--secondary)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/30:focus{--tw-gradient-from:rgb(var(--secondary)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/40:focus{--tw-gradient-from:rgb(var(--secondary)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/5:focus{--tw-gradient-from:rgb(var(--secondary)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/50:focus{--tw-gradient-from:rgb(var(--secondary)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/60:focus{--tw-gradient-from:rgb(var(--secondary)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/70:focus{--tw-gradient-from:rgb(var(--secondary)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/75:focus{--tw-gradient-from:rgb(var(--secondary)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/80:focus{--tw-gradient-from:rgb(var(--secondary)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/90:focus{--tw-gradient-from:rgb(var(--secondary)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/95:focus{--tw-gradient-from:rgb(var(--secondary)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/0:focus{--tw-gradient-from:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/10:focus{--tw-gradient-from:rgb(var(--slate-1)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/100:focus{--tw-gradient-from:rgb(var(--slate-1)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/20:focus{--tw-gradient-from:rgb(var(--slate-1)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/25:focus{--tw-gradient-from:rgb(var(--slate-1)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/30:focus{--tw-gradient-from:rgb(var(--slate-1)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/40:focus{--tw-gradient-from:rgb(var(--slate-1)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/5:focus{--tw-gradient-from:rgb(var(--slate-1)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/50:focus{--tw-gradient-from:rgb(var(--slate-1)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/60:focus{--tw-gradient-from:rgb(var(--slate-1)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/70:focus{--tw-gradient-from:rgb(var(--slate-1)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/75:focus{--tw-gradient-from:rgb(var(--slate-1)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/80:focus{--tw-gradient-from:rgb(var(--slate-1)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/90:focus{--tw-gradient-from:rgb(var(--slate-1)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-1\/95:focus{--tw-gradient-from:rgb(var(--slate-1)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/0:focus{--tw-gradient-from:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/10:focus{--tw-gradient-from:rgb(var(--slate-10)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/100:focus{--tw-gradient-from:rgb(var(--slate-10)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/20:focus{--tw-gradient-from:rgb(var(--slate-10)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/25:focus{--tw-gradient-from:rgb(var(--slate-10)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/30:focus{--tw-gradient-from:rgb(var(--slate-10)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/40:focus{--tw-gradient-from:rgb(var(--slate-10)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/5:focus{--tw-gradient-from:rgb(var(--slate-10)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/50:focus{--tw-gradient-from:rgb(var(--slate-10)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/60:focus{--tw-gradient-from:rgb(var(--slate-10)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/70:focus{--tw-gradient-from:rgb(var(--slate-10)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/75:focus{--tw-gradient-from:rgb(var(--slate-10)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/80:focus{--tw-gradient-from:rgb(var(--slate-10)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/90:focus{--tw-gradient-from:rgb(var(--slate-10)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-10\/95:focus{--tw-gradient-from:rgb(var(--slate-10)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/0:focus{--tw-gradient-from:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/10:focus{--tw-gradient-from:rgb(var(--slate-2)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/100:focus{--tw-gradient-from:rgb(var(--slate-2)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/20:focus{--tw-gradient-from:rgb(var(--slate-2)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/25:focus{--tw-gradient-from:rgb(var(--slate-2)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/30:focus{--tw-gradient-from:rgb(var(--slate-2)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/40:focus{--tw-gradient-from:rgb(var(--slate-2)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/5:focus{--tw-gradient-from:rgb(var(--slate-2)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/50:focus{--tw-gradient-from:rgb(var(--slate-2)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/60:focus{--tw-gradient-from:rgb(var(--slate-2)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/70:focus{--tw-gradient-from:rgb(var(--slate-2)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/75:focus{--tw-gradient-from:rgb(var(--slate-2)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/80:focus{--tw-gradient-from:rgb(var(--slate-2)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/90:focus{--tw-gradient-from:rgb(var(--slate-2)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-2\/95:focus{--tw-gradient-from:rgb(var(--slate-2)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/0:focus{--tw-gradient-from:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/10:focus{--tw-gradient-from:rgb(var(--slate-3)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/100:focus{--tw-gradient-from:rgb(var(--slate-3)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/20:focus{--tw-gradient-from:rgb(var(--slate-3)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/25:focus{--tw-gradient-from:rgb(var(--slate-3)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/30:focus{--tw-gradient-from:rgb(var(--slate-3)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/40:focus{--tw-gradient-from:rgb(var(--slate-3)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/5:focus{--tw-gradient-from:rgb(var(--slate-3)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/50:focus{--tw-gradient-from:rgb(var(--slate-3)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/60:focus{--tw-gradient-from:rgb(var(--slate-3)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/70:focus{--tw-gradient-from:rgb(var(--slate-3)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/75:focus{--tw-gradient-from:rgb(var(--slate-3)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/80:focus{--tw-gradient-from:rgb(var(--slate-3)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/90:focus{--tw-gradient-from:rgb(var(--slate-3)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-3\/95:focus{--tw-gradient-from:rgb(var(--slate-3)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/0:focus{--tw-gradient-from:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/10:focus{--tw-gradient-from:rgb(var(--slate-4)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/100:focus{--tw-gradient-from:rgb(var(--slate-4)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/20:focus{--tw-gradient-from:rgb(var(--slate-4)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/25:focus{--tw-gradient-from:rgb(var(--slate-4)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/30:focus{--tw-gradient-from:rgb(var(--slate-4)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/40:focus{--tw-gradient-from:rgb(var(--slate-4)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/5:focus{--tw-gradient-from:rgb(var(--slate-4)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/50:focus{--tw-gradient-from:rgb(var(--slate-4)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/60:focus{--tw-gradient-from:rgb(var(--slate-4)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/70:focus{--tw-gradient-from:rgb(var(--slate-4)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/75:focus{--tw-gradient-from:rgb(var(--slate-4)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/80:focus{--tw-gradient-from:rgb(var(--slate-4)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/90:focus{--tw-gradient-from:rgb(var(--slate-4)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-4\/95:focus{--tw-gradient-from:rgb(var(--slate-4)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/0:focus{--tw-gradient-from:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/10:focus{--tw-gradient-from:rgb(var(--slate-5)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/100:focus{--tw-gradient-from:rgb(var(--slate-5)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/20:focus{--tw-gradient-from:rgb(var(--slate-5)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/25:focus{--tw-gradient-from:rgb(var(--slate-5)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/30:focus{--tw-gradient-from:rgb(var(--slate-5)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/40:focus{--tw-gradient-from:rgb(var(--slate-5)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/5:focus{--tw-gradient-from:rgb(var(--slate-5)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/50:focus{--tw-gradient-from:rgb(var(--slate-5)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/60:focus{--tw-gradient-from:rgb(var(--slate-5)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/70:focus{--tw-gradient-from:rgb(var(--slate-5)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/75:focus{--tw-gradient-from:rgb(var(--slate-5)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/80:focus{--tw-gradient-from:rgb(var(--slate-5)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/90:focus{--tw-gradient-from:rgb(var(--slate-5)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-5\/95:focus{--tw-gradient-from:rgb(var(--slate-5)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/0:focus{--tw-gradient-from:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/10:focus{--tw-gradient-from:rgb(var(--slate-6)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/100:focus{--tw-gradient-from:rgb(var(--slate-6)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/20:focus{--tw-gradient-from:rgb(var(--slate-6)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/25:focus{--tw-gradient-from:rgb(var(--slate-6)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/30:focus{--tw-gradient-from:rgb(var(--slate-6)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/40:focus{--tw-gradient-from:rgb(var(--slate-6)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/5:focus{--tw-gradient-from:rgb(var(--slate-6)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/50:focus{--tw-gradient-from:rgb(var(--slate-6)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/60:focus{--tw-gradient-from:rgb(var(--slate-6)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/70:focus{--tw-gradient-from:rgb(var(--slate-6)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/75:focus{--tw-gradient-from:rgb(var(--slate-6)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/80:focus{--tw-gradient-from:rgb(var(--slate-6)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/90:focus{--tw-gradient-from:rgb(var(--slate-6)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-6\/95:focus{--tw-gradient-from:rgb(var(--slate-6)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/0:focus{--tw-gradient-from:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/10:focus{--tw-gradient-from:rgb(var(--slate-7)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/100:focus{--tw-gradient-from:rgb(var(--slate-7)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/20:focus{--tw-gradient-from:rgb(var(--slate-7)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/25:focus{--tw-gradient-from:rgb(var(--slate-7)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/30:focus{--tw-gradient-from:rgb(var(--slate-7)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/40:focus{--tw-gradient-from:rgb(var(--slate-7)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/5:focus{--tw-gradient-from:rgb(var(--slate-7)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/50:focus{--tw-gradient-from:rgb(var(--slate-7)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/60:focus{--tw-gradient-from:rgb(var(--slate-7)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/70:focus{--tw-gradient-from:rgb(var(--slate-7)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/75:focus{--tw-gradient-from:rgb(var(--slate-7)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/80:focus{--tw-gradient-from:rgb(var(--slate-7)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/90:focus{--tw-gradient-from:rgb(var(--slate-7)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-7\/95:focus{--tw-gradient-from:rgb(var(--slate-7)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/0:focus{--tw-gradient-from:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/10:focus{--tw-gradient-from:rgb(var(--slate-8)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/100:focus{--tw-gradient-from:rgb(var(--slate-8)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/20:focus{--tw-gradient-from:rgb(var(--slate-8)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/25:focus{--tw-gradient-from:rgb(var(--slate-8)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/30:focus{--tw-gradient-from:rgb(var(--slate-8)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/40:focus{--tw-gradient-from:rgb(var(--slate-8)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/5:focus{--tw-gradient-from:rgb(var(--slate-8)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/50:focus{--tw-gradient-from:rgb(var(--slate-8)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/60:focus{--tw-gradient-from:rgb(var(--slate-8)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/70:focus{--tw-gradient-from:rgb(var(--slate-8)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/75:focus{--tw-gradient-from:rgb(var(--slate-8)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/80:focus{--tw-gradient-from:rgb(var(--slate-8)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/90:focus{--tw-gradient-from:rgb(var(--slate-8)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-8\/95:focus{--tw-gradient-from:rgb(var(--slate-8)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/0:focus{--tw-gradient-from:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/10:focus{--tw-gradient-from:rgb(var(--slate-9)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/100:focus{--tw-gradient-from:rgb(var(--slate-9)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/20:focus{--tw-gradient-from:rgb(var(--slate-9)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/25:focus{--tw-gradient-from:rgb(var(--slate-9)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/30:focus{--tw-gradient-from:rgb(var(--slate-9)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/40:focus{--tw-gradient-from:rgb(var(--slate-9)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/5:focus{--tw-gradient-from:rgb(var(--slate-9)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/50:focus{--tw-gradient-from:rgb(var(--slate-9)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/60:focus{--tw-gradient-from:rgb(var(--slate-9)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/70:focus{--tw-gradient-from:rgb(var(--slate-9)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/75:focus{--tw-gradient-from:rgb(var(--slate-9)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/80:focus{--tw-gradient-from:rgb(var(--slate-9)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/90:focus{--tw-gradient-from:rgb(var(--slate-9)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-slate-9\/95:focus{--tw-gradient-from:rgb(var(--slate-9)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success:focus{--tw-gradient-from:rgb(var(--success)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/0:focus{--tw-gradient-from:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/10:focus{--tw-gradient-from:rgb(var(--success)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/100:focus{--tw-gradient-from:rgb(var(--success)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/20:focus{--tw-gradient-from:rgb(var(--success)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/25:focus{--tw-gradient-from:rgb(var(--success)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/30:focus{--tw-gradient-from:rgb(var(--success)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/40:focus{--tw-gradient-from:rgb(var(--success)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/5:focus{--tw-gradient-from:rgb(var(--success)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/50:focus{--tw-gradient-from:rgb(var(--success)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/60:focus{--tw-gradient-from:rgb(var(--success)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/70:focus{--tw-gradient-from:rgb(var(--success)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/75:focus{--tw-gradient-from:rgb(var(--success)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/80:focus{--tw-gradient-from:rgb(var(--success)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/90:focus{--tw-gradient-from:rgb(var(--success)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/95:focus{--tw-gradient-from:rgb(var(--success)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning:focus{--tw-gradient-from:rgb(var(--warning)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/0:focus{--tw-gradient-from:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/10:focus{--tw-gradient-from:rgb(var(--warning)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/100:focus{--tw-gradient-from:rgb(var(--warning)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/20:focus{--tw-gradient-from:rgb(var(--warning)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/25:focus{--tw-gradient-from:rgb(var(--warning)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/30:focus{--tw-gradient-from:rgb(var(--warning)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/40:focus{--tw-gradient-from:rgb(var(--warning)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/5:focus{--tw-gradient-from:rgb(var(--warning)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/50:focus{--tw-gradient-from:rgb(var(--warning)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/60:focus{--tw-gradient-from:rgb(var(--warning)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/70:focus{--tw-gradient-from:rgb(var(--warning)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/75:focus{--tw-gradient-from:rgb(var(--warning)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/80:focus{--tw-gradient-from:rgb(var(--warning)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/90:focus{--tw-gradient-from:rgb(var(--warning)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/95:focus{--tw-gradient-from:rgb(var(--warning)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white:focus{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/0:focus{--tw-gradient-from:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/10:focus{--tw-gradient-from:hsla(0,0%,100%,.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/100:focus{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/20:focus{--tw-gradient-from:hsla(0,0%,100%,.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/25:focus{--tw-gradient-from:hsla(0,0%,100%,.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/30:focus{--tw-gradient-from:hsla(0,0%,100%,.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/40:focus{--tw-gradient-from:hsla(0,0%,100%,.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/5:focus{--tw-gradient-from:hsla(0,0%,100%,.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/50:focus{--tw-gradient-from:hsla(0,0%,100%,.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/60:focus{--tw-gradient-from:hsla(0,0%,100%,.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/70:focus{--tw-gradient-from:hsla(0,0%,100%,.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/75:focus{--tw-gradient-from:hsla(0,0%,100%,.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/80:focus{--tw-gradient-from:hsla(0,0%,100%,.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/90:focus{--tw-gradient-from:hsla(0,0%,100%,.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-white\/95:focus{--tw-gradient-from:hsla(0,0%,100%,.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted:focus{--tw-gradient-from:rgb(var(--whiteInverted)) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/0:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/10:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/100:focus{--tw-gradient-from:rgb(var(--whiteInverted)/1) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/20:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.2) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/25:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.25) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/30:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.3) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/40:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.4) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/5:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.05) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/50:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.5) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/60:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.6) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/70:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.7) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/75:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.75) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/80:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.8) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/90:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.9) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-whiteInverted\/95:focus{--tw-gradient-from:rgb(var(--whiteInverted)/0.95) var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:via-backgroundPrimary:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundPrimary\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-backgroundSecondary\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#000 var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),transparent var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#000 var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-black\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgba(0,0,0,.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blackInverted\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blackInverted)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-blue-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--blue-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-border\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--border)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-content3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--content3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-cyan-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--cyan-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--error)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-gray-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--gray-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-green-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--green-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-pink-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--pink-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--primary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-purple-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--purple-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-red-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--red-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--secondary)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-1\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-1)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-10\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-10)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-2\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-2)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-3\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-3)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-4\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-4)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-5\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-5)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-6\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-6)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-7\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-7)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-8\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-8)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-slate-9\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--slate-9)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--success)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--warning)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#fff var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),#fff var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-white\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),hsla(0,0%,100%,.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/0:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/10:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/100:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/20:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/25:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/30:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/40:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/5:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/50:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/60:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/70:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/75:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/80:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/90:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-whiteInverted\/95:focus{--tw-gradient-via-position: ;--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),rgb(var(--whiteInverted)/0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:to-backgroundPrimary:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/0:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/10:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/100:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/20:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/25:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/30:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/40:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/5:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/50:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/60:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/70:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/75:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/80:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/90:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundPrimary\/95:focus{--tw-gradient-to:rgb(var(--backgroundPrimary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/0:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/10:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/100:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/20:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/25:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/30:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/40:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/5:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/50:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/60:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/70:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/75:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/80:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/90:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-backgroundSecondary\/95:focus{--tw-gradient-to:rgb(var(--backgroundSecondary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black:focus{--tw-gradient-to:#000 var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/0:focus{--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/10:focus{--tw-gradient-to:rgba(0,0,0,.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/100:focus{--tw-gradient-to:#000 var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/20:focus{--tw-gradient-to:rgba(0,0,0,.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/25:focus{--tw-gradient-to:rgba(0,0,0,.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/30:focus{--tw-gradient-to:rgba(0,0,0,.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/40:focus{--tw-gradient-to:rgba(0,0,0,.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/5:focus{--tw-gradient-to:rgba(0,0,0,.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/50:focus{--tw-gradient-to:rgba(0,0,0,.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/60:focus{--tw-gradient-to:rgba(0,0,0,.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/70:focus{--tw-gradient-to:rgba(0,0,0,.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/75:focus{--tw-gradient-to:rgba(0,0,0,.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/80:focus{--tw-gradient-to:rgba(0,0,0,.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/90:focus{--tw-gradient-to:rgba(0,0,0,.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-black\/95:focus{--tw-gradient-to:rgba(0,0,0,.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted:focus{--tw-gradient-to:rgb(var(--blackInverted)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/0:focus{--tw-gradient-to:rgb(var(--blackInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/10:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/100:focus{--tw-gradient-to:rgb(var(--blackInverted)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/20:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/25:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/30:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/40:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/5:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/50:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/60:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/70:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/75:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/80:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/90:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blackInverted\/95:focus{--tw-gradient-to:rgb(var(--blackInverted)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/0:focus{--tw-gradient-to:rgb(var(--blue-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/10:focus{--tw-gradient-to:rgb(var(--blue-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/100:focus{--tw-gradient-to:rgb(var(--blue-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/20:focus{--tw-gradient-to:rgb(var(--blue-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/25:focus{--tw-gradient-to:rgb(var(--blue-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/30:focus{--tw-gradient-to:rgb(var(--blue-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/40:focus{--tw-gradient-to:rgb(var(--blue-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/5:focus{--tw-gradient-to:rgb(var(--blue-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/50:focus{--tw-gradient-to:rgb(var(--blue-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/60:focus{--tw-gradient-to:rgb(var(--blue-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/70:focus{--tw-gradient-to:rgb(var(--blue-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/75:focus{--tw-gradient-to:rgb(var(--blue-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/80:focus{--tw-gradient-to:rgb(var(--blue-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/90:focus{--tw-gradient-to:rgb(var(--blue-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-1\/95:focus{--tw-gradient-to:rgb(var(--blue-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/0:focus{--tw-gradient-to:rgb(var(--blue-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/10:focus{--tw-gradient-to:rgb(var(--blue-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/100:focus{--tw-gradient-to:rgb(var(--blue-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/20:focus{--tw-gradient-to:rgb(var(--blue-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/25:focus{--tw-gradient-to:rgb(var(--blue-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/30:focus{--tw-gradient-to:rgb(var(--blue-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/40:focus{--tw-gradient-to:rgb(var(--blue-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/5:focus{--tw-gradient-to:rgb(var(--blue-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/50:focus{--tw-gradient-to:rgb(var(--blue-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/60:focus{--tw-gradient-to:rgb(var(--blue-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/70:focus{--tw-gradient-to:rgb(var(--blue-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/75:focus{--tw-gradient-to:rgb(var(--blue-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/80:focus{--tw-gradient-to:rgb(var(--blue-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/90:focus{--tw-gradient-to:rgb(var(--blue-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-10\/95:focus{--tw-gradient-to:rgb(var(--blue-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/0:focus{--tw-gradient-to:rgb(var(--blue-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/10:focus{--tw-gradient-to:rgb(var(--blue-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/100:focus{--tw-gradient-to:rgb(var(--blue-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/20:focus{--tw-gradient-to:rgb(var(--blue-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/25:focus{--tw-gradient-to:rgb(var(--blue-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/30:focus{--tw-gradient-to:rgb(var(--blue-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/40:focus{--tw-gradient-to:rgb(var(--blue-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/5:focus{--tw-gradient-to:rgb(var(--blue-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/50:focus{--tw-gradient-to:rgb(var(--blue-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/60:focus{--tw-gradient-to:rgb(var(--blue-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/70:focus{--tw-gradient-to:rgb(var(--blue-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/75:focus{--tw-gradient-to:rgb(var(--blue-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/80:focus{--tw-gradient-to:rgb(var(--blue-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/90:focus{--tw-gradient-to:rgb(var(--blue-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-2\/95:focus{--tw-gradient-to:rgb(var(--blue-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/0:focus{--tw-gradient-to:rgb(var(--blue-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/10:focus{--tw-gradient-to:rgb(var(--blue-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/100:focus{--tw-gradient-to:rgb(var(--blue-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/20:focus{--tw-gradient-to:rgb(var(--blue-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/25:focus{--tw-gradient-to:rgb(var(--blue-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/30:focus{--tw-gradient-to:rgb(var(--blue-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/40:focus{--tw-gradient-to:rgb(var(--blue-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/5:focus{--tw-gradient-to:rgb(var(--blue-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/50:focus{--tw-gradient-to:rgb(var(--blue-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/60:focus{--tw-gradient-to:rgb(var(--blue-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/70:focus{--tw-gradient-to:rgb(var(--blue-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/75:focus{--tw-gradient-to:rgb(var(--blue-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/80:focus{--tw-gradient-to:rgb(var(--blue-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/90:focus{--tw-gradient-to:rgb(var(--blue-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-3\/95:focus{--tw-gradient-to:rgb(var(--blue-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/0:focus{--tw-gradient-to:rgb(var(--blue-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/10:focus{--tw-gradient-to:rgb(var(--blue-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/100:focus{--tw-gradient-to:rgb(var(--blue-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/20:focus{--tw-gradient-to:rgb(var(--blue-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/25:focus{--tw-gradient-to:rgb(var(--blue-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/30:focus{--tw-gradient-to:rgb(var(--blue-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/40:focus{--tw-gradient-to:rgb(var(--blue-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/5:focus{--tw-gradient-to:rgb(var(--blue-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/50:focus{--tw-gradient-to:rgb(var(--blue-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/60:focus{--tw-gradient-to:rgb(var(--blue-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/70:focus{--tw-gradient-to:rgb(var(--blue-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/75:focus{--tw-gradient-to:rgb(var(--blue-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/80:focus{--tw-gradient-to:rgb(var(--blue-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/90:focus{--tw-gradient-to:rgb(var(--blue-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-4\/95:focus{--tw-gradient-to:rgb(var(--blue-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/0:focus{--tw-gradient-to:rgb(var(--blue-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/10:focus{--tw-gradient-to:rgb(var(--blue-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/100:focus{--tw-gradient-to:rgb(var(--blue-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/20:focus{--tw-gradient-to:rgb(var(--blue-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/25:focus{--tw-gradient-to:rgb(var(--blue-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/30:focus{--tw-gradient-to:rgb(var(--blue-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/40:focus{--tw-gradient-to:rgb(var(--blue-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/5:focus{--tw-gradient-to:rgb(var(--blue-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/50:focus{--tw-gradient-to:rgb(var(--blue-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/60:focus{--tw-gradient-to:rgb(var(--blue-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/70:focus{--tw-gradient-to:rgb(var(--blue-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/75:focus{--tw-gradient-to:rgb(var(--blue-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/80:focus{--tw-gradient-to:rgb(var(--blue-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/90:focus{--tw-gradient-to:rgb(var(--blue-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-5\/95:focus{--tw-gradient-to:rgb(var(--blue-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/0:focus{--tw-gradient-to:rgb(var(--blue-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/10:focus{--tw-gradient-to:rgb(var(--blue-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/100:focus{--tw-gradient-to:rgb(var(--blue-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/20:focus{--tw-gradient-to:rgb(var(--blue-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/25:focus{--tw-gradient-to:rgb(var(--blue-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/30:focus{--tw-gradient-to:rgb(var(--blue-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/40:focus{--tw-gradient-to:rgb(var(--blue-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/5:focus{--tw-gradient-to:rgb(var(--blue-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/50:focus{--tw-gradient-to:rgb(var(--blue-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/60:focus{--tw-gradient-to:rgb(var(--blue-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/70:focus{--tw-gradient-to:rgb(var(--blue-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/75:focus{--tw-gradient-to:rgb(var(--blue-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/80:focus{--tw-gradient-to:rgb(var(--blue-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/90:focus{--tw-gradient-to:rgb(var(--blue-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-6\/95:focus{--tw-gradient-to:rgb(var(--blue-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/0:focus{--tw-gradient-to:rgb(var(--blue-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/10:focus{--tw-gradient-to:rgb(var(--blue-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/100:focus{--tw-gradient-to:rgb(var(--blue-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/20:focus{--tw-gradient-to:rgb(var(--blue-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/25:focus{--tw-gradient-to:rgb(var(--blue-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/30:focus{--tw-gradient-to:rgb(var(--blue-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/40:focus{--tw-gradient-to:rgb(var(--blue-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/5:focus{--tw-gradient-to:rgb(var(--blue-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/50:focus{--tw-gradient-to:rgb(var(--blue-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/60:focus{--tw-gradient-to:rgb(var(--blue-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/70:focus{--tw-gradient-to:rgb(var(--blue-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/75:focus{--tw-gradient-to:rgb(var(--blue-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/80:focus{--tw-gradient-to:rgb(var(--blue-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/90:focus{--tw-gradient-to:rgb(var(--blue-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-7\/95:focus{--tw-gradient-to:rgb(var(--blue-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/0:focus{--tw-gradient-to:rgb(var(--blue-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/10:focus{--tw-gradient-to:rgb(var(--blue-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/100:focus{--tw-gradient-to:rgb(var(--blue-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/20:focus{--tw-gradient-to:rgb(var(--blue-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/25:focus{--tw-gradient-to:rgb(var(--blue-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/30:focus{--tw-gradient-to:rgb(var(--blue-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/40:focus{--tw-gradient-to:rgb(var(--blue-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/5:focus{--tw-gradient-to:rgb(var(--blue-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/50:focus{--tw-gradient-to:rgb(var(--blue-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/60:focus{--tw-gradient-to:rgb(var(--blue-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/70:focus{--tw-gradient-to:rgb(var(--blue-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/75:focus{--tw-gradient-to:rgb(var(--blue-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/80:focus{--tw-gradient-to:rgb(var(--blue-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/90:focus{--tw-gradient-to:rgb(var(--blue-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-8\/95:focus{--tw-gradient-to:rgb(var(--blue-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/0:focus{--tw-gradient-to:rgb(var(--blue-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/10:focus{--tw-gradient-to:rgb(var(--blue-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/100:focus{--tw-gradient-to:rgb(var(--blue-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/20:focus{--tw-gradient-to:rgb(var(--blue-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/25:focus{--tw-gradient-to:rgb(var(--blue-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/30:focus{--tw-gradient-to:rgb(var(--blue-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/40:focus{--tw-gradient-to:rgb(var(--blue-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/5:focus{--tw-gradient-to:rgb(var(--blue-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/50:focus{--tw-gradient-to:rgb(var(--blue-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/60:focus{--tw-gradient-to:rgb(var(--blue-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/70:focus{--tw-gradient-to:rgb(var(--blue-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/75:focus{--tw-gradient-to:rgb(var(--blue-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/80:focus{--tw-gradient-to:rgb(var(--blue-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/90:focus{--tw-gradient-to:rgb(var(--blue-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-blue-9\/95:focus{--tw-gradient-to:rgb(var(--blue-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border:focus{--tw-gradient-to:rgb(var(--border)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/0:focus{--tw-gradient-to:rgb(var(--border)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/10:focus{--tw-gradient-to:rgb(var(--border)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/100:focus{--tw-gradient-to:rgb(var(--border)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/20:focus{--tw-gradient-to:rgb(var(--border)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/25:focus{--tw-gradient-to:rgb(var(--border)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/30:focus{--tw-gradient-to:rgb(var(--border)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/40:focus{--tw-gradient-to:rgb(var(--border)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/5:focus{--tw-gradient-to:rgb(var(--border)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/50:focus{--tw-gradient-to:rgb(var(--border)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/60:focus{--tw-gradient-to:rgb(var(--border)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/70:focus{--tw-gradient-to:rgb(var(--border)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/75:focus{--tw-gradient-to:rgb(var(--border)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/80:focus{--tw-gradient-to:rgb(var(--border)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/90:focus{--tw-gradient-to:rgb(var(--border)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-border\/95:focus{--tw-gradient-to:rgb(var(--border)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1:focus{--tw-gradient-to:rgb(var(--content1)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/0:focus{--tw-gradient-to:rgb(var(--content1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/10:focus{--tw-gradient-to:rgb(var(--content1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/100:focus{--tw-gradient-to:rgb(var(--content1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/20:focus{--tw-gradient-to:rgb(var(--content1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/25:focus{--tw-gradient-to:rgb(var(--content1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/30:focus{--tw-gradient-to:rgb(var(--content1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/40:focus{--tw-gradient-to:rgb(var(--content1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/5:focus{--tw-gradient-to:rgb(var(--content1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/50:focus{--tw-gradient-to:rgb(var(--content1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/60:focus{--tw-gradient-to:rgb(var(--content1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/70:focus{--tw-gradient-to:rgb(var(--content1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/75:focus{--tw-gradient-to:rgb(var(--content1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/80:focus{--tw-gradient-to:rgb(var(--content1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/90:focus{--tw-gradient-to:rgb(var(--content1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content1\/95:focus{--tw-gradient-to:rgb(var(--content1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2:focus{--tw-gradient-to:rgb(var(--content2)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/0:focus{--tw-gradient-to:rgb(var(--content2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/10:focus{--tw-gradient-to:rgb(var(--content2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/100:focus{--tw-gradient-to:rgb(var(--content2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/20:focus{--tw-gradient-to:rgb(var(--content2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/25:focus{--tw-gradient-to:rgb(var(--content2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/30:focus{--tw-gradient-to:rgb(var(--content2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/40:focus{--tw-gradient-to:rgb(var(--content2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/5:focus{--tw-gradient-to:rgb(var(--content2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/50:focus{--tw-gradient-to:rgb(var(--content2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/60:focus{--tw-gradient-to:rgb(var(--content2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/70:focus{--tw-gradient-to:rgb(var(--content2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/75:focus{--tw-gradient-to:rgb(var(--content2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/80:focus{--tw-gradient-to:rgb(var(--content2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/90:focus{--tw-gradient-to:rgb(var(--content2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content2\/95:focus{--tw-gradient-to:rgb(var(--content2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3:focus{--tw-gradient-to:rgb(var(--content3)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/0:focus{--tw-gradient-to:rgb(var(--content3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/10:focus{--tw-gradient-to:rgb(var(--content3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/100:focus{--tw-gradient-to:rgb(var(--content3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/20:focus{--tw-gradient-to:rgb(var(--content3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/25:focus{--tw-gradient-to:rgb(var(--content3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/30:focus{--tw-gradient-to:rgb(var(--content3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/40:focus{--tw-gradient-to:rgb(var(--content3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/5:focus{--tw-gradient-to:rgb(var(--content3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/50:focus{--tw-gradient-to:rgb(var(--content3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/60:focus{--tw-gradient-to:rgb(var(--content3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/70:focus{--tw-gradient-to:rgb(var(--content3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/75:focus{--tw-gradient-to:rgb(var(--content3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/80:focus{--tw-gradient-to:rgb(var(--content3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/90:focus{--tw-gradient-to:rgb(var(--content3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-content3\/95:focus{--tw-gradient-to:rgb(var(--content3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/0:focus{--tw-gradient-to:rgb(var(--cyan-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/10:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/100:focus{--tw-gradient-to:rgb(var(--cyan-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/20:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/25:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/30:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/40:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/5:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/50:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/60:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/70:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/75:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/80:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/90:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-1\/95:focus{--tw-gradient-to:rgb(var(--cyan-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/0:focus{--tw-gradient-to:rgb(var(--cyan-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/10:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/100:focus{--tw-gradient-to:rgb(var(--cyan-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/20:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/25:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/30:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/40:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/5:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/50:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/60:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/70:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/75:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/80:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/90:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-10\/95:focus{--tw-gradient-to:rgb(var(--cyan-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/0:focus{--tw-gradient-to:rgb(var(--cyan-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/10:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/100:focus{--tw-gradient-to:rgb(var(--cyan-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/20:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/25:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/30:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/40:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/5:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/50:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/60:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/70:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/75:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/80:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/90:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-2\/95:focus{--tw-gradient-to:rgb(var(--cyan-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/0:focus{--tw-gradient-to:rgb(var(--cyan-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/10:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/100:focus{--tw-gradient-to:rgb(var(--cyan-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/20:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/25:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/30:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/40:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/5:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/50:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/60:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/70:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/75:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/80:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/90:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-3\/95:focus{--tw-gradient-to:rgb(var(--cyan-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/0:focus{--tw-gradient-to:rgb(var(--cyan-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/10:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/100:focus{--tw-gradient-to:rgb(var(--cyan-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/20:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/25:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/30:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/40:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/5:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/50:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/60:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/70:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/75:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/80:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/90:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-4\/95:focus{--tw-gradient-to:rgb(var(--cyan-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/0:focus{--tw-gradient-to:rgb(var(--cyan-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/10:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/100:focus{--tw-gradient-to:rgb(var(--cyan-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/20:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/25:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/30:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/40:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/5:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/50:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/60:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/70:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/75:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/80:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/90:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-5\/95:focus{--tw-gradient-to:rgb(var(--cyan-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/0:focus{--tw-gradient-to:rgb(var(--cyan-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/10:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/100:focus{--tw-gradient-to:rgb(var(--cyan-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/20:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/25:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/30:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/40:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/5:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/50:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/60:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/70:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/75:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/80:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/90:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-6\/95:focus{--tw-gradient-to:rgb(var(--cyan-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/0:focus{--tw-gradient-to:rgb(var(--cyan-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/10:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/100:focus{--tw-gradient-to:rgb(var(--cyan-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/20:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/25:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/30:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/40:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/5:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/50:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/60:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/70:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/75:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/80:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/90:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-7\/95:focus{--tw-gradient-to:rgb(var(--cyan-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/0:focus{--tw-gradient-to:rgb(var(--cyan-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/10:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/100:focus{--tw-gradient-to:rgb(var(--cyan-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/20:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/25:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/30:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/40:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/5:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/50:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/60:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/70:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/75:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/80:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/90:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-8\/95:focus{--tw-gradient-to:rgb(var(--cyan-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/0:focus{--tw-gradient-to:rgb(var(--cyan-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/10:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/100:focus{--tw-gradient-to:rgb(var(--cyan-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/20:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/25:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/30:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/40:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/5:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/50:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/60:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/70:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/75:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/80:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/90:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-cyan-9\/95:focus{--tw-gradient-to:rgb(var(--cyan-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error:focus{--tw-gradient-to:rgb(var(--error)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/0:focus{--tw-gradient-to:rgb(var(--error)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/10:focus{--tw-gradient-to:rgb(var(--error)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/100:focus{--tw-gradient-to:rgb(var(--error)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/20:focus{--tw-gradient-to:rgb(var(--error)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/25:focus{--tw-gradient-to:rgb(var(--error)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/30:focus{--tw-gradient-to:rgb(var(--error)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/40:focus{--tw-gradient-to:rgb(var(--error)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/5:focus{--tw-gradient-to:rgb(var(--error)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/50:focus{--tw-gradient-to:rgb(var(--error)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/60:focus{--tw-gradient-to:rgb(var(--error)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/70:focus{--tw-gradient-to:rgb(var(--error)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/75:focus{--tw-gradient-to:rgb(var(--error)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/80:focus{--tw-gradient-to:rgb(var(--error)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/90:focus{--tw-gradient-to:rgb(var(--error)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-error\/95:focus{--tw-gradient-to:rgb(var(--error)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/0:focus{--tw-gradient-to:rgb(var(--gray-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/10:focus{--tw-gradient-to:rgb(var(--gray-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/100:focus{--tw-gradient-to:rgb(var(--gray-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/20:focus{--tw-gradient-to:rgb(var(--gray-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/25:focus{--tw-gradient-to:rgb(var(--gray-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/30:focus{--tw-gradient-to:rgb(var(--gray-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/40:focus{--tw-gradient-to:rgb(var(--gray-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/5:focus{--tw-gradient-to:rgb(var(--gray-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/50:focus{--tw-gradient-to:rgb(var(--gray-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/60:focus{--tw-gradient-to:rgb(var(--gray-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/70:focus{--tw-gradient-to:rgb(var(--gray-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/75:focus{--tw-gradient-to:rgb(var(--gray-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/80:focus{--tw-gradient-to:rgb(var(--gray-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/90:focus{--tw-gradient-to:rgb(var(--gray-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-1\/95:focus{--tw-gradient-to:rgb(var(--gray-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/0:focus{--tw-gradient-to:rgb(var(--gray-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/10:focus{--tw-gradient-to:rgb(var(--gray-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/100:focus{--tw-gradient-to:rgb(var(--gray-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/20:focus{--tw-gradient-to:rgb(var(--gray-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/25:focus{--tw-gradient-to:rgb(var(--gray-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/30:focus{--tw-gradient-to:rgb(var(--gray-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/40:focus{--tw-gradient-to:rgb(var(--gray-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/5:focus{--tw-gradient-to:rgb(var(--gray-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/50:focus{--tw-gradient-to:rgb(var(--gray-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/60:focus{--tw-gradient-to:rgb(var(--gray-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/70:focus{--tw-gradient-to:rgb(var(--gray-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/75:focus{--tw-gradient-to:rgb(var(--gray-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/80:focus{--tw-gradient-to:rgb(var(--gray-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/90:focus{--tw-gradient-to:rgb(var(--gray-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-10\/95:focus{--tw-gradient-to:rgb(var(--gray-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/0:focus{--tw-gradient-to:rgb(var(--gray-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/10:focus{--tw-gradient-to:rgb(var(--gray-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/100:focus{--tw-gradient-to:rgb(var(--gray-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/20:focus{--tw-gradient-to:rgb(var(--gray-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/25:focus{--tw-gradient-to:rgb(var(--gray-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/30:focus{--tw-gradient-to:rgb(var(--gray-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/40:focus{--tw-gradient-to:rgb(var(--gray-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/5:focus{--tw-gradient-to:rgb(var(--gray-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/50:focus{--tw-gradient-to:rgb(var(--gray-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/60:focus{--tw-gradient-to:rgb(var(--gray-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/70:focus{--tw-gradient-to:rgb(var(--gray-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/75:focus{--tw-gradient-to:rgb(var(--gray-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/80:focus{--tw-gradient-to:rgb(var(--gray-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/90:focus{--tw-gradient-to:rgb(var(--gray-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-2\/95:focus{--tw-gradient-to:rgb(var(--gray-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/0:focus{--tw-gradient-to:rgb(var(--gray-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/10:focus{--tw-gradient-to:rgb(var(--gray-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/100:focus{--tw-gradient-to:rgb(var(--gray-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/20:focus{--tw-gradient-to:rgb(var(--gray-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/25:focus{--tw-gradient-to:rgb(var(--gray-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/30:focus{--tw-gradient-to:rgb(var(--gray-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/40:focus{--tw-gradient-to:rgb(var(--gray-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/5:focus{--tw-gradient-to:rgb(var(--gray-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/50:focus{--tw-gradient-to:rgb(var(--gray-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/60:focus{--tw-gradient-to:rgb(var(--gray-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/70:focus{--tw-gradient-to:rgb(var(--gray-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/75:focus{--tw-gradient-to:rgb(var(--gray-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/80:focus{--tw-gradient-to:rgb(var(--gray-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/90:focus{--tw-gradient-to:rgb(var(--gray-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-3\/95:focus{--tw-gradient-to:rgb(var(--gray-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/0:focus{--tw-gradient-to:rgb(var(--gray-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/10:focus{--tw-gradient-to:rgb(var(--gray-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/100:focus{--tw-gradient-to:rgb(var(--gray-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/20:focus{--tw-gradient-to:rgb(var(--gray-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/25:focus{--tw-gradient-to:rgb(var(--gray-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/30:focus{--tw-gradient-to:rgb(var(--gray-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/40:focus{--tw-gradient-to:rgb(var(--gray-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/5:focus{--tw-gradient-to:rgb(var(--gray-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/50:focus{--tw-gradient-to:rgb(var(--gray-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/60:focus{--tw-gradient-to:rgb(var(--gray-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/70:focus{--tw-gradient-to:rgb(var(--gray-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/75:focus{--tw-gradient-to:rgb(var(--gray-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/80:focus{--tw-gradient-to:rgb(var(--gray-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/90:focus{--tw-gradient-to:rgb(var(--gray-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-4\/95:focus{--tw-gradient-to:rgb(var(--gray-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/0:focus{--tw-gradient-to:rgb(var(--gray-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/10:focus{--tw-gradient-to:rgb(var(--gray-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/100:focus{--tw-gradient-to:rgb(var(--gray-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/20:focus{--tw-gradient-to:rgb(var(--gray-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/25:focus{--tw-gradient-to:rgb(var(--gray-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/30:focus{--tw-gradient-to:rgb(var(--gray-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/40:focus{--tw-gradient-to:rgb(var(--gray-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/5:focus{--tw-gradient-to:rgb(var(--gray-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/50:focus{--tw-gradient-to:rgb(var(--gray-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/60:focus{--tw-gradient-to:rgb(var(--gray-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/70:focus{--tw-gradient-to:rgb(var(--gray-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/75:focus{--tw-gradient-to:rgb(var(--gray-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/80:focus{--tw-gradient-to:rgb(var(--gray-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/90:focus{--tw-gradient-to:rgb(var(--gray-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-5\/95:focus{--tw-gradient-to:rgb(var(--gray-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/0:focus{--tw-gradient-to:rgb(var(--gray-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/10:focus{--tw-gradient-to:rgb(var(--gray-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/100:focus{--tw-gradient-to:rgb(var(--gray-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/20:focus{--tw-gradient-to:rgb(var(--gray-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/25:focus{--tw-gradient-to:rgb(var(--gray-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/30:focus{--tw-gradient-to:rgb(var(--gray-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/40:focus{--tw-gradient-to:rgb(var(--gray-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/5:focus{--tw-gradient-to:rgb(var(--gray-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/50:focus{--tw-gradient-to:rgb(var(--gray-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/60:focus{--tw-gradient-to:rgb(var(--gray-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/70:focus{--tw-gradient-to:rgb(var(--gray-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/75:focus{--tw-gradient-to:rgb(var(--gray-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/80:focus{--tw-gradient-to:rgb(var(--gray-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/90:focus{--tw-gradient-to:rgb(var(--gray-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-6\/95:focus{--tw-gradient-to:rgb(var(--gray-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/0:focus{--tw-gradient-to:rgb(var(--gray-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/10:focus{--tw-gradient-to:rgb(var(--gray-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/100:focus{--tw-gradient-to:rgb(var(--gray-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/20:focus{--tw-gradient-to:rgb(var(--gray-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/25:focus{--tw-gradient-to:rgb(var(--gray-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/30:focus{--tw-gradient-to:rgb(var(--gray-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/40:focus{--tw-gradient-to:rgb(var(--gray-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/5:focus{--tw-gradient-to:rgb(var(--gray-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/50:focus{--tw-gradient-to:rgb(var(--gray-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/60:focus{--tw-gradient-to:rgb(var(--gray-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/70:focus{--tw-gradient-to:rgb(var(--gray-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/75:focus{--tw-gradient-to:rgb(var(--gray-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/80:focus{--tw-gradient-to:rgb(var(--gray-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/90:focus{--tw-gradient-to:rgb(var(--gray-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-7\/95:focus{--tw-gradient-to:rgb(var(--gray-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/0:focus{--tw-gradient-to:rgb(var(--gray-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/10:focus{--tw-gradient-to:rgb(var(--gray-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/100:focus{--tw-gradient-to:rgb(var(--gray-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/20:focus{--tw-gradient-to:rgb(var(--gray-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/25:focus{--tw-gradient-to:rgb(var(--gray-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/30:focus{--tw-gradient-to:rgb(var(--gray-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/40:focus{--tw-gradient-to:rgb(var(--gray-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/5:focus{--tw-gradient-to:rgb(var(--gray-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/50:focus{--tw-gradient-to:rgb(var(--gray-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/60:focus{--tw-gradient-to:rgb(var(--gray-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/70:focus{--tw-gradient-to:rgb(var(--gray-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/75:focus{--tw-gradient-to:rgb(var(--gray-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/80:focus{--tw-gradient-to:rgb(var(--gray-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/90:focus{--tw-gradient-to:rgb(var(--gray-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-8\/95:focus{--tw-gradient-to:rgb(var(--gray-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/0:focus{--tw-gradient-to:rgb(var(--gray-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/10:focus{--tw-gradient-to:rgb(var(--gray-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/100:focus{--tw-gradient-to:rgb(var(--gray-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/20:focus{--tw-gradient-to:rgb(var(--gray-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/25:focus{--tw-gradient-to:rgb(var(--gray-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/30:focus{--tw-gradient-to:rgb(var(--gray-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/40:focus{--tw-gradient-to:rgb(var(--gray-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/5:focus{--tw-gradient-to:rgb(var(--gray-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/50:focus{--tw-gradient-to:rgb(var(--gray-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/60:focus{--tw-gradient-to:rgb(var(--gray-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/70:focus{--tw-gradient-to:rgb(var(--gray-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/75:focus{--tw-gradient-to:rgb(var(--gray-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/80:focus{--tw-gradient-to:rgb(var(--gray-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/90:focus{--tw-gradient-to:rgb(var(--gray-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-gray-9\/95:focus{--tw-gradient-to:rgb(var(--gray-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/0:focus{--tw-gradient-to:rgb(var(--green-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/10:focus{--tw-gradient-to:rgb(var(--green-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/100:focus{--tw-gradient-to:rgb(var(--green-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/20:focus{--tw-gradient-to:rgb(var(--green-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/25:focus{--tw-gradient-to:rgb(var(--green-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/30:focus{--tw-gradient-to:rgb(var(--green-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/40:focus{--tw-gradient-to:rgb(var(--green-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/5:focus{--tw-gradient-to:rgb(var(--green-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/50:focus{--tw-gradient-to:rgb(var(--green-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/60:focus{--tw-gradient-to:rgb(var(--green-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/70:focus{--tw-gradient-to:rgb(var(--green-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/75:focus{--tw-gradient-to:rgb(var(--green-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/80:focus{--tw-gradient-to:rgb(var(--green-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/90:focus{--tw-gradient-to:rgb(var(--green-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-1\/95:focus{--tw-gradient-to:rgb(var(--green-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/0:focus{--tw-gradient-to:rgb(var(--green-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/10:focus{--tw-gradient-to:rgb(var(--green-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/100:focus{--tw-gradient-to:rgb(var(--green-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/20:focus{--tw-gradient-to:rgb(var(--green-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/25:focus{--tw-gradient-to:rgb(var(--green-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/30:focus{--tw-gradient-to:rgb(var(--green-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/40:focus{--tw-gradient-to:rgb(var(--green-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/5:focus{--tw-gradient-to:rgb(var(--green-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/50:focus{--tw-gradient-to:rgb(var(--green-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/60:focus{--tw-gradient-to:rgb(var(--green-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/70:focus{--tw-gradient-to:rgb(var(--green-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/75:focus{--tw-gradient-to:rgb(var(--green-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/80:focus{--tw-gradient-to:rgb(var(--green-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/90:focus{--tw-gradient-to:rgb(var(--green-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-10\/95:focus{--tw-gradient-to:rgb(var(--green-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/0:focus{--tw-gradient-to:rgb(var(--green-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/10:focus{--tw-gradient-to:rgb(var(--green-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/100:focus{--tw-gradient-to:rgb(var(--green-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/20:focus{--tw-gradient-to:rgb(var(--green-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/25:focus{--tw-gradient-to:rgb(var(--green-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/30:focus{--tw-gradient-to:rgb(var(--green-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/40:focus{--tw-gradient-to:rgb(var(--green-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/5:focus{--tw-gradient-to:rgb(var(--green-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/50:focus{--tw-gradient-to:rgb(var(--green-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/60:focus{--tw-gradient-to:rgb(var(--green-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/70:focus{--tw-gradient-to:rgb(var(--green-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/75:focus{--tw-gradient-to:rgb(var(--green-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/80:focus{--tw-gradient-to:rgb(var(--green-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/90:focus{--tw-gradient-to:rgb(var(--green-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-2\/95:focus{--tw-gradient-to:rgb(var(--green-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/0:focus{--tw-gradient-to:rgb(var(--green-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/10:focus{--tw-gradient-to:rgb(var(--green-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/100:focus{--tw-gradient-to:rgb(var(--green-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/20:focus{--tw-gradient-to:rgb(var(--green-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/25:focus{--tw-gradient-to:rgb(var(--green-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/30:focus{--tw-gradient-to:rgb(var(--green-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/40:focus{--tw-gradient-to:rgb(var(--green-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/5:focus{--tw-gradient-to:rgb(var(--green-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/50:focus{--tw-gradient-to:rgb(var(--green-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/60:focus{--tw-gradient-to:rgb(var(--green-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/70:focus{--tw-gradient-to:rgb(var(--green-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/75:focus{--tw-gradient-to:rgb(var(--green-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/80:focus{--tw-gradient-to:rgb(var(--green-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/90:focus{--tw-gradient-to:rgb(var(--green-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-3\/95:focus{--tw-gradient-to:rgb(var(--green-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/0:focus{--tw-gradient-to:rgb(var(--green-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/10:focus{--tw-gradient-to:rgb(var(--green-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/100:focus{--tw-gradient-to:rgb(var(--green-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/20:focus{--tw-gradient-to:rgb(var(--green-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/25:focus{--tw-gradient-to:rgb(var(--green-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/30:focus{--tw-gradient-to:rgb(var(--green-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/40:focus{--tw-gradient-to:rgb(var(--green-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/5:focus{--tw-gradient-to:rgb(var(--green-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/50:focus{--tw-gradient-to:rgb(var(--green-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/60:focus{--tw-gradient-to:rgb(var(--green-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/70:focus{--tw-gradient-to:rgb(var(--green-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/75:focus{--tw-gradient-to:rgb(var(--green-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/80:focus{--tw-gradient-to:rgb(var(--green-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/90:focus{--tw-gradient-to:rgb(var(--green-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-4\/95:focus{--tw-gradient-to:rgb(var(--green-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/0:focus{--tw-gradient-to:rgb(var(--green-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/10:focus{--tw-gradient-to:rgb(var(--green-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/100:focus{--tw-gradient-to:rgb(var(--green-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/20:focus{--tw-gradient-to:rgb(var(--green-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/25:focus{--tw-gradient-to:rgb(var(--green-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/30:focus{--tw-gradient-to:rgb(var(--green-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/40:focus{--tw-gradient-to:rgb(var(--green-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/5:focus{--tw-gradient-to:rgb(var(--green-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/50:focus{--tw-gradient-to:rgb(var(--green-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/60:focus{--tw-gradient-to:rgb(var(--green-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/70:focus{--tw-gradient-to:rgb(var(--green-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/75:focus{--tw-gradient-to:rgb(var(--green-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/80:focus{--tw-gradient-to:rgb(var(--green-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/90:focus{--tw-gradient-to:rgb(var(--green-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-5\/95:focus{--tw-gradient-to:rgb(var(--green-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/0:focus{--tw-gradient-to:rgb(var(--green-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/10:focus{--tw-gradient-to:rgb(var(--green-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/100:focus{--tw-gradient-to:rgb(var(--green-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/20:focus{--tw-gradient-to:rgb(var(--green-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/25:focus{--tw-gradient-to:rgb(var(--green-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/30:focus{--tw-gradient-to:rgb(var(--green-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/40:focus{--tw-gradient-to:rgb(var(--green-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/5:focus{--tw-gradient-to:rgb(var(--green-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/50:focus{--tw-gradient-to:rgb(var(--green-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/60:focus{--tw-gradient-to:rgb(var(--green-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/70:focus{--tw-gradient-to:rgb(var(--green-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/75:focus{--tw-gradient-to:rgb(var(--green-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/80:focus{--tw-gradient-to:rgb(var(--green-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/90:focus{--tw-gradient-to:rgb(var(--green-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-6\/95:focus{--tw-gradient-to:rgb(var(--green-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/0:focus{--tw-gradient-to:rgb(var(--green-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/10:focus{--tw-gradient-to:rgb(var(--green-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/100:focus{--tw-gradient-to:rgb(var(--green-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/20:focus{--tw-gradient-to:rgb(var(--green-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/25:focus{--tw-gradient-to:rgb(var(--green-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/30:focus{--tw-gradient-to:rgb(var(--green-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/40:focus{--tw-gradient-to:rgb(var(--green-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/5:focus{--tw-gradient-to:rgb(var(--green-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/50:focus{--tw-gradient-to:rgb(var(--green-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/60:focus{--tw-gradient-to:rgb(var(--green-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/70:focus{--tw-gradient-to:rgb(var(--green-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/75:focus{--tw-gradient-to:rgb(var(--green-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/80:focus{--tw-gradient-to:rgb(var(--green-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/90:focus{--tw-gradient-to:rgb(var(--green-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-7\/95:focus{--tw-gradient-to:rgb(var(--green-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/0:focus{--tw-gradient-to:rgb(var(--green-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/10:focus{--tw-gradient-to:rgb(var(--green-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/100:focus{--tw-gradient-to:rgb(var(--green-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/20:focus{--tw-gradient-to:rgb(var(--green-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/25:focus{--tw-gradient-to:rgb(var(--green-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/30:focus{--tw-gradient-to:rgb(var(--green-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/40:focus{--tw-gradient-to:rgb(var(--green-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/5:focus{--tw-gradient-to:rgb(var(--green-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/50:focus{--tw-gradient-to:rgb(var(--green-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/60:focus{--tw-gradient-to:rgb(var(--green-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/70:focus{--tw-gradient-to:rgb(var(--green-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/75:focus{--tw-gradient-to:rgb(var(--green-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/80:focus{--tw-gradient-to:rgb(var(--green-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/90:focus{--tw-gradient-to:rgb(var(--green-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-8\/95:focus{--tw-gradient-to:rgb(var(--green-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/0:focus{--tw-gradient-to:rgb(var(--green-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/10:focus{--tw-gradient-to:rgb(var(--green-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/100:focus{--tw-gradient-to:rgb(var(--green-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/20:focus{--tw-gradient-to:rgb(var(--green-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/25:focus{--tw-gradient-to:rgb(var(--green-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/30:focus{--tw-gradient-to:rgb(var(--green-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/40:focus{--tw-gradient-to:rgb(var(--green-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/5:focus{--tw-gradient-to:rgb(var(--green-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/50:focus{--tw-gradient-to:rgb(var(--green-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/60:focus{--tw-gradient-to:rgb(var(--green-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/70:focus{--tw-gradient-to:rgb(var(--green-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/75:focus{--tw-gradient-to:rgb(var(--green-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/80:focus{--tw-gradient-to:rgb(var(--green-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/90:focus{--tw-gradient-to:rgb(var(--green-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-green-9\/95:focus{--tw-gradient-to:rgb(var(--green-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/0:focus{--tw-gradient-to:rgb(var(--pink-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/10:focus{--tw-gradient-to:rgb(var(--pink-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/100:focus{--tw-gradient-to:rgb(var(--pink-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/20:focus{--tw-gradient-to:rgb(var(--pink-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/25:focus{--tw-gradient-to:rgb(var(--pink-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/30:focus{--tw-gradient-to:rgb(var(--pink-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/40:focus{--tw-gradient-to:rgb(var(--pink-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/5:focus{--tw-gradient-to:rgb(var(--pink-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/50:focus{--tw-gradient-to:rgb(var(--pink-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/60:focus{--tw-gradient-to:rgb(var(--pink-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/70:focus{--tw-gradient-to:rgb(var(--pink-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/75:focus{--tw-gradient-to:rgb(var(--pink-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/80:focus{--tw-gradient-to:rgb(var(--pink-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/90:focus{--tw-gradient-to:rgb(var(--pink-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-1\/95:focus{--tw-gradient-to:rgb(var(--pink-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/0:focus{--tw-gradient-to:rgb(var(--pink-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/10:focus{--tw-gradient-to:rgb(var(--pink-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/100:focus{--tw-gradient-to:rgb(var(--pink-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/20:focus{--tw-gradient-to:rgb(var(--pink-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/25:focus{--tw-gradient-to:rgb(var(--pink-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/30:focus{--tw-gradient-to:rgb(var(--pink-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/40:focus{--tw-gradient-to:rgb(var(--pink-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/5:focus{--tw-gradient-to:rgb(var(--pink-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/50:focus{--tw-gradient-to:rgb(var(--pink-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/60:focus{--tw-gradient-to:rgb(var(--pink-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/70:focus{--tw-gradient-to:rgb(var(--pink-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/75:focus{--tw-gradient-to:rgb(var(--pink-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/80:focus{--tw-gradient-to:rgb(var(--pink-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/90:focus{--tw-gradient-to:rgb(var(--pink-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-10\/95:focus{--tw-gradient-to:rgb(var(--pink-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/0:focus{--tw-gradient-to:rgb(var(--pink-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/10:focus{--tw-gradient-to:rgb(var(--pink-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/100:focus{--tw-gradient-to:rgb(var(--pink-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/20:focus{--tw-gradient-to:rgb(var(--pink-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/25:focus{--tw-gradient-to:rgb(var(--pink-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/30:focus{--tw-gradient-to:rgb(var(--pink-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/40:focus{--tw-gradient-to:rgb(var(--pink-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/5:focus{--tw-gradient-to:rgb(var(--pink-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/50:focus{--tw-gradient-to:rgb(var(--pink-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/60:focus{--tw-gradient-to:rgb(var(--pink-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/70:focus{--tw-gradient-to:rgb(var(--pink-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/75:focus{--tw-gradient-to:rgb(var(--pink-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/80:focus{--tw-gradient-to:rgb(var(--pink-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/90:focus{--tw-gradient-to:rgb(var(--pink-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-2\/95:focus{--tw-gradient-to:rgb(var(--pink-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/0:focus{--tw-gradient-to:rgb(var(--pink-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/10:focus{--tw-gradient-to:rgb(var(--pink-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/100:focus{--tw-gradient-to:rgb(var(--pink-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/20:focus{--tw-gradient-to:rgb(var(--pink-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/25:focus{--tw-gradient-to:rgb(var(--pink-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/30:focus{--tw-gradient-to:rgb(var(--pink-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/40:focus{--tw-gradient-to:rgb(var(--pink-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/5:focus{--tw-gradient-to:rgb(var(--pink-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/50:focus{--tw-gradient-to:rgb(var(--pink-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/60:focus{--tw-gradient-to:rgb(var(--pink-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/70:focus{--tw-gradient-to:rgb(var(--pink-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/75:focus{--tw-gradient-to:rgb(var(--pink-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/80:focus{--tw-gradient-to:rgb(var(--pink-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/90:focus{--tw-gradient-to:rgb(var(--pink-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-3\/95:focus{--tw-gradient-to:rgb(var(--pink-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/0:focus{--tw-gradient-to:rgb(var(--pink-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/10:focus{--tw-gradient-to:rgb(var(--pink-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/100:focus{--tw-gradient-to:rgb(var(--pink-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/20:focus{--tw-gradient-to:rgb(var(--pink-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/25:focus{--tw-gradient-to:rgb(var(--pink-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/30:focus{--tw-gradient-to:rgb(var(--pink-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/40:focus{--tw-gradient-to:rgb(var(--pink-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/5:focus{--tw-gradient-to:rgb(var(--pink-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/50:focus{--tw-gradient-to:rgb(var(--pink-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/60:focus{--tw-gradient-to:rgb(var(--pink-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/70:focus{--tw-gradient-to:rgb(var(--pink-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/75:focus{--tw-gradient-to:rgb(var(--pink-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/80:focus{--tw-gradient-to:rgb(var(--pink-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/90:focus{--tw-gradient-to:rgb(var(--pink-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-4\/95:focus{--tw-gradient-to:rgb(var(--pink-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/0:focus{--tw-gradient-to:rgb(var(--pink-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/10:focus{--tw-gradient-to:rgb(var(--pink-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/100:focus{--tw-gradient-to:rgb(var(--pink-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/20:focus{--tw-gradient-to:rgb(var(--pink-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/25:focus{--tw-gradient-to:rgb(var(--pink-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/30:focus{--tw-gradient-to:rgb(var(--pink-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/40:focus{--tw-gradient-to:rgb(var(--pink-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/5:focus{--tw-gradient-to:rgb(var(--pink-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/50:focus{--tw-gradient-to:rgb(var(--pink-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/60:focus{--tw-gradient-to:rgb(var(--pink-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/70:focus{--tw-gradient-to:rgb(var(--pink-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/75:focus{--tw-gradient-to:rgb(var(--pink-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/80:focus{--tw-gradient-to:rgb(var(--pink-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/90:focus{--tw-gradient-to:rgb(var(--pink-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-5\/95:focus{--tw-gradient-to:rgb(var(--pink-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/0:focus{--tw-gradient-to:rgb(var(--pink-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/10:focus{--tw-gradient-to:rgb(var(--pink-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/100:focus{--tw-gradient-to:rgb(var(--pink-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/20:focus{--tw-gradient-to:rgb(var(--pink-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/25:focus{--tw-gradient-to:rgb(var(--pink-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/30:focus{--tw-gradient-to:rgb(var(--pink-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/40:focus{--tw-gradient-to:rgb(var(--pink-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/5:focus{--tw-gradient-to:rgb(var(--pink-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/50:focus{--tw-gradient-to:rgb(var(--pink-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/60:focus{--tw-gradient-to:rgb(var(--pink-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/70:focus{--tw-gradient-to:rgb(var(--pink-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/75:focus{--tw-gradient-to:rgb(var(--pink-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/80:focus{--tw-gradient-to:rgb(var(--pink-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/90:focus{--tw-gradient-to:rgb(var(--pink-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-6\/95:focus{--tw-gradient-to:rgb(var(--pink-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/0:focus{--tw-gradient-to:rgb(var(--pink-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/10:focus{--tw-gradient-to:rgb(var(--pink-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/100:focus{--tw-gradient-to:rgb(var(--pink-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/20:focus{--tw-gradient-to:rgb(var(--pink-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/25:focus{--tw-gradient-to:rgb(var(--pink-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/30:focus{--tw-gradient-to:rgb(var(--pink-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/40:focus{--tw-gradient-to:rgb(var(--pink-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/5:focus{--tw-gradient-to:rgb(var(--pink-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/50:focus{--tw-gradient-to:rgb(var(--pink-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/60:focus{--tw-gradient-to:rgb(var(--pink-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/70:focus{--tw-gradient-to:rgb(var(--pink-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/75:focus{--tw-gradient-to:rgb(var(--pink-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/80:focus{--tw-gradient-to:rgb(var(--pink-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/90:focus{--tw-gradient-to:rgb(var(--pink-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-7\/95:focus{--tw-gradient-to:rgb(var(--pink-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/0:focus{--tw-gradient-to:rgb(var(--pink-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/10:focus{--tw-gradient-to:rgb(var(--pink-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/100:focus{--tw-gradient-to:rgb(var(--pink-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/20:focus{--tw-gradient-to:rgb(var(--pink-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/25:focus{--tw-gradient-to:rgb(var(--pink-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/30:focus{--tw-gradient-to:rgb(var(--pink-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/40:focus{--tw-gradient-to:rgb(var(--pink-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/5:focus{--tw-gradient-to:rgb(var(--pink-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/50:focus{--tw-gradient-to:rgb(var(--pink-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/60:focus{--tw-gradient-to:rgb(var(--pink-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/70:focus{--tw-gradient-to:rgb(var(--pink-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/75:focus{--tw-gradient-to:rgb(var(--pink-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/80:focus{--tw-gradient-to:rgb(var(--pink-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/90:focus{--tw-gradient-to:rgb(var(--pink-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-8\/95:focus{--tw-gradient-to:rgb(var(--pink-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/0:focus{--tw-gradient-to:rgb(var(--pink-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/10:focus{--tw-gradient-to:rgb(var(--pink-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/100:focus{--tw-gradient-to:rgb(var(--pink-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/20:focus{--tw-gradient-to:rgb(var(--pink-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/25:focus{--tw-gradient-to:rgb(var(--pink-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/30:focus{--tw-gradient-to:rgb(var(--pink-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/40:focus{--tw-gradient-to:rgb(var(--pink-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/5:focus{--tw-gradient-to:rgb(var(--pink-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/50:focus{--tw-gradient-to:rgb(var(--pink-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/60:focus{--tw-gradient-to:rgb(var(--pink-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/70:focus{--tw-gradient-to:rgb(var(--pink-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/75:focus{--tw-gradient-to:rgb(var(--pink-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/80:focus{--tw-gradient-to:rgb(var(--pink-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/90:focus{--tw-gradient-to:rgb(var(--pink-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-pink-9\/95:focus{--tw-gradient-to:rgb(var(--pink-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary:focus{--tw-gradient-to:rgb(var(--primary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/0:focus{--tw-gradient-to:rgb(var(--primary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/10:focus{--tw-gradient-to:rgb(var(--primary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/100:focus{--tw-gradient-to:rgb(var(--primary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/20:focus{--tw-gradient-to:rgb(var(--primary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/25:focus{--tw-gradient-to:rgb(var(--primary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/30:focus{--tw-gradient-to:rgb(var(--primary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/40:focus{--tw-gradient-to:rgb(var(--primary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/5:focus{--tw-gradient-to:rgb(var(--primary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/50:focus{--tw-gradient-to:rgb(var(--primary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/60:focus{--tw-gradient-to:rgb(var(--primary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/70:focus{--tw-gradient-to:rgb(var(--primary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/75:focus{--tw-gradient-to:rgb(var(--primary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/80:focus{--tw-gradient-to:rgb(var(--primary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/90:focus{--tw-gradient-to:rgb(var(--primary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-primary\/95:focus{--tw-gradient-to:rgb(var(--primary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/0:focus{--tw-gradient-to:rgb(var(--purple-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/10:focus{--tw-gradient-to:rgb(var(--purple-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/100:focus{--tw-gradient-to:rgb(var(--purple-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/20:focus{--tw-gradient-to:rgb(var(--purple-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/25:focus{--tw-gradient-to:rgb(var(--purple-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/30:focus{--tw-gradient-to:rgb(var(--purple-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/40:focus{--tw-gradient-to:rgb(var(--purple-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/5:focus{--tw-gradient-to:rgb(var(--purple-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/50:focus{--tw-gradient-to:rgb(var(--purple-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/60:focus{--tw-gradient-to:rgb(var(--purple-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/70:focus{--tw-gradient-to:rgb(var(--purple-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/75:focus{--tw-gradient-to:rgb(var(--purple-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/80:focus{--tw-gradient-to:rgb(var(--purple-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/90:focus{--tw-gradient-to:rgb(var(--purple-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-1\/95:focus{--tw-gradient-to:rgb(var(--purple-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/0:focus{--tw-gradient-to:rgb(var(--purple-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/10:focus{--tw-gradient-to:rgb(var(--purple-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/100:focus{--tw-gradient-to:rgb(var(--purple-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/20:focus{--tw-gradient-to:rgb(var(--purple-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/25:focus{--tw-gradient-to:rgb(var(--purple-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/30:focus{--tw-gradient-to:rgb(var(--purple-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/40:focus{--tw-gradient-to:rgb(var(--purple-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/5:focus{--tw-gradient-to:rgb(var(--purple-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/50:focus{--tw-gradient-to:rgb(var(--purple-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/60:focus{--tw-gradient-to:rgb(var(--purple-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/70:focus{--tw-gradient-to:rgb(var(--purple-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/75:focus{--tw-gradient-to:rgb(var(--purple-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/80:focus{--tw-gradient-to:rgb(var(--purple-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/90:focus{--tw-gradient-to:rgb(var(--purple-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-10\/95:focus{--tw-gradient-to:rgb(var(--purple-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/0:focus{--tw-gradient-to:rgb(var(--purple-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/10:focus{--tw-gradient-to:rgb(var(--purple-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/100:focus{--tw-gradient-to:rgb(var(--purple-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/20:focus{--tw-gradient-to:rgb(var(--purple-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/25:focus{--tw-gradient-to:rgb(var(--purple-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/30:focus{--tw-gradient-to:rgb(var(--purple-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/40:focus{--tw-gradient-to:rgb(var(--purple-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/5:focus{--tw-gradient-to:rgb(var(--purple-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/50:focus{--tw-gradient-to:rgb(var(--purple-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/60:focus{--tw-gradient-to:rgb(var(--purple-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/70:focus{--tw-gradient-to:rgb(var(--purple-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/75:focus{--tw-gradient-to:rgb(var(--purple-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/80:focus{--tw-gradient-to:rgb(var(--purple-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/90:focus{--tw-gradient-to:rgb(var(--purple-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-2\/95:focus{--tw-gradient-to:rgb(var(--purple-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/0:focus{--tw-gradient-to:rgb(var(--purple-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/10:focus{--tw-gradient-to:rgb(var(--purple-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/100:focus{--tw-gradient-to:rgb(var(--purple-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/20:focus{--tw-gradient-to:rgb(var(--purple-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/25:focus{--tw-gradient-to:rgb(var(--purple-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/30:focus{--tw-gradient-to:rgb(var(--purple-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/40:focus{--tw-gradient-to:rgb(var(--purple-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/5:focus{--tw-gradient-to:rgb(var(--purple-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/50:focus{--tw-gradient-to:rgb(var(--purple-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/60:focus{--tw-gradient-to:rgb(var(--purple-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/70:focus{--tw-gradient-to:rgb(var(--purple-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/75:focus{--tw-gradient-to:rgb(var(--purple-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/80:focus{--tw-gradient-to:rgb(var(--purple-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/90:focus{--tw-gradient-to:rgb(var(--purple-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-3\/95:focus{--tw-gradient-to:rgb(var(--purple-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/0:focus{--tw-gradient-to:rgb(var(--purple-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/10:focus{--tw-gradient-to:rgb(var(--purple-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/100:focus{--tw-gradient-to:rgb(var(--purple-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/20:focus{--tw-gradient-to:rgb(var(--purple-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/25:focus{--tw-gradient-to:rgb(var(--purple-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/30:focus{--tw-gradient-to:rgb(var(--purple-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/40:focus{--tw-gradient-to:rgb(var(--purple-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/5:focus{--tw-gradient-to:rgb(var(--purple-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/50:focus{--tw-gradient-to:rgb(var(--purple-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/60:focus{--tw-gradient-to:rgb(var(--purple-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/70:focus{--tw-gradient-to:rgb(var(--purple-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/75:focus{--tw-gradient-to:rgb(var(--purple-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/80:focus{--tw-gradient-to:rgb(var(--purple-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/90:focus{--tw-gradient-to:rgb(var(--purple-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-4\/95:focus{--tw-gradient-to:rgb(var(--purple-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/0:focus{--tw-gradient-to:rgb(var(--purple-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/10:focus{--tw-gradient-to:rgb(var(--purple-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/100:focus{--tw-gradient-to:rgb(var(--purple-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/20:focus{--tw-gradient-to:rgb(var(--purple-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/25:focus{--tw-gradient-to:rgb(var(--purple-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/30:focus{--tw-gradient-to:rgb(var(--purple-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/40:focus{--tw-gradient-to:rgb(var(--purple-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/5:focus{--tw-gradient-to:rgb(var(--purple-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/50:focus{--tw-gradient-to:rgb(var(--purple-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/60:focus{--tw-gradient-to:rgb(var(--purple-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/70:focus{--tw-gradient-to:rgb(var(--purple-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/75:focus{--tw-gradient-to:rgb(var(--purple-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/80:focus{--tw-gradient-to:rgb(var(--purple-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/90:focus{--tw-gradient-to:rgb(var(--purple-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-5\/95:focus{--tw-gradient-to:rgb(var(--purple-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/0:focus{--tw-gradient-to:rgb(var(--purple-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/10:focus{--tw-gradient-to:rgb(var(--purple-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/100:focus{--tw-gradient-to:rgb(var(--purple-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/20:focus{--tw-gradient-to:rgb(var(--purple-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/25:focus{--tw-gradient-to:rgb(var(--purple-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/30:focus{--tw-gradient-to:rgb(var(--purple-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/40:focus{--tw-gradient-to:rgb(var(--purple-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/5:focus{--tw-gradient-to:rgb(var(--purple-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/50:focus{--tw-gradient-to:rgb(var(--purple-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/60:focus{--tw-gradient-to:rgb(var(--purple-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/70:focus{--tw-gradient-to:rgb(var(--purple-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/75:focus{--tw-gradient-to:rgb(var(--purple-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/80:focus{--tw-gradient-to:rgb(var(--purple-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/90:focus{--tw-gradient-to:rgb(var(--purple-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-6\/95:focus{--tw-gradient-to:rgb(var(--purple-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/0:focus{--tw-gradient-to:rgb(var(--purple-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/10:focus{--tw-gradient-to:rgb(var(--purple-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/100:focus{--tw-gradient-to:rgb(var(--purple-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/20:focus{--tw-gradient-to:rgb(var(--purple-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/25:focus{--tw-gradient-to:rgb(var(--purple-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/30:focus{--tw-gradient-to:rgb(var(--purple-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/40:focus{--tw-gradient-to:rgb(var(--purple-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/5:focus{--tw-gradient-to:rgb(var(--purple-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/50:focus{--tw-gradient-to:rgb(var(--purple-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/60:focus{--tw-gradient-to:rgb(var(--purple-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/70:focus{--tw-gradient-to:rgb(var(--purple-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/75:focus{--tw-gradient-to:rgb(var(--purple-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/80:focus{--tw-gradient-to:rgb(var(--purple-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/90:focus{--tw-gradient-to:rgb(var(--purple-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-7\/95:focus{--tw-gradient-to:rgb(var(--purple-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/0:focus{--tw-gradient-to:rgb(var(--purple-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/10:focus{--tw-gradient-to:rgb(var(--purple-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/100:focus{--tw-gradient-to:rgb(var(--purple-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/20:focus{--tw-gradient-to:rgb(var(--purple-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/25:focus{--tw-gradient-to:rgb(var(--purple-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/30:focus{--tw-gradient-to:rgb(var(--purple-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/40:focus{--tw-gradient-to:rgb(var(--purple-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/5:focus{--tw-gradient-to:rgb(var(--purple-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/50:focus{--tw-gradient-to:rgb(var(--purple-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/60:focus{--tw-gradient-to:rgb(var(--purple-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/70:focus{--tw-gradient-to:rgb(var(--purple-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/75:focus{--tw-gradient-to:rgb(var(--purple-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/80:focus{--tw-gradient-to:rgb(var(--purple-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/90:focus{--tw-gradient-to:rgb(var(--purple-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-8\/95:focus{--tw-gradient-to:rgb(var(--purple-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/0:focus{--tw-gradient-to:rgb(var(--purple-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/10:focus{--tw-gradient-to:rgb(var(--purple-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/100:focus{--tw-gradient-to:rgb(var(--purple-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/20:focus{--tw-gradient-to:rgb(var(--purple-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/25:focus{--tw-gradient-to:rgb(var(--purple-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/30:focus{--tw-gradient-to:rgb(var(--purple-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/40:focus{--tw-gradient-to:rgb(var(--purple-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/5:focus{--tw-gradient-to:rgb(var(--purple-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/50:focus{--tw-gradient-to:rgb(var(--purple-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/60:focus{--tw-gradient-to:rgb(var(--purple-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/70:focus{--tw-gradient-to:rgb(var(--purple-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/75:focus{--tw-gradient-to:rgb(var(--purple-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/80:focus{--tw-gradient-to:rgb(var(--purple-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/90:focus{--tw-gradient-to:rgb(var(--purple-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-purple-9\/95:focus{--tw-gradient-to:rgb(var(--purple-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/0:focus{--tw-gradient-to:rgb(var(--red-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/10:focus{--tw-gradient-to:rgb(var(--red-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/100:focus{--tw-gradient-to:rgb(var(--red-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/20:focus{--tw-gradient-to:rgb(var(--red-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/25:focus{--tw-gradient-to:rgb(var(--red-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/30:focus{--tw-gradient-to:rgb(var(--red-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/40:focus{--tw-gradient-to:rgb(var(--red-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/5:focus{--tw-gradient-to:rgb(var(--red-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/50:focus{--tw-gradient-to:rgb(var(--red-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/60:focus{--tw-gradient-to:rgb(var(--red-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/70:focus{--tw-gradient-to:rgb(var(--red-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/75:focus{--tw-gradient-to:rgb(var(--red-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/80:focus{--tw-gradient-to:rgb(var(--red-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/90:focus{--tw-gradient-to:rgb(var(--red-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-1\/95:focus{--tw-gradient-to:rgb(var(--red-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/0:focus{--tw-gradient-to:rgb(var(--red-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/10:focus{--tw-gradient-to:rgb(var(--red-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/100:focus{--tw-gradient-to:rgb(var(--red-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/20:focus{--tw-gradient-to:rgb(var(--red-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/25:focus{--tw-gradient-to:rgb(var(--red-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/30:focus{--tw-gradient-to:rgb(var(--red-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/40:focus{--tw-gradient-to:rgb(var(--red-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/5:focus{--tw-gradient-to:rgb(var(--red-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/50:focus{--tw-gradient-to:rgb(var(--red-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/60:focus{--tw-gradient-to:rgb(var(--red-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/70:focus{--tw-gradient-to:rgb(var(--red-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/75:focus{--tw-gradient-to:rgb(var(--red-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/80:focus{--tw-gradient-to:rgb(var(--red-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/90:focus{--tw-gradient-to:rgb(var(--red-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-10\/95:focus{--tw-gradient-to:rgb(var(--red-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/0:focus{--tw-gradient-to:rgb(var(--red-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/10:focus{--tw-gradient-to:rgb(var(--red-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/100:focus{--tw-gradient-to:rgb(var(--red-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/20:focus{--tw-gradient-to:rgb(var(--red-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/25:focus{--tw-gradient-to:rgb(var(--red-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/30:focus{--tw-gradient-to:rgb(var(--red-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/40:focus{--tw-gradient-to:rgb(var(--red-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/5:focus{--tw-gradient-to:rgb(var(--red-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/50:focus{--tw-gradient-to:rgb(var(--red-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/60:focus{--tw-gradient-to:rgb(var(--red-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/70:focus{--tw-gradient-to:rgb(var(--red-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/75:focus{--tw-gradient-to:rgb(var(--red-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/80:focus{--tw-gradient-to:rgb(var(--red-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/90:focus{--tw-gradient-to:rgb(var(--red-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-2\/95:focus{--tw-gradient-to:rgb(var(--red-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/0:focus{--tw-gradient-to:rgb(var(--red-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/10:focus{--tw-gradient-to:rgb(var(--red-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/100:focus{--tw-gradient-to:rgb(var(--red-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/20:focus{--tw-gradient-to:rgb(var(--red-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/25:focus{--tw-gradient-to:rgb(var(--red-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/30:focus{--tw-gradient-to:rgb(var(--red-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/40:focus{--tw-gradient-to:rgb(var(--red-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/5:focus{--tw-gradient-to:rgb(var(--red-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/50:focus{--tw-gradient-to:rgb(var(--red-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/60:focus{--tw-gradient-to:rgb(var(--red-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/70:focus{--tw-gradient-to:rgb(var(--red-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/75:focus{--tw-gradient-to:rgb(var(--red-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/80:focus{--tw-gradient-to:rgb(var(--red-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/90:focus{--tw-gradient-to:rgb(var(--red-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-3\/95:focus{--tw-gradient-to:rgb(var(--red-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/0:focus{--tw-gradient-to:rgb(var(--red-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/10:focus{--tw-gradient-to:rgb(var(--red-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/100:focus{--tw-gradient-to:rgb(var(--red-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/20:focus{--tw-gradient-to:rgb(var(--red-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/25:focus{--tw-gradient-to:rgb(var(--red-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/30:focus{--tw-gradient-to:rgb(var(--red-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/40:focus{--tw-gradient-to:rgb(var(--red-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/5:focus{--tw-gradient-to:rgb(var(--red-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/50:focus{--tw-gradient-to:rgb(var(--red-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/60:focus{--tw-gradient-to:rgb(var(--red-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/70:focus{--tw-gradient-to:rgb(var(--red-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/75:focus{--tw-gradient-to:rgb(var(--red-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/80:focus{--tw-gradient-to:rgb(var(--red-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/90:focus{--tw-gradient-to:rgb(var(--red-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-4\/95:focus{--tw-gradient-to:rgb(var(--red-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/0:focus{--tw-gradient-to:rgb(var(--red-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/10:focus{--tw-gradient-to:rgb(var(--red-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/100:focus{--tw-gradient-to:rgb(var(--red-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/20:focus{--tw-gradient-to:rgb(var(--red-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/25:focus{--tw-gradient-to:rgb(var(--red-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/30:focus{--tw-gradient-to:rgb(var(--red-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/40:focus{--tw-gradient-to:rgb(var(--red-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/5:focus{--tw-gradient-to:rgb(var(--red-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/50:focus{--tw-gradient-to:rgb(var(--red-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/60:focus{--tw-gradient-to:rgb(var(--red-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/70:focus{--tw-gradient-to:rgb(var(--red-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/75:focus{--tw-gradient-to:rgb(var(--red-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/80:focus{--tw-gradient-to:rgb(var(--red-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/90:focus{--tw-gradient-to:rgb(var(--red-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-5\/95:focus{--tw-gradient-to:rgb(var(--red-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/0:focus{--tw-gradient-to:rgb(var(--red-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/10:focus{--tw-gradient-to:rgb(var(--red-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/100:focus{--tw-gradient-to:rgb(var(--red-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/20:focus{--tw-gradient-to:rgb(var(--red-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/25:focus{--tw-gradient-to:rgb(var(--red-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/30:focus{--tw-gradient-to:rgb(var(--red-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/40:focus{--tw-gradient-to:rgb(var(--red-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/5:focus{--tw-gradient-to:rgb(var(--red-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/50:focus{--tw-gradient-to:rgb(var(--red-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/60:focus{--tw-gradient-to:rgb(var(--red-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/70:focus{--tw-gradient-to:rgb(var(--red-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/75:focus{--tw-gradient-to:rgb(var(--red-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/80:focus{--tw-gradient-to:rgb(var(--red-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/90:focus{--tw-gradient-to:rgb(var(--red-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-6\/95:focus{--tw-gradient-to:rgb(var(--red-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/0:focus{--tw-gradient-to:rgb(var(--red-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/10:focus{--tw-gradient-to:rgb(var(--red-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/100:focus{--tw-gradient-to:rgb(var(--red-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/20:focus{--tw-gradient-to:rgb(var(--red-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/25:focus{--tw-gradient-to:rgb(var(--red-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/30:focus{--tw-gradient-to:rgb(var(--red-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/40:focus{--tw-gradient-to:rgb(var(--red-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/5:focus{--tw-gradient-to:rgb(var(--red-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/50:focus{--tw-gradient-to:rgb(var(--red-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/60:focus{--tw-gradient-to:rgb(var(--red-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/70:focus{--tw-gradient-to:rgb(var(--red-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/75:focus{--tw-gradient-to:rgb(var(--red-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/80:focus{--tw-gradient-to:rgb(var(--red-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/90:focus{--tw-gradient-to:rgb(var(--red-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-7\/95:focus{--tw-gradient-to:rgb(var(--red-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/0:focus{--tw-gradient-to:rgb(var(--red-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/10:focus{--tw-gradient-to:rgb(var(--red-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/100:focus{--tw-gradient-to:rgb(var(--red-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/20:focus{--tw-gradient-to:rgb(var(--red-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/25:focus{--tw-gradient-to:rgb(var(--red-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/30:focus{--tw-gradient-to:rgb(var(--red-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/40:focus{--tw-gradient-to:rgb(var(--red-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/5:focus{--tw-gradient-to:rgb(var(--red-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/50:focus{--tw-gradient-to:rgb(var(--red-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/60:focus{--tw-gradient-to:rgb(var(--red-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/70:focus{--tw-gradient-to:rgb(var(--red-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/75:focus{--tw-gradient-to:rgb(var(--red-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/80:focus{--tw-gradient-to:rgb(var(--red-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/90:focus{--tw-gradient-to:rgb(var(--red-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-8\/95:focus{--tw-gradient-to:rgb(var(--red-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/0:focus{--tw-gradient-to:rgb(var(--red-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/10:focus{--tw-gradient-to:rgb(var(--red-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/100:focus{--tw-gradient-to:rgb(var(--red-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/20:focus{--tw-gradient-to:rgb(var(--red-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/25:focus{--tw-gradient-to:rgb(var(--red-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/30:focus{--tw-gradient-to:rgb(var(--red-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/40:focus{--tw-gradient-to:rgb(var(--red-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/5:focus{--tw-gradient-to:rgb(var(--red-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/50:focus{--tw-gradient-to:rgb(var(--red-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/60:focus{--tw-gradient-to:rgb(var(--red-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/70:focus{--tw-gradient-to:rgb(var(--red-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/75:focus{--tw-gradient-to:rgb(var(--red-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/80:focus{--tw-gradient-to:rgb(var(--red-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/90:focus{--tw-gradient-to:rgb(var(--red-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-red-9\/95:focus{--tw-gradient-to:rgb(var(--red-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary:focus{--tw-gradient-to:rgb(var(--secondary)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/0:focus{--tw-gradient-to:rgb(var(--secondary)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/10:focus{--tw-gradient-to:rgb(var(--secondary)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/100:focus{--tw-gradient-to:rgb(var(--secondary)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/20:focus{--tw-gradient-to:rgb(var(--secondary)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/25:focus{--tw-gradient-to:rgb(var(--secondary)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/30:focus{--tw-gradient-to:rgb(var(--secondary)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/40:focus{--tw-gradient-to:rgb(var(--secondary)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/5:focus{--tw-gradient-to:rgb(var(--secondary)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/50:focus{--tw-gradient-to:rgb(var(--secondary)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/60:focus{--tw-gradient-to:rgb(var(--secondary)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/70:focus{--tw-gradient-to:rgb(var(--secondary)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/75:focus{--tw-gradient-to:rgb(var(--secondary)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/80:focus{--tw-gradient-to:rgb(var(--secondary)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/90:focus{--tw-gradient-to:rgb(var(--secondary)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-secondary\/95:focus{--tw-gradient-to:rgb(var(--secondary)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/0:focus{--tw-gradient-to:rgb(var(--slate-1)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/10:focus{--tw-gradient-to:rgb(var(--slate-1)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/100:focus{--tw-gradient-to:rgb(var(--slate-1)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/20:focus{--tw-gradient-to:rgb(var(--slate-1)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/25:focus{--tw-gradient-to:rgb(var(--slate-1)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/30:focus{--tw-gradient-to:rgb(var(--slate-1)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/40:focus{--tw-gradient-to:rgb(var(--slate-1)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/5:focus{--tw-gradient-to:rgb(var(--slate-1)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/50:focus{--tw-gradient-to:rgb(var(--slate-1)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/60:focus{--tw-gradient-to:rgb(var(--slate-1)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/70:focus{--tw-gradient-to:rgb(var(--slate-1)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/75:focus{--tw-gradient-to:rgb(var(--slate-1)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/80:focus{--tw-gradient-to:rgb(var(--slate-1)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/90:focus{--tw-gradient-to:rgb(var(--slate-1)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-1\/95:focus{--tw-gradient-to:rgb(var(--slate-1)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/0:focus{--tw-gradient-to:rgb(var(--slate-10)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/10:focus{--tw-gradient-to:rgb(var(--slate-10)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/100:focus{--tw-gradient-to:rgb(var(--slate-10)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/20:focus{--tw-gradient-to:rgb(var(--slate-10)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/25:focus{--tw-gradient-to:rgb(var(--slate-10)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/30:focus{--tw-gradient-to:rgb(var(--slate-10)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/40:focus{--tw-gradient-to:rgb(var(--slate-10)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/5:focus{--tw-gradient-to:rgb(var(--slate-10)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/50:focus{--tw-gradient-to:rgb(var(--slate-10)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/60:focus{--tw-gradient-to:rgb(var(--slate-10)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/70:focus{--tw-gradient-to:rgb(var(--slate-10)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/75:focus{--tw-gradient-to:rgb(var(--slate-10)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/80:focus{--tw-gradient-to:rgb(var(--slate-10)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/90:focus{--tw-gradient-to:rgb(var(--slate-10)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-10\/95:focus{--tw-gradient-to:rgb(var(--slate-10)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/0:focus{--tw-gradient-to:rgb(var(--slate-2)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/10:focus{--tw-gradient-to:rgb(var(--slate-2)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/100:focus{--tw-gradient-to:rgb(var(--slate-2)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/20:focus{--tw-gradient-to:rgb(var(--slate-2)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/25:focus{--tw-gradient-to:rgb(var(--slate-2)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/30:focus{--tw-gradient-to:rgb(var(--slate-2)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/40:focus{--tw-gradient-to:rgb(var(--slate-2)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/5:focus{--tw-gradient-to:rgb(var(--slate-2)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/50:focus{--tw-gradient-to:rgb(var(--slate-2)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/60:focus{--tw-gradient-to:rgb(var(--slate-2)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/70:focus{--tw-gradient-to:rgb(var(--slate-2)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/75:focus{--tw-gradient-to:rgb(var(--slate-2)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/80:focus{--tw-gradient-to:rgb(var(--slate-2)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/90:focus{--tw-gradient-to:rgb(var(--slate-2)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-2\/95:focus{--tw-gradient-to:rgb(var(--slate-2)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/0:focus{--tw-gradient-to:rgb(var(--slate-3)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/10:focus{--tw-gradient-to:rgb(var(--slate-3)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/100:focus{--tw-gradient-to:rgb(var(--slate-3)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/20:focus{--tw-gradient-to:rgb(var(--slate-3)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/25:focus{--tw-gradient-to:rgb(var(--slate-3)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/30:focus{--tw-gradient-to:rgb(var(--slate-3)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/40:focus{--tw-gradient-to:rgb(var(--slate-3)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/5:focus{--tw-gradient-to:rgb(var(--slate-3)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/50:focus{--tw-gradient-to:rgb(var(--slate-3)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/60:focus{--tw-gradient-to:rgb(var(--slate-3)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/70:focus{--tw-gradient-to:rgb(var(--slate-3)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/75:focus{--tw-gradient-to:rgb(var(--slate-3)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/80:focus{--tw-gradient-to:rgb(var(--slate-3)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/90:focus{--tw-gradient-to:rgb(var(--slate-3)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-3\/95:focus{--tw-gradient-to:rgb(var(--slate-3)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/0:focus{--tw-gradient-to:rgb(var(--slate-4)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/10:focus{--tw-gradient-to:rgb(var(--slate-4)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/100:focus{--tw-gradient-to:rgb(var(--slate-4)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/20:focus{--tw-gradient-to:rgb(var(--slate-4)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/25:focus{--tw-gradient-to:rgb(var(--slate-4)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/30:focus{--tw-gradient-to:rgb(var(--slate-4)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/40:focus{--tw-gradient-to:rgb(var(--slate-4)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/5:focus{--tw-gradient-to:rgb(var(--slate-4)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/50:focus{--tw-gradient-to:rgb(var(--slate-4)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/60:focus{--tw-gradient-to:rgb(var(--slate-4)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/70:focus{--tw-gradient-to:rgb(var(--slate-4)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/75:focus{--tw-gradient-to:rgb(var(--slate-4)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/80:focus{--tw-gradient-to:rgb(var(--slate-4)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/90:focus{--tw-gradient-to:rgb(var(--slate-4)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-4\/95:focus{--tw-gradient-to:rgb(var(--slate-4)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/0:focus{--tw-gradient-to:rgb(var(--slate-5)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/10:focus{--tw-gradient-to:rgb(var(--slate-5)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/100:focus{--tw-gradient-to:rgb(var(--slate-5)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/20:focus{--tw-gradient-to:rgb(var(--slate-5)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/25:focus{--tw-gradient-to:rgb(var(--slate-5)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/30:focus{--tw-gradient-to:rgb(var(--slate-5)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/40:focus{--tw-gradient-to:rgb(var(--slate-5)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/5:focus{--tw-gradient-to:rgb(var(--slate-5)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/50:focus{--tw-gradient-to:rgb(var(--slate-5)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/60:focus{--tw-gradient-to:rgb(var(--slate-5)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/70:focus{--tw-gradient-to:rgb(var(--slate-5)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/75:focus{--tw-gradient-to:rgb(var(--slate-5)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/80:focus{--tw-gradient-to:rgb(var(--slate-5)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/90:focus{--tw-gradient-to:rgb(var(--slate-5)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-5\/95:focus{--tw-gradient-to:rgb(var(--slate-5)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/0:focus{--tw-gradient-to:rgb(var(--slate-6)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/10:focus{--tw-gradient-to:rgb(var(--slate-6)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/100:focus{--tw-gradient-to:rgb(var(--slate-6)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/20:focus{--tw-gradient-to:rgb(var(--slate-6)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/25:focus{--tw-gradient-to:rgb(var(--slate-6)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/30:focus{--tw-gradient-to:rgb(var(--slate-6)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/40:focus{--tw-gradient-to:rgb(var(--slate-6)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/5:focus{--tw-gradient-to:rgb(var(--slate-6)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/50:focus{--tw-gradient-to:rgb(var(--slate-6)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/60:focus{--tw-gradient-to:rgb(var(--slate-6)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/70:focus{--tw-gradient-to:rgb(var(--slate-6)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/75:focus{--tw-gradient-to:rgb(var(--slate-6)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/80:focus{--tw-gradient-to:rgb(var(--slate-6)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/90:focus{--tw-gradient-to:rgb(var(--slate-6)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-6\/95:focus{--tw-gradient-to:rgb(var(--slate-6)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/0:focus{--tw-gradient-to:rgb(var(--slate-7)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/10:focus{--tw-gradient-to:rgb(var(--slate-7)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/100:focus{--tw-gradient-to:rgb(var(--slate-7)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/20:focus{--tw-gradient-to:rgb(var(--slate-7)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/25:focus{--tw-gradient-to:rgb(var(--slate-7)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/30:focus{--tw-gradient-to:rgb(var(--slate-7)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/40:focus{--tw-gradient-to:rgb(var(--slate-7)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/5:focus{--tw-gradient-to:rgb(var(--slate-7)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/50:focus{--tw-gradient-to:rgb(var(--slate-7)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/60:focus{--tw-gradient-to:rgb(var(--slate-7)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/70:focus{--tw-gradient-to:rgb(var(--slate-7)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/75:focus{--tw-gradient-to:rgb(var(--slate-7)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/80:focus{--tw-gradient-to:rgb(var(--slate-7)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/90:focus{--tw-gradient-to:rgb(var(--slate-7)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-7\/95:focus{--tw-gradient-to:rgb(var(--slate-7)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/0:focus{--tw-gradient-to:rgb(var(--slate-8)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/10:focus{--tw-gradient-to:rgb(var(--slate-8)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/100:focus{--tw-gradient-to:rgb(var(--slate-8)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/20:focus{--tw-gradient-to:rgb(var(--slate-8)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/25:focus{--tw-gradient-to:rgb(var(--slate-8)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/30:focus{--tw-gradient-to:rgb(var(--slate-8)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/40:focus{--tw-gradient-to:rgb(var(--slate-8)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/5:focus{--tw-gradient-to:rgb(var(--slate-8)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/50:focus{--tw-gradient-to:rgb(var(--slate-8)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/60:focus{--tw-gradient-to:rgb(var(--slate-8)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/70:focus{--tw-gradient-to:rgb(var(--slate-8)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/75:focus{--tw-gradient-to:rgb(var(--slate-8)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/80:focus{--tw-gradient-to:rgb(var(--slate-8)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/90:focus{--tw-gradient-to:rgb(var(--slate-8)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-8\/95:focus{--tw-gradient-to:rgb(var(--slate-8)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/0:focus{--tw-gradient-to:rgb(var(--slate-9)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/10:focus{--tw-gradient-to:rgb(var(--slate-9)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/100:focus{--tw-gradient-to:rgb(var(--slate-9)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/20:focus{--tw-gradient-to:rgb(var(--slate-9)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/25:focus{--tw-gradient-to:rgb(var(--slate-9)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/30:focus{--tw-gradient-to:rgb(var(--slate-9)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/40:focus{--tw-gradient-to:rgb(var(--slate-9)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/5:focus{--tw-gradient-to:rgb(var(--slate-9)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/50:focus{--tw-gradient-to:rgb(var(--slate-9)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/60:focus{--tw-gradient-to:rgb(var(--slate-9)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/70:focus{--tw-gradient-to:rgb(var(--slate-9)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/75:focus{--tw-gradient-to:rgb(var(--slate-9)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/80:focus{--tw-gradient-to:rgb(var(--slate-9)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/90:focus{--tw-gradient-to:rgb(var(--slate-9)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-slate-9\/95:focus{--tw-gradient-to:rgb(var(--slate-9)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success:focus{--tw-gradient-to:rgb(var(--success)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/0:focus{--tw-gradient-to:rgb(var(--success)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/10:focus{--tw-gradient-to:rgb(var(--success)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/100:focus{--tw-gradient-to:rgb(var(--success)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/20:focus{--tw-gradient-to:rgb(var(--success)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/25:focus{--tw-gradient-to:rgb(var(--success)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/30:focus{--tw-gradient-to:rgb(var(--success)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/40:focus{--tw-gradient-to:rgb(var(--success)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/5:focus{--tw-gradient-to:rgb(var(--success)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/50:focus{--tw-gradient-to:rgb(var(--success)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/60:focus{--tw-gradient-to:rgb(var(--success)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/70:focus{--tw-gradient-to:rgb(var(--success)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/75:focus{--tw-gradient-to:rgb(var(--success)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/80:focus{--tw-gradient-to:rgb(var(--success)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/90:focus{--tw-gradient-to:rgb(var(--success)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-success\/95:focus{--tw-gradient-to:rgb(var(--success)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning:focus{--tw-gradient-to:rgb(var(--warning)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/0:focus{--tw-gradient-to:rgb(var(--warning)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/10:focus{--tw-gradient-to:rgb(var(--warning)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/100:focus{--tw-gradient-to:rgb(var(--warning)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/20:focus{--tw-gradient-to:rgb(var(--warning)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/25:focus{--tw-gradient-to:rgb(var(--warning)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/30:focus{--tw-gradient-to:rgb(var(--warning)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/40:focus{--tw-gradient-to:rgb(var(--warning)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/5:focus{--tw-gradient-to:rgb(var(--warning)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/50:focus{--tw-gradient-to:rgb(var(--warning)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/60:focus{--tw-gradient-to:rgb(var(--warning)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/70:focus{--tw-gradient-to:rgb(var(--warning)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/75:focus{--tw-gradient-to:rgb(var(--warning)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/80:focus{--tw-gradient-to:rgb(var(--warning)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/90:focus{--tw-gradient-to:rgb(var(--warning)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-warning\/95:focus{--tw-gradient-to:rgb(var(--warning)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white:focus{--tw-gradient-to:#fff var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/0:focus{--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/10:focus{--tw-gradient-to:hsla(0,0%,100%,.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/100:focus{--tw-gradient-to:#fff var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/20:focus{--tw-gradient-to:hsla(0,0%,100%,.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/25:focus{--tw-gradient-to:hsla(0,0%,100%,.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/30:focus{--tw-gradient-to:hsla(0,0%,100%,.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/40:focus{--tw-gradient-to:hsla(0,0%,100%,.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/5:focus{--tw-gradient-to:hsla(0,0%,100%,.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/50:focus{--tw-gradient-to:hsla(0,0%,100%,.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/60:focus{--tw-gradient-to:hsla(0,0%,100%,.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/70:focus{--tw-gradient-to:hsla(0,0%,100%,.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/75:focus{--tw-gradient-to:hsla(0,0%,100%,.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/80:focus{--tw-gradient-to:hsla(0,0%,100%,.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/90:focus{--tw-gradient-to:hsla(0,0%,100%,.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-white\/95:focus{--tw-gradient-to:hsla(0,0%,100%,.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted:focus{--tw-gradient-to:rgb(var(--whiteInverted)) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/0:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/10:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/100:focus{--tw-gradient-to:rgb(var(--whiteInverted)/1) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/20:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.2) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/25:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.25) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/30:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.3) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/40:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.4) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/5:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.05) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/50:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.5) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/60:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.6) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/70:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.7) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/75:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.75) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/80:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.8) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/90:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.9) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:to-whiteInverted\/95:focus{--tw-gradient-to:rgb(var(--whiteInverted)/0.95) var(--tw-gradient-to-position);--tw-gradient-to-position: }.focus\:fill-backgroundPrimary:focus{fill:rgb(var(--backgroundPrimary))}.focus\:fill-backgroundPrimary\/0:focus{fill:rgb(var(--backgroundPrimary)/0)}.focus\:fill-backgroundPrimary\/10:focus{fill:rgb(var(--backgroundPrimary)/.1)}.focus\:fill-backgroundPrimary\/100:focus{fill:rgb(var(--backgroundPrimary)/1)}.focus\:fill-backgroundPrimary\/20:focus{fill:rgb(var(--backgroundPrimary)/.2)}.focus\:fill-backgroundPrimary\/25:focus{fill:rgb(var(--backgroundPrimary)/.25)}.focus\:fill-backgroundPrimary\/30:focus{fill:rgb(var(--backgroundPrimary)/.3)}.focus\:fill-backgroundPrimary\/40:focus{fill:rgb(var(--backgroundPrimary)/.4)}.focus\:fill-backgroundPrimary\/5:focus{fill:rgb(var(--backgroundPrimary)/.05)}.focus\:fill-backgroundPrimary\/50:focus{fill:rgb(var(--backgroundPrimary)/.5)}.focus\:fill-backgroundPrimary\/60:focus{fill:rgb(var(--backgroundPrimary)/.6)}.focus\:fill-backgroundPrimary\/70:focus{fill:rgb(var(--backgroundPrimary)/.7)}.focus\:fill-backgroundPrimary\/75:focus{fill:rgb(var(--backgroundPrimary)/.75)}.focus\:fill-backgroundPrimary\/80:focus{fill:rgb(var(--backgroundPrimary)/.8)}.focus\:fill-backgroundPrimary\/90:focus{fill:rgb(var(--backgroundPrimary)/.9)}.focus\:fill-backgroundPrimary\/95:focus{fill:rgb(var(--backgroundPrimary)/.95)}.focus\:fill-backgroundSecondary:focus{fill:rgb(var(--backgroundSecondary))}.focus\:fill-backgroundSecondary\/0:focus{fill:rgb(var(--backgroundSecondary)/0)}.focus\:fill-backgroundSecondary\/10:focus{fill:rgb(var(--backgroundSecondary)/.1)}.focus\:fill-backgroundSecondary\/100:focus{fill:rgb(var(--backgroundSecondary)/1)}.focus\:fill-backgroundSecondary\/20:focus{fill:rgb(var(--backgroundSecondary)/.2)}.focus\:fill-backgroundSecondary\/25:focus{fill:rgb(var(--backgroundSecondary)/.25)}.focus\:fill-backgroundSecondary\/30:focus{fill:rgb(var(--backgroundSecondary)/.3)}.focus\:fill-backgroundSecondary\/40:focus{fill:rgb(var(--backgroundSecondary)/.4)}.focus\:fill-backgroundSecondary\/5:focus{fill:rgb(var(--backgroundSecondary)/.05)}.focus\:fill-backgroundSecondary\/50:focus{fill:rgb(var(--backgroundSecondary)/.5)}.focus\:fill-backgroundSecondary\/60:focus{fill:rgb(var(--backgroundSecondary)/.6)}.focus\:fill-backgroundSecondary\/70:focus{fill:rgb(var(--backgroundSecondary)/.7)}.focus\:fill-backgroundSecondary\/75:focus{fill:rgb(var(--backgroundSecondary)/.75)}.focus\:fill-backgroundSecondary\/80:focus{fill:rgb(var(--backgroundSecondary)/.8)}.focus\:fill-backgroundSecondary\/90:focus{fill:rgb(var(--backgroundSecondary)/.9)}.focus\:fill-backgroundSecondary\/95:focus{fill:rgb(var(--backgroundSecondary)/.95)}.focus\:fill-black:focus{fill:#000}.focus\:fill-black\/0:focus{fill:transparent}.focus\:fill-black\/10:focus{fill:rgba(0,0,0,.1)}.focus\:fill-black\/100:focus{fill:#000}.focus\:fill-black\/20:focus{fill:rgba(0,0,0,.2)}.focus\:fill-black\/25:focus{fill:rgba(0,0,0,.25)}.focus\:fill-black\/30:focus{fill:rgba(0,0,0,.3)}.focus\:fill-black\/40:focus{fill:rgba(0,0,0,.4)}.focus\:fill-black\/5:focus{fill:rgba(0,0,0,.05)}.focus\:fill-black\/50:focus{fill:rgba(0,0,0,.5)}.focus\:fill-black\/60:focus{fill:rgba(0,0,0,.6)}.focus\:fill-black\/70:focus{fill:rgba(0,0,0,.7)}.focus\:fill-black\/75:focus{fill:rgba(0,0,0,.75)}.focus\:fill-black\/80:focus{fill:rgba(0,0,0,.8)}.focus\:fill-black\/90:focus{fill:rgba(0,0,0,.9)}.focus\:fill-black\/95:focus{fill:rgba(0,0,0,.95)}.focus\:fill-blackInverted:focus{fill:rgb(var(--blackInverted))}.focus\:fill-blackInverted\/0:focus{fill:rgb(var(--blackInverted)/0)}.focus\:fill-blackInverted\/10:focus{fill:rgb(var(--blackInverted)/.1)}.focus\:fill-blackInverted\/100:focus{fill:rgb(var(--blackInverted)/1)}.focus\:fill-blackInverted\/20:focus{fill:rgb(var(--blackInverted)/.2)}.focus\:fill-blackInverted\/25:focus{fill:rgb(var(--blackInverted)/.25)}.focus\:fill-blackInverted\/30:focus{fill:rgb(var(--blackInverted)/.3)}.focus\:fill-blackInverted\/40:focus{fill:rgb(var(--blackInverted)/.4)}.focus\:fill-blackInverted\/5:focus{fill:rgb(var(--blackInverted)/.05)}.focus\:fill-blackInverted\/50:focus{fill:rgb(var(--blackInverted)/.5)}.focus\:fill-blackInverted\/60:focus{fill:rgb(var(--blackInverted)/.6)}.focus\:fill-blackInverted\/70:focus{fill:rgb(var(--blackInverted)/.7)}.focus\:fill-blackInverted\/75:focus{fill:rgb(var(--blackInverted)/.75)}.focus\:fill-blackInverted\/80:focus{fill:rgb(var(--blackInverted)/.8)}.focus\:fill-blackInverted\/90:focus{fill:rgb(var(--blackInverted)/.9)}.focus\:fill-blackInverted\/95:focus{fill:rgb(var(--blackInverted)/.95)}.focus\:fill-blue-1\/0:focus{fill:rgb(var(--blue-1)/0)}.focus\:fill-blue-1\/10:focus{fill:rgb(var(--blue-1)/.1)}.focus\:fill-blue-1\/100:focus{fill:rgb(var(--blue-1)/1)}.focus\:fill-blue-1\/20:focus{fill:rgb(var(--blue-1)/.2)}.focus\:fill-blue-1\/25:focus{fill:rgb(var(--blue-1)/.25)}.focus\:fill-blue-1\/30:focus{fill:rgb(var(--blue-1)/.3)}.focus\:fill-blue-1\/40:focus{fill:rgb(var(--blue-1)/.4)}.focus\:fill-blue-1\/5:focus{fill:rgb(var(--blue-1)/.05)}.focus\:fill-blue-1\/50:focus{fill:rgb(var(--blue-1)/.5)}.focus\:fill-blue-1\/60:focus{fill:rgb(var(--blue-1)/.6)}.focus\:fill-blue-1\/70:focus{fill:rgb(var(--blue-1)/.7)}.focus\:fill-blue-1\/75:focus{fill:rgb(var(--blue-1)/.75)}.focus\:fill-blue-1\/80:focus{fill:rgb(var(--blue-1)/.8)}.focus\:fill-blue-1\/90:focus{fill:rgb(var(--blue-1)/.9)}.focus\:fill-blue-1\/95:focus{fill:rgb(var(--blue-1)/.95)}.focus\:fill-blue-10\/0:focus{fill:rgb(var(--blue-10)/0)}.focus\:fill-blue-10\/10:focus{fill:rgb(var(--blue-10)/.1)}.focus\:fill-blue-10\/100:focus{fill:rgb(var(--blue-10)/1)}.focus\:fill-blue-10\/20:focus{fill:rgb(var(--blue-10)/.2)}.focus\:fill-blue-10\/25:focus{fill:rgb(var(--blue-10)/.25)}.focus\:fill-blue-10\/30:focus{fill:rgb(var(--blue-10)/.3)}.focus\:fill-blue-10\/40:focus{fill:rgb(var(--blue-10)/.4)}.focus\:fill-blue-10\/5:focus{fill:rgb(var(--blue-10)/.05)}.focus\:fill-blue-10\/50:focus{fill:rgb(var(--blue-10)/.5)}.focus\:fill-blue-10\/60:focus{fill:rgb(var(--blue-10)/.6)}.focus\:fill-blue-10\/70:focus{fill:rgb(var(--blue-10)/.7)}.focus\:fill-blue-10\/75:focus{fill:rgb(var(--blue-10)/.75)}.focus\:fill-blue-10\/80:focus{fill:rgb(var(--blue-10)/.8)}.focus\:fill-blue-10\/90:focus{fill:rgb(var(--blue-10)/.9)}.focus\:fill-blue-10\/95:focus{fill:rgb(var(--blue-10)/.95)}.focus\:fill-blue-2\/0:focus{fill:rgb(var(--blue-2)/0)}.focus\:fill-blue-2\/10:focus{fill:rgb(var(--blue-2)/.1)}.focus\:fill-blue-2\/100:focus{fill:rgb(var(--blue-2)/1)}.focus\:fill-blue-2\/20:focus{fill:rgb(var(--blue-2)/.2)}.focus\:fill-blue-2\/25:focus{fill:rgb(var(--blue-2)/.25)}.focus\:fill-blue-2\/30:focus{fill:rgb(var(--blue-2)/.3)}.focus\:fill-blue-2\/40:focus{fill:rgb(var(--blue-2)/.4)}.focus\:fill-blue-2\/5:focus{fill:rgb(var(--blue-2)/.05)}.focus\:fill-blue-2\/50:focus{fill:rgb(var(--blue-2)/.5)}.focus\:fill-blue-2\/60:focus{fill:rgb(var(--blue-2)/.6)}.focus\:fill-blue-2\/70:focus{fill:rgb(var(--blue-2)/.7)}.focus\:fill-blue-2\/75:focus{fill:rgb(var(--blue-2)/.75)}.focus\:fill-blue-2\/80:focus{fill:rgb(var(--blue-2)/.8)}.focus\:fill-blue-2\/90:focus{fill:rgb(var(--blue-2)/.9)}.focus\:fill-blue-2\/95:focus{fill:rgb(var(--blue-2)/.95)}.focus\:fill-blue-3\/0:focus{fill:rgb(var(--blue-3)/0)}.focus\:fill-blue-3\/10:focus{fill:rgb(var(--blue-3)/.1)}.focus\:fill-blue-3\/100:focus{fill:rgb(var(--blue-3)/1)}.focus\:fill-blue-3\/20:focus{fill:rgb(var(--blue-3)/.2)}.focus\:fill-blue-3\/25:focus{fill:rgb(var(--blue-3)/.25)}.focus\:fill-blue-3\/30:focus{fill:rgb(var(--blue-3)/.3)}.focus\:fill-blue-3\/40:focus{fill:rgb(var(--blue-3)/.4)}.focus\:fill-blue-3\/5:focus{fill:rgb(var(--blue-3)/.05)}.focus\:fill-blue-3\/50:focus{fill:rgb(var(--blue-3)/.5)}.focus\:fill-blue-3\/60:focus{fill:rgb(var(--blue-3)/.6)}.focus\:fill-blue-3\/70:focus{fill:rgb(var(--blue-3)/.7)}.focus\:fill-blue-3\/75:focus{fill:rgb(var(--blue-3)/.75)}.focus\:fill-blue-3\/80:focus{fill:rgb(var(--blue-3)/.8)}.focus\:fill-blue-3\/90:focus{fill:rgb(var(--blue-3)/.9)}.focus\:fill-blue-3\/95:focus{fill:rgb(var(--blue-3)/.95)}.focus\:fill-blue-4\/0:focus{fill:rgb(var(--blue-4)/0)}.focus\:fill-blue-4\/10:focus{fill:rgb(var(--blue-4)/.1)}.focus\:fill-blue-4\/100:focus{fill:rgb(var(--blue-4)/1)}.focus\:fill-blue-4\/20:focus{fill:rgb(var(--blue-4)/.2)}.focus\:fill-blue-4\/25:focus{fill:rgb(var(--blue-4)/.25)}.focus\:fill-blue-4\/30:focus{fill:rgb(var(--blue-4)/.3)}.focus\:fill-blue-4\/40:focus{fill:rgb(var(--blue-4)/.4)}.focus\:fill-blue-4\/5:focus{fill:rgb(var(--blue-4)/.05)}.focus\:fill-blue-4\/50:focus{fill:rgb(var(--blue-4)/.5)}.focus\:fill-blue-4\/60:focus{fill:rgb(var(--blue-4)/.6)}.focus\:fill-blue-4\/70:focus{fill:rgb(var(--blue-4)/.7)}.focus\:fill-blue-4\/75:focus{fill:rgb(var(--blue-4)/.75)}.focus\:fill-blue-4\/80:focus{fill:rgb(var(--blue-4)/.8)}.focus\:fill-blue-4\/90:focus{fill:rgb(var(--blue-4)/.9)}.focus\:fill-blue-4\/95:focus{fill:rgb(var(--blue-4)/.95)}.focus\:fill-blue-5\/0:focus{fill:rgb(var(--blue-5)/0)}.focus\:fill-blue-5\/10:focus{fill:rgb(var(--blue-5)/.1)}.focus\:fill-blue-5\/100:focus{fill:rgb(var(--blue-5)/1)}.focus\:fill-blue-5\/20:focus{fill:rgb(var(--blue-5)/.2)}.focus\:fill-blue-5\/25:focus{fill:rgb(var(--blue-5)/.25)}.focus\:fill-blue-5\/30:focus{fill:rgb(var(--blue-5)/.3)}.focus\:fill-blue-5\/40:focus{fill:rgb(var(--blue-5)/.4)}.focus\:fill-blue-5\/5:focus{fill:rgb(var(--blue-5)/.05)}.focus\:fill-blue-5\/50:focus{fill:rgb(var(--blue-5)/.5)}.focus\:fill-blue-5\/60:focus{fill:rgb(var(--blue-5)/.6)}.focus\:fill-blue-5\/70:focus{fill:rgb(var(--blue-5)/.7)}.focus\:fill-blue-5\/75:focus{fill:rgb(var(--blue-5)/.75)}.focus\:fill-blue-5\/80:focus{fill:rgb(var(--blue-5)/.8)}.focus\:fill-blue-5\/90:focus{fill:rgb(var(--blue-5)/.9)}.focus\:fill-blue-5\/95:focus{fill:rgb(var(--blue-5)/.95)}.focus\:fill-blue-6\/0:focus{fill:rgb(var(--blue-6)/0)}.focus\:fill-blue-6\/10:focus{fill:rgb(var(--blue-6)/.1)}.focus\:fill-blue-6\/100:focus{fill:rgb(var(--blue-6)/1)}.focus\:fill-blue-6\/20:focus{fill:rgb(var(--blue-6)/.2)}.focus\:fill-blue-6\/25:focus{fill:rgb(var(--blue-6)/.25)}.focus\:fill-blue-6\/30:focus{fill:rgb(var(--blue-6)/.3)}.focus\:fill-blue-6\/40:focus{fill:rgb(var(--blue-6)/.4)}.focus\:fill-blue-6\/5:focus{fill:rgb(var(--blue-6)/.05)}.focus\:fill-blue-6\/50:focus{fill:rgb(var(--blue-6)/.5)}.focus\:fill-blue-6\/60:focus{fill:rgb(var(--blue-6)/.6)}.focus\:fill-blue-6\/70:focus{fill:rgb(var(--blue-6)/.7)}.focus\:fill-blue-6\/75:focus{fill:rgb(var(--blue-6)/.75)}.focus\:fill-blue-6\/80:focus{fill:rgb(var(--blue-6)/.8)}.focus\:fill-blue-6\/90:focus{fill:rgb(var(--blue-6)/.9)}.focus\:fill-blue-6\/95:focus{fill:rgb(var(--blue-6)/.95)}.focus\:fill-blue-7\/0:focus{fill:rgb(var(--blue-7)/0)}.focus\:fill-blue-7\/10:focus{fill:rgb(var(--blue-7)/.1)}.focus\:fill-blue-7\/100:focus{fill:rgb(var(--blue-7)/1)}.focus\:fill-blue-7\/20:focus{fill:rgb(var(--blue-7)/.2)}.focus\:fill-blue-7\/25:focus{fill:rgb(var(--blue-7)/.25)}.focus\:fill-blue-7\/30:focus{fill:rgb(var(--blue-7)/.3)}.focus\:fill-blue-7\/40:focus{fill:rgb(var(--blue-7)/.4)}.focus\:fill-blue-7\/5:focus{fill:rgb(var(--blue-7)/.05)}.focus\:fill-blue-7\/50:focus{fill:rgb(var(--blue-7)/.5)}.focus\:fill-blue-7\/60:focus{fill:rgb(var(--blue-7)/.6)}.focus\:fill-blue-7\/70:focus{fill:rgb(var(--blue-7)/.7)}.focus\:fill-blue-7\/75:focus{fill:rgb(var(--blue-7)/.75)}.focus\:fill-blue-7\/80:focus{fill:rgb(var(--blue-7)/.8)}.focus\:fill-blue-7\/90:focus{fill:rgb(var(--blue-7)/.9)}.focus\:fill-blue-7\/95:focus{fill:rgb(var(--blue-7)/.95)}.focus\:fill-blue-8\/0:focus{fill:rgb(var(--blue-8)/0)}.focus\:fill-blue-8\/10:focus{fill:rgb(var(--blue-8)/.1)}.focus\:fill-blue-8\/100:focus{fill:rgb(var(--blue-8)/1)}.focus\:fill-blue-8\/20:focus{fill:rgb(var(--blue-8)/.2)}.focus\:fill-blue-8\/25:focus{fill:rgb(var(--blue-8)/.25)}.focus\:fill-blue-8\/30:focus{fill:rgb(var(--blue-8)/.3)}.focus\:fill-blue-8\/40:focus{fill:rgb(var(--blue-8)/.4)}.focus\:fill-blue-8\/5:focus{fill:rgb(var(--blue-8)/.05)}.focus\:fill-blue-8\/50:focus{fill:rgb(var(--blue-8)/.5)}.focus\:fill-blue-8\/60:focus{fill:rgb(var(--blue-8)/.6)}.focus\:fill-blue-8\/70:focus{fill:rgb(var(--blue-8)/.7)}.focus\:fill-blue-8\/75:focus{fill:rgb(var(--blue-8)/.75)}.focus\:fill-blue-8\/80:focus{fill:rgb(var(--blue-8)/.8)}.focus\:fill-blue-8\/90:focus{fill:rgb(var(--blue-8)/.9)}.focus\:fill-blue-8\/95:focus{fill:rgb(var(--blue-8)/.95)}.focus\:fill-blue-9\/0:focus{fill:rgb(var(--blue-9)/0)}.focus\:fill-blue-9\/10:focus{fill:rgb(var(--blue-9)/.1)}.focus\:fill-blue-9\/100:focus{fill:rgb(var(--blue-9)/1)}.focus\:fill-blue-9\/20:focus{fill:rgb(var(--blue-9)/.2)}.focus\:fill-blue-9\/25:focus{fill:rgb(var(--blue-9)/.25)}.focus\:fill-blue-9\/30:focus{fill:rgb(var(--blue-9)/.3)}.focus\:fill-blue-9\/40:focus{fill:rgb(var(--blue-9)/.4)}.focus\:fill-blue-9\/5:focus{fill:rgb(var(--blue-9)/.05)}.focus\:fill-blue-9\/50:focus{fill:rgb(var(--blue-9)/.5)}.focus\:fill-blue-9\/60:focus{fill:rgb(var(--blue-9)/.6)}.focus\:fill-blue-9\/70:focus{fill:rgb(var(--blue-9)/.7)}.focus\:fill-blue-9\/75:focus{fill:rgb(var(--blue-9)/.75)}.focus\:fill-blue-9\/80:focus{fill:rgb(var(--blue-9)/.8)}.focus\:fill-blue-9\/90:focus{fill:rgb(var(--blue-9)/.9)}.focus\:fill-blue-9\/95:focus{fill:rgb(var(--blue-9)/.95)}.focus\:fill-border:focus{fill:rgb(var(--border))}.focus\:fill-border\/0:focus{fill:rgb(var(--border)/0)}.focus\:fill-border\/10:focus{fill:rgb(var(--border)/.1)}.focus\:fill-border\/100:focus{fill:rgb(var(--border)/1)}.focus\:fill-border\/20:focus{fill:rgb(var(--border)/.2)}.focus\:fill-border\/25:focus{fill:rgb(var(--border)/.25)}.focus\:fill-border\/30:focus{fill:rgb(var(--border)/.3)}.focus\:fill-border\/40:focus{fill:rgb(var(--border)/.4)}.focus\:fill-border\/5:focus{fill:rgb(var(--border)/.05)}.focus\:fill-border\/50:focus{fill:rgb(var(--border)/.5)}.focus\:fill-border\/60:focus{fill:rgb(var(--border)/.6)}.focus\:fill-border\/70:focus{fill:rgb(var(--border)/.7)}.focus\:fill-border\/75:focus{fill:rgb(var(--border)/.75)}.focus\:fill-border\/80:focus{fill:rgb(var(--border)/.8)}.focus\:fill-border\/90:focus{fill:rgb(var(--border)/.9)}.focus\:fill-border\/95:focus{fill:rgb(var(--border)/.95)}.focus\:fill-content1:focus{fill:rgb(var(--content1))}.focus\:fill-content1\/0:focus{fill:rgb(var(--content1)/0)}.focus\:fill-content1\/10:focus{fill:rgb(var(--content1)/.1)}.focus\:fill-content1\/100:focus{fill:rgb(var(--content1)/1)}.focus\:fill-content1\/20:focus{fill:rgb(var(--content1)/.2)}.focus\:fill-content1\/25:focus{fill:rgb(var(--content1)/.25)}.focus\:fill-content1\/30:focus{fill:rgb(var(--content1)/.3)}.focus\:fill-content1\/40:focus{fill:rgb(var(--content1)/.4)}.focus\:fill-content1\/5:focus{fill:rgb(var(--content1)/.05)}.focus\:fill-content1\/50:focus{fill:rgb(var(--content1)/.5)}.focus\:fill-content1\/60:focus{fill:rgb(var(--content1)/.6)}.focus\:fill-content1\/70:focus{fill:rgb(var(--content1)/.7)}.focus\:fill-content1\/75:focus{fill:rgb(var(--content1)/.75)}.focus\:fill-content1\/80:focus{fill:rgb(var(--content1)/.8)}.focus\:fill-content1\/90:focus{fill:rgb(var(--content1)/.9)}.focus\:fill-content1\/95:focus{fill:rgb(var(--content1)/.95)}.focus\:fill-content2:focus{fill:rgb(var(--content2))}.focus\:fill-content2\/0:focus{fill:rgb(var(--content2)/0)}.focus\:fill-content2\/10:focus{fill:rgb(var(--content2)/.1)}.focus\:fill-content2\/100:focus{fill:rgb(var(--content2)/1)}.focus\:fill-content2\/20:focus{fill:rgb(var(--content2)/.2)}.focus\:fill-content2\/25:focus{fill:rgb(var(--content2)/.25)}.focus\:fill-content2\/30:focus{fill:rgb(var(--content2)/.3)}.focus\:fill-content2\/40:focus{fill:rgb(var(--content2)/.4)}.focus\:fill-content2\/5:focus{fill:rgb(var(--content2)/.05)}.focus\:fill-content2\/50:focus{fill:rgb(var(--content2)/.5)}.focus\:fill-content2\/60:focus{fill:rgb(var(--content2)/.6)}.focus\:fill-content2\/70:focus{fill:rgb(var(--content2)/.7)}.focus\:fill-content2\/75:focus{fill:rgb(var(--content2)/.75)}.focus\:fill-content2\/80:focus{fill:rgb(var(--content2)/.8)}.focus\:fill-content2\/90:focus{fill:rgb(var(--content2)/.9)}.focus\:fill-content2\/95:focus{fill:rgb(var(--content2)/.95)}.focus\:fill-content3:focus{fill:rgb(var(--content3))}.focus\:fill-content3\/0:focus{fill:rgb(var(--content3)/0)}.focus\:fill-content3\/10:focus{fill:rgb(var(--content3)/.1)}.focus\:fill-content3\/100:focus{fill:rgb(var(--content3)/1)}.focus\:fill-content3\/20:focus{fill:rgb(var(--content3)/.2)}.focus\:fill-content3\/25:focus{fill:rgb(var(--content3)/.25)}.focus\:fill-content3\/30:focus{fill:rgb(var(--content3)/.3)}.focus\:fill-content3\/40:focus{fill:rgb(var(--content3)/.4)}.focus\:fill-content3\/5:focus{fill:rgb(var(--content3)/.05)}.focus\:fill-content3\/50:focus{fill:rgb(var(--content3)/.5)}.focus\:fill-content3\/60:focus{fill:rgb(var(--content3)/.6)}.focus\:fill-content3\/70:focus{fill:rgb(var(--content3)/.7)}.focus\:fill-content3\/75:focus{fill:rgb(var(--content3)/.75)}.focus\:fill-content3\/80:focus{fill:rgb(var(--content3)/.8)}.focus\:fill-content3\/90:focus{fill:rgb(var(--content3)/.9)}.focus\:fill-content3\/95:focus{fill:rgb(var(--content3)/.95)}.focus\:fill-cyan-1\/0:focus{fill:rgb(var(--cyan-1)/0)}.focus\:fill-cyan-1\/10:focus{fill:rgb(var(--cyan-1)/.1)}.focus\:fill-cyan-1\/100:focus{fill:rgb(var(--cyan-1)/1)}.focus\:fill-cyan-1\/20:focus{fill:rgb(var(--cyan-1)/.2)}.focus\:fill-cyan-1\/25:focus{fill:rgb(var(--cyan-1)/.25)}.focus\:fill-cyan-1\/30:focus{fill:rgb(var(--cyan-1)/.3)}.focus\:fill-cyan-1\/40:focus{fill:rgb(var(--cyan-1)/.4)}.focus\:fill-cyan-1\/5:focus{fill:rgb(var(--cyan-1)/.05)}.focus\:fill-cyan-1\/50:focus{fill:rgb(var(--cyan-1)/.5)}.focus\:fill-cyan-1\/60:focus{fill:rgb(var(--cyan-1)/.6)}.focus\:fill-cyan-1\/70:focus{fill:rgb(var(--cyan-1)/.7)}.focus\:fill-cyan-1\/75:focus{fill:rgb(var(--cyan-1)/.75)}.focus\:fill-cyan-1\/80:focus{fill:rgb(var(--cyan-1)/.8)}.focus\:fill-cyan-1\/90:focus{fill:rgb(var(--cyan-1)/.9)}.focus\:fill-cyan-1\/95:focus{fill:rgb(var(--cyan-1)/.95)}.focus\:fill-cyan-10\/0:focus{fill:rgb(var(--cyan-10)/0)}.focus\:fill-cyan-10\/10:focus{fill:rgb(var(--cyan-10)/.1)}.focus\:fill-cyan-10\/100:focus{fill:rgb(var(--cyan-10)/1)}.focus\:fill-cyan-10\/20:focus{fill:rgb(var(--cyan-10)/.2)}.focus\:fill-cyan-10\/25:focus{fill:rgb(var(--cyan-10)/.25)}.focus\:fill-cyan-10\/30:focus{fill:rgb(var(--cyan-10)/.3)}.focus\:fill-cyan-10\/40:focus{fill:rgb(var(--cyan-10)/.4)}.focus\:fill-cyan-10\/5:focus{fill:rgb(var(--cyan-10)/.05)}.focus\:fill-cyan-10\/50:focus{fill:rgb(var(--cyan-10)/.5)}.focus\:fill-cyan-10\/60:focus{fill:rgb(var(--cyan-10)/.6)}.focus\:fill-cyan-10\/70:focus{fill:rgb(var(--cyan-10)/.7)}.focus\:fill-cyan-10\/75:focus{fill:rgb(var(--cyan-10)/.75)}.focus\:fill-cyan-10\/80:focus{fill:rgb(var(--cyan-10)/.8)}.focus\:fill-cyan-10\/90:focus{fill:rgb(var(--cyan-10)/.9)}.focus\:fill-cyan-10\/95:focus{fill:rgb(var(--cyan-10)/.95)}.focus\:fill-cyan-2\/0:focus{fill:rgb(var(--cyan-2)/0)}.focus\:fill-cyan-2\/10:focus{fill:rgb(var(--cyan-2)/.1)}.focus\:fill-cyan-2\/100:focus{fill:rgb(var(--cyan-2)/1)}.focus\:fill-cyan-2\/20:focus{fill:rgb(var(--cyan-2)/.2)}.focus\:fill-cyan-2\/25:focus{fill:rgb(var(--cyan-2)/.25)}.focus\:fill-cyan-2\/30:focus{fill:rgb(var(--cyan-2)/.3)}.focus\:fill-cyan-2\/40:focus{fill:rgb(var(--cyan-2)/.4)}.focus\:fill-cyan-2\/5:focus{fill:rgb(var(--cyan-2)/.05)}.focus\:fill-cyan-2\/50:focus{fill:rgb(var(--cyan-2)/.5)}.focus\:fill-cyan-2\/60:focus{fill:rgb(var(--cyan-2)/.6)}.focus\:fill-cyan-2\/70:focus{fill:rgb(var(--cyan-2)/.7)}.focus\:fill-cyan-2\/75:focus{fill:rgb(var(--cyan-2)/.75)}.focus\:fill-cyan-2\/80:focus{fill:rgb(var(--cyan-2)/.8)}.focus\:fill-cyan-2\/90:focus{fill:rgb(var(--cyan-2)/.9)}.focus\:fill-cyan-2\/95:focus{fill:rgb(var(--cyan-2)/.95)}.focus\:fill-cyan-3\/0:focus{fill:rgb(var(--cyan-3)/0)}.focus\:fill-cyan-3\/10:focus{fill:rgb(var(--cyan-3)/.1)}.focus\:fill-cyan-3\/100:focus{fill:rgb(var(--cyan-3)/1)}.focus\:fill-cyan-3\/20:focus{fill:rgb(var(--cyan-3)/.2)}.focus\:fill-cyan-3\/25:focus{fill:rgb(var(--cyan-3)/.25)}.focus\:fill-cyan-3\/30:focus{fill:rgb(var(--cyan-3)/.3)}.focus\:fill-cyan-3\/40:focus{fill:rgb(var(--cyan-3)/.4)}.focus\:fill-cyan-3\/5:focus{fill:rgb(var(--cyan-3)/.05)}.focus\:fill-cyan-3\/50:focus{fill:rgb(var(--cyan-3)/.5)}.focus\:fill-cyan-3\/60:focus{fill:rgb(var(--cyan-3)/.6)}.focus\:fill-cyan-3\/70:focus{fill:rgb(var(--cyan-3)/.7)}.focus\:fill-cyan-3\/75:focus{fill:rgb(var(--cyan-3)/.75)}.focus\:fill-cyan-3\/80:focus{fill:rgb(var(--cyan-3)/.8)}.focus\:fill-cyan-3\/90:focus{fill:rgb(var(--cyan-3)/.9)}.focus\:fill-cyan-3\/95:focus{fill:rgb(var(--cyan-3)/.95)}.focus\:fill-cyan-4\/0:focus{fill:rgb(var(--cyan-4)/0)}.focus\:fill-cyan-4\/10:focus{fill:rgb(var(--cyan-4)/.1)}.focus\:fill-cyan-4\/100:focus{fill:rgb(var(--cyan-4)/1)}.focus\:fill-cyan-4\/20:focus{fill:rgb(var(--cyan-4)/.2)}.focus\:fill-cyan-4\/25:focus{fill:rgb(var(--cyan-4)/.25)}.focus\:fill-cyan-4\/30:focus{fill:rgb(var(--cyan-4)/.3)}.focus\:fill-cyan-4\/40:focus{fill:rgb(var(--cyan-4)/.4)}.focus\:fill-cyan-4\/5:focus{fill:rgb(var(--cyan-4)/.05)}.focus\:fill-cyan-4\/50:focus{fill:rgb(var(--cyan-4)/.5)}.focus\:fill-cyan-4\/60:focus{fill:rgb(var(--cyan-4)/.6)}.focus\:fill-cyan-4\/70:focus{fill:rgb(var(--cyan-4)/.7)}.focus\:fill-cyan-4\/75:focus{fill:rgb(var(--cyan-4)/.75)}.focus\:fill-cyan-4\/80:focus{fill:rgb(var(--cyan-4)/.8)}.focus\:fill-cyan-4\/90:focus{fill:rgb(var(--cyan-4)/.9)}.focus\:fill-cyan-4\/95:focus{fill:rgb(var(--cyan-4)/.95)}.focus\:fill-cyan-5\/0:focus{fill:rgb(var(--cyan-5)/0)}.focus\:fill-cyan-5\/10:focus{fill:rgb(var(--cyan-5)/.1)}.focus\:fill-cyan-5\/100:focus{fill:rgb(var(--cyan-5)/1)}.focus\:fill-cyan-5\/20:focus{fill:rgb(var(--cyan-5)/.2)}.focus\:fill-cyan-5\/25:focus{fill:rgb(var(--cyan-5)/.25)}.focus\:fill-cyan-5\/30:focus{fill:rgb(var(--cyan-5)/.3)}.focus\:fill-cyan-5\/40:focus{fill:rgb(var(--cyan-5)/.4)}.focus\:fill-cyan-5\/5:focus{fill:rgb(var(--cyan-5)/.05)}.focus\:fill-cyan-5\/50:focus{fill:rgb(var(--cyan-5)/.5)}.focus\:fill-cyan-5\/60:focus{fill:rgb(var(--cyan-5)/.6)}.focus\:fill-cyan-5\/70:focus{fill:rgb(var(--cyan-5)/.7)}.focus\:fill-cyan-5\/75:focus{fill:rgb(var(--cyan-5)/.75)}.focus\:fill-cyan-5\/80:focus{fill:rgb(var(--cyan-5)/.8)}.focus\:fill-cyan-5\/90:focus{fill:rgb(var(--cyan-5)/.9)}.focus\:fill-cyan-5\/95:focus{fill:rgb(var(--cyan-5)/.95)}.focus\:fill-cyan-6\/0:focus{fill:rgb(var(--cyan-6)/0)}.focus\:fill-cyan-6\/10:focus{fill:rgb(var(--cyan-6)/.1)}.focus\:fill-cyan-6\/100:focus{fill:rgb(var(--cyan-6)/1)}.focus\:fill-cyan-6\/20:focus{fill:rgb(var(--cyan-6)/.2)}.focus\:fill-cyan-6\/25:focus{fill:rgb(var(--cyan-6)/.25)}.focus\:fill-cyan-6\/30:focus{fill:rgb(var(--cyan-6)/.3)}.focus\:fill-cyan-6\/40:focus{fill:rgb(var(--cyan-6)/.4)}.focus\:fill-cyan-6\/5:focus{fill:rgb(var(--cyan-6)/.05)}.focus\:fill-cyan-6\/50:focus{fill:rgb(var(--cyan-6)/.5)}.focus\:fill-cyan-6\/60:focus{fill:rgb(var(--cyan-6)/.6)}.focus\:fill-cyan-6\/70:focus{fill:rgb(var(--cyan-6)/.7)}.focus\:fill-cyan-6\/75:focus{fill:rgb(var(--cyan-6)/.75)}.focus\:fill-cyan-6\/80:focus{fill:rgb(var(--cyan-6)/.8)}.focus\:fill-cyan-6\/90:focus{fill:rgb(var(--cyan-6)/.9)}.focus\:fill-cyan-6\/95:focus{fill:rgb(var(--cyan-6)/.95)}.focus\:fill-cyan-7\/0:focus{fill:rgb(var(--cyan-7)/0)}.focus\:fill-cyan-7\/10:focus{fill:rgb(var(--cyan-7)/.1)}.focus\:fill-cyan-7\/100:focus{fill:rgb(var(--cyan-7)/1)}.focus\:fill-cyan-7\/20:focus{fill:rgb(var(--cyan-7)/.2)}.focus\:fill-cyan-7\/25:focus{fill:rgb(var(--cyan-7)/.25)}.focus\:fill-cyan-7\/30:focus{fill:rgb(var(--cyan-7)/.3)}.focus\:fill-cyan-7\/40:focus{fill:rgb(var(--cyan-7)/.4)}.focus\:fill-cyan-7\/5:focus{fill:rgb(var(--cyan-7)/.05)}.focus\:fill-cyan-7\/50:focus{fill:rgb(var(--cyan-7)/.5)}.focus\:fill-cyan-7\/60:focus{fill:rgb(var(--cyan-7)/.6)}.focus\:fill-cyan-7\/70:focus{fill:rgb(var(--cyan-7)/.7)}.focus\:fill-cyan-7\/75:focus{fill:rgb(var(--cyan-7)/.75)}.focus\:fill-cyan-7\/80:focus{fill:rgb(var(--cyan-7)/.8)}.focus\:fill-cyan-7\/90:focus{fill:rgb(var(--cyan-7)/.9)}.focus\:fill-cyan-7\/95:focus{fill:rgb(var(--cyan-7)/.95)}.focus\:fill-cyan-8\/0:focus{fill:rgb(var(--cyan-8)/0)}.focus\:fill-cyan-8\/10:focus{fill:rgb(var(--cyan-8)/.1)}.focus\:fill-cyan-8\/100:focus{fill:rgb(var(--cyan-8)/1)}.focus\:fill-cyan-8\/20:focus{fill:rgb(var(--cyan-8)/.2)}.focus\:fill-cyan-8\/25:focus{fill:rgb(var(--cyan-8)/.25)}.focus\:fill-cyan-8\/30:focus{fill:rgb(var(--cyan-8)/.3)}.focus\:fill-cyan-8\/40:focus{fill:rgb(var(--cyan-8)/.4)}.focus\:fill-cyan-8\/5:focus{fill:rgb(var(--cyan-8)/.05)}.focus\:fill-cyan-8\/50:focus{fill:rgb(var(--cyan-8)/.5)}.focus\:fill-cyan-8\/60:focus{fill:rgb(var(--cyan-8)/.6)}.focus\:fill-cyan-8\/70:focus{fill:rgb(var(--cyan-8)/.7)}.focus\:fill-cyan-8\/75:focus{fill:rgb(var(--cyan-8)/.75)}.focus\:fill-cyan-8\/80:focus{fill:rgb(var(--cyan-8)/.8)}.focus\:fill-cyan-8\/90:focus{fill:rgb(var(--cyan-8)/.9)}.focus\:fill-cyan-8\/95:focus{fill:rgb(var(--cyan-8)/.95)}.focus\:fill-cyan-9\/0:focus{fill:rgb(var(--cyan-9)/0)}.focus\:fill-cyan-9\/10:focus{fill:rgb(var(--cyan-9)/.1)}.focus\:fill-cyan-9\/100:focus{fill:rgb(var(--cyan-9)/1)}.focus\:fill-cyan-9\/20:focus{fill:rgb(var(--cyan-9)/.2)}.focus\:fill-cyan-9\/25:focus{fill:rgb(var(--cyan-9)/.25)}.focus\:fill-cyan-9\/30:focus{fill:rgb(var(--cyan-9)/.3)}.focus\:fill-cyan-9\/40:focus{fill:rgb(var(--cyan-9)/.4)}.focus\:fill-cyan-9\/5:focus{fill:rgb(var(--cyan-9)/.05)}.focus\:fill-cyan-9\/50:focus{fill:rgb(var(--cyan-9)/.5)}.focus\:fill-cyan-9\/60:focus{fill:rgb(var(--cyan-9)/.6)}.focus\:fill-cyan-9\/70:focus{fill:rgb(var(--cyan-9)/.7)}.focus\:fill-cyan-9\/75:focus{fill:rgb(var(--cyan-9)/.75)}.focus\:fill-cyan-9\/80:focus{fill:rgb(var(--cyan-9)/.8)}.focus\:fill-cyan-9\/90:focus{fill:rgb(var(--cyan-9)/.9)}.focus\:fill-cyan-9\/95:focus{fill:rgb(var(--cyan-9)/.95)}.focus\:fill-error:focus{fill:rgb(var(--error))}.focus\:fill-error\/0:focus{fill:rgb(var(--error)/0)}.focus\:fill-error\/10:focus{fill:rgb(var(--error)/.1)}.focus\:fill-error\/100:focus{fill:rgb(var(--error)/1)}.focus\:fill-error\/20:focus{fill:rgb(var(--error)/.2)}.focus\:fill-error\/25:focus{fill:rgb(var(--error)/.25)}.focus\:fill-error\/30:focus{fill:rgb(var(--error)/.3)}.focus\:fill-error\/40:focus{fill:rgb(var(--error)/.4)}.focus\:fill-error\/5:focus{fill:rgb(var(--error)/.05)}.focus\:fill-error\/50:focus{fill:rgb(var(--error)/.5)}.focus\:fill-error\/60:focus{fill:rgb(var(--error)/.6)}.focus\:fill-error\/70:focus{fill:rgb(var(--error)/.7)}.focus\:fill-error\/75:focus{fill:rgb(var(--error)/.75)}.focus\:fill-error\/80:focus{fill:rgb(var(--error)/.8)}.focus\:fill-error\/90:focus{fill:rgb(var(--error)/.9)}.focus\:fill-error\/95:focus{fill:rgb(var(--error)/.95)}.focus\:fill-gray-1\/0:focus{fill:rgb(var(--gray-1)/0)}.focus\:fill-gray-1\/10:focus{fill:rgb(var(--gray-1)/.1)}.focus\:fill-gray-1\/100:focus{fill:rgb(var(--gray-1)/1)}.focus\:fill-gray-1\/20:focus{fill:rgb(var(--gray-1)/.2)}.focus\:fill-gray-1\/25:focus{fill:rgb(var(--gray-1)/.25)}.focus\:fill-gray-1\/30:focus{fill:rgb(var(--gray-1)/.3)}.focus\:fill-gray-1\/40:focus{fill:rgb(var(--gray-1)/.4)}.focus\:fill-gray-1\/5:focus{fill:rgb(var(--gray-1)/.05)}.focus\:fill-gray-1\/50:focus{fill:rgb(var(--gray-1)/.5)}.focus\:fill-gray-1\/60:focus{fill:rgb(var(--gray-1)/.6)}.focus\:fill-gray-1\/70:focus{fill:rgb(var(--gray-1)/.7)}.focus\:fill-gray-1\/75:focus{fill:rgb(var(--gray-1)/.75)}.focus\:fill-gray-1\/80:focus{fill:rgb(var(--gray-1)/.8)}.focus\:fill-gray-1\/90:focus{fill:rgb(var(--gray-1)/.9)}.focus\:fill-gray-1\/95:focus{fill:rgb(var(--gray-1)/.95)}.focus\:fill-gray-10\/0:focus{fill:rgb(var(--gray-10)/0)}.focus\:fill-gray-10\/10:focus{fill:rgb(var(--gray-10)/.1)}.focus\:fill-gray-10\/100:focus{fill:rgb(var(--gray-10)/1)}.focus\:fill-gray-10\/20:focus{fill:rgb(var(--gray-10)/.2)}.focus\:fill-gray-10\/25:focus{fill:rgb(var(--gray-10)/.25)}.focus\:fill-gray-10\/30:focus{fill:rgb(var(--gray-10)/.3)}.focus\:fill-gray-10\/40:focus{fill:rgb(var(--gray-10)/.4)}.focus\:fill-gray-10\/5:focus{fill:rgb(var(--gray-10)/.05)}.focus\:fill-gray-10\/50:focus{fill:rgb(var(--gray-10)/.5)}.focus\:fill-gray-10\/60:focus{fill:rgb(var(--gray-10)/.6)}.focus\:fill-gray-10\/70:focus{fill:rgb(var(--gray-10)/.7)}.focus\:fill-gray-10\/75:focus{fill:rgb(var(--gray-10)/.75)}.focus\:fill-gray-10\/80:focus{fill:rgb(var(--gray-10)/.8)}.focus\:fill-gray-10\/90:focus{fill:rgb(var(--gray-10)/.9)}.focus\:fill-gray-10\/95:focus{fill:rgb(var(--gray-10)/.95)}.focus\:fill-gray-2\/0:focus{fill:rgb(var(--gray-2)/0)}.focus\:fill-gray-2\/10:focus{fill:rgb(var(--gray-2)/.1)}.focus\:fill-gray-2\/100:focus{fill:rgb(var(--gray-2)/1)}.focus\:fill-gray-2\/20:focus{fill:rgb(var(--gray-2)/.2)}.focus\:fill-gray-2\/25:focus{fill:rgb(var(--gray-2)/.25)}.focus\:fill-gray-2\/30:focus{fill:rgb(var(--gray-2)/.3)}.focus\:fill-gray-2\/40:focus{fill:rgb(var(--gray-2)/.4)}.focus\:fill-gray-2\/5:focus{fill:rgb(var(--gray-2)/.05)}.focus\:fill-gray-2\/50:focus{fill:rgb(var(--gray-2)/.5)}.focus\:fill-gray-2\/60:focus{fill:rgb(var(--gray-2)/.6)}.focus\:fill-gray-2\/70:focus{fill:rgb(var(--gray-2)/.7)}.focus\:fill-gray-2\/75:focus{fill:rgb(var(--gray-2)/.75)}.focus\:fill-gray-2\/80:focus{fill:rgb(var(--gray-2)/.8)}.focus\:fill-gray-2\/90:focus{fill:rgb(var(--gray-2)/.9)}.focus\:fill-gray-2\/95:focus{fill:rgb(var(--gray-2)/.95)}.focus\:fill-gray-3\/0:focus{fill:rgb(var(--gray-3)/0)}.focus\:fill-gray-3\/10:focus{fill:rgb(var(--gray-3)/.1)}.focus\:fill-gray-3\/100:focus{fill:rgb(var(--gray-3)/1)}.focus\:fill-gray-3\/20:focus{fill:rgb(var(--gray-3)/.2)}.focus\:fill-gray-3\/25:focus{fill:rgb(var(--gray-3)/.25)}.focus\:fill-gray-3\/30:focus{fill:rgb(var(--gray-3)/.3)}.focus\:fill-gray-3\/40:focus{fill:rgb(var(--gray-3)/.4)}.focus\:fill-gray-3\/5:focus{fill:rgb(var(--gray-3)/.05)}.focus\:fill-gray-3\/50:focus{fill:rgb(var(--gray-3)/.5)}.focus\:fill-gray-3\/60:focus{fill:rgb(var(--gray-3)/.6)}.focus\:fill-gray-3\/70:focus{fill:rgb(var(--gray-3)/.7)}.focus\:fill-gray-3\/75:focus{fill:rgb(var(--gray-3)/.75)}.focus\:fill-gray-3\/80:focus{fill:rgb(var(--gray-3)/.8)}.focus\:fill-gray-3\/90:focus{fill:rgb(var(--gray-3)/.9)}.focus\:fill-gray-3\/95:focus{fill:rgb(var(--gray-3)/.95)}.focus\:fill-gray-4\/0:focus{fill:rgb(var(--gray-4)/0)}.focus\:fill-gray-4\/10:focus{fill:rgb(var(--gray-4)/.1)}.focus\:fill-gray-4\/100:focus{fill:rgb(var(--gray-4)/1)}.focus\:fill-gray-4\/20:focus{fill:rgb(var(--gray-4)/.2)}.focus\:fill-gray-4\/25:focus{fill:rgb(var(--gray-4)/.25)}.focus\:fill-gray-4\/30:focus{fill:rgb(var(--gray-4)/.3)}.focus\:fill-gray-4\/40:focus{fill:rgb(var(--gray-4)/.4)}.focus\:fill-gray-4\/5:focus{fill:rgb(var(--gray-4)/.05)}.focus\:fill-gray-4\/50:focus{fill:rgb(var(--gray-4)/.5)}.focus\:fill-gray-4\/60:focus{fill:rgb(var(--gray-4)/.6)}.focus\:fill-gray-4\/70:focus{fill:rgb(var(--gray-4)/.7)}.focus\:fill-gray-4\/75:focus{fill:rgb(var(--gray-4)/.75)}.focus\:fill-gray-4\/80:focus{fill:rgb(var(--gray-4)/.8)}.focus\:fill-gray-4\/90:focus{fill:rgb(var(--gray-4)/.9)}.focus\:fill-gray-4\/95:focus{fill:rgb(var(--gray-4)/.95)}.focus\:fill-gray-5\/0:focus{fill:rgb(var(--gray-5)/0)}.focus\:fill-gray-5\/10:focus{fill:rgb(var(--gray-5)/.1)}.focus\:fill-gray-5\/100:focus{fill:rgb(var(--gray-5)/1)}.focus\:fill-gray-5\/20:focus{fill:rgb(var(--gray-5)/.2)}.focus\:fill-gray-5\/25:focus{fill:rgb(var(--gray-5)/.25)}.focus\:fill-gray-5\/30:focus{fill:rgb(var(--gray-5)/.3)}.focus\:fill-gray-5\/40:focus{fill:rgb(var(--gray-5)/.4)}.focus\:fill-gray-5\/5:focus{fill:rgb(var(--gray-5)/.05)}.focus\:fill-gray-5\/50:focus{fill:rgb(var(--gray-5)/.5)}.focus\:fill-gray-5\/60:focus{fill:rgb(var(--gray-5)/.6)}.focus\:fill-gray-5\/70:focus{fill:rgb(var(--gray-5)/.7)}.focus\:fill-gray-5\/75:focus{fill:rgb(var(--gray-5)/.75)}.focus\:fill-gray-5\/80:focus{fill:rgb(var(--gray-5)/.8)}.focus\:fill-gray-5\/90:focus{fill:rgb(var(--gray-5)/.9)}.focus\:fill-gray-5\/95:focus{fill:rgb(var(--gray-5)/.95)}.focus\:fill-gray-6\/0:focus{fill:rgb(var(--gray-6)/0)}.focus\:fill-gray-6\/10:focus{fill:rgb(var(--gray-6)/.1)}.focus\:fill-gray-6\/100:focus{fill:rgb(var(--gray-6)/1)}.focus\:fill-gray-6\/20:focus{fill:rgb(var(--gray-6)/.2)}.focus\:fill-gray-6\/25:focus{fill:rgb(var(--gray-6)/.25)}.focus\:fill-gray-6\/30:focus{fill:rgb(var(--gray-6)/.3)}.focus\:fill-gray-6\/40:focus{fill:rgb(var(--gray-6)/.4)}.focus\:fill-gray-6\/5:focus{fill:rgb(var(--gray-6)/.05)}.focus\:fill-gray-6\/50:focus{fill:rgb(var(--gray-6)/.5)}.focus\:fill-gray-6\/60:focus{fill:rgb(var(--gray-6)/.6)}.focus\:fill-gray-6\/70:focus{fill:rgb(var(--gray-6)/.7)}.focus\:fill-gray-6\/75:focus{fill:rgb(var(--gray-6)/.75)}.focus\:fill-gray-6\/80:focus{fill:rgb(var(--gray-6)/.8)}.focus\:fill-gray-6\/90:focus{fill:rgb(var(--gray-6)/.9)}.focus\:fill-gray-6\/95:focus{fill:rgb(var(--gray-6)/.95)}.focus\:fill-gray-7\/0:focus{fill:rgb(var(--gray-7)/0)}.focus\:fill-gray-7\/10:focus{fill:rgb(var(--gray-7)/.1)}.focus\:fill-gray-7\/100:focus{fill:rgb(var(--gray-7)/1)}.focus\:fill-gray-7\/20:focus{fill:rgb(var(--gray-7)/.2)}.focus\:fill-gray-7\/25:focus{fill:rgb(var(--gray-7)/.25)}.focus\:fill-gray-7\/30:focus{fill:rgb(var(--gray-7)/.3)}.focus\:fill-gray-7\/40:focus{fill:rgb(var(--gray-7)/.4)}.focus\:fill-gray-7\/5:focus{fill:rgb(var(--gray-7)/.05)}.focus\:fill-gray-7\/50:focus{fill:rgb(var(--gray-7)/.5)}.focus\:fill-gray-7\/60:focus{fill:rgb(var(--gray-7)/.6)}.focus\:fill-gray-7\/70:focus{fill:rgb(var(--gray-7)/.7)}.focus\:fill-gray-7\/75:focus{fill:rgb(var(--gray-7)/.75)}.focus\:fill-gray-7\/80:focus{fill:rgb(var(--gray-7)/.8)}.focus\:fill-gray-7\/90:focus{fill:rgb(var(--gray-7)/.9)}.focus\:fill-gray-7\/95:focus{fill:rgb(var(--gray-7)/.95)}.focus\:fill-gray-8\/0:focus{fill:rgb(var(--gray-8)/0)}.focus\:fill-gray-8\/10:focus{fill:rgb(var(--gray-8)/.1)}.focus\:fill-gray-8\/100:focus{fill:rgb(var(--gray-8)/1)}.focus\:fill-gray-8\/20:focus{fill:rgb(var(--gray-8)/.2)}.focus\:fill-gray-8\/25:focus{fill:rgb(var(--gray-8)/.25)}.focus\:fill-gray-8\/30:focus{fill:rgb(var(--gray-8)/.3)}.focus\:fill-gray-8\/40:focus{fill:rgb(var(--gray-8)/.4)}.focus\:fill-gray-8\/5:focus{fill:rgb(var(--gray-8)/.05)}.focus\:fill-gray-8\/50:focus{fill:rgb(var(--gray-8)/.5)}.focus\:fill-gray-8\/60:focus{fill:rgb(var(--gray-8)/.6)}.focus\:fill-gray-8\/70:focus{fill:rgb(var(--gray-8)/.7)}.focus\:fill-gray-8\/75:focus{fill:rgb(var(--gray-8)/.75)}.focus\:fill-gray-8\/80:focus{fill:rgb(var(--gray-8)/.8)}.focus\:fill-gray-8\/90:focus{fill:rgb(var(--gray-8)/.9)}.focus\:fill-gray-8\/95:focus{fill:rgb(var(--gray-8)/.95)}.focus\:fill-gray-9\/0:focus{fill:rgb(var(--gray-9)/0)}.focus\:fill-gray-9\/10:focus{fill:rgb(var(--gray-9)/.1)}.focus\:fill-gray-9\/100:focus{fill:rgb(var(--gray-9)/1)}.focus\:fill-gray-9\/20:focus{fill:rgb(var(--gray-9)/.2)}.focus\:fill-gray-9\/25:focus{fill:rgb(var(--gray-9)/.25)}.focus\:fill-gray-9\/30:focus{fill:rgb(var(--gray-9)/.3)}.focus\:fill-gray-9\/40:focus{fill:rgb(var(--gray-9)/.4)}.focus\:fill-gray-9\/5:focus{fill:rgb(var(--gray-9)/.05)}.focus\:fill-gray-9\/50:focus{fill:rgb(var(--gray-9)/.5)}.focus\:fill-gray-9\/60:focus{fill:rgb(var(--gray-9)/.6)}.focus\:fill-gray-9\/70:focus{fill:rgb(var(--gray-9)/.7)}.focus\:fill-gray-9\/75:focus{fill:rgb(var(--gray-9)/.75)}.focus\:fill-gray-9\/80:focus{fill:rgb(var(--gray-9)/.8)}.focus\:fill-gray-9\/90:focus{fill:rgb(var(--gray-9)/.9)}.focus\:fill-gray-9\/95:focus{fill:rgb(var(--gray-9)/.95)}.focus\:fill-green-1\/0:focus{fill:rgb(var(--green-1)/0)}.focus\:fill-green-1\/10:focus{fill:rgb(var(--green-1)/.1)}.focus\:fill-green-1\/100:focus{fill:rgb(var(--green-1)/1)}.focus\:fill-green-1\/20:focus{fill:rgb(var(--green-1)/.2)}.focus\:fill-green-1\/25:focus{fill:rgb(var(--green-1)/.25)}.focus\:fill-green-1\/30:focus{fill:rgb(var(--green-1)/.3)}.focus\:fill-green-1\/40:focus{fill:rgb(var(--green-1)/.4)}.focus\:fill-green-1\/5:focus{fill:rgb(var(--green-1)/.05)}.focus\:fill-green-1\/50:focus{fill:rgb(var(--green-1)/.5)}.focus\:fill-green-1\/60:focus{fill:rgb(var(--green-1)/.6)}.focus\:fill-green-1\/70:focus{fill:rgb(var(--green-1)/.7)}.focus\:fill-green-1\/75:focus{fill:rgb(var(--green-1)/.75)}.focus\:fill-green-1\/80:focus{fill:rgb(var(--green-1)/.8)}.focus\:fill-green-1\/90:focus{fill:rgb(var(--green-1)/.9)}.focus\:fill-green-1\/95:focus{fill:rgb(var(--green-1)/.95)}.focus\:fill-green-10\/0:focus{fill:rgb(var(--green-10)/0)}.focus\:fill-green-10\/10:focus{fill:rgb(var(--green-10)/.1)}.focus\:fill-green-10\/100:focus{fill:rgb(var(--green-10)/1)}.focus\:fill-green-10\/20:focus{fill:rgb(var(--green-10)/.2)}.focus\:fill-green-10\/25:focus{fill:rgb(var(--green-10)/.25)}.focus\:fill-green-10\/30:focus{fill:rgb(var(--green-10)/.3)}.focus\:fill-green-10\/40:focus{fill:rgb(var(--green-10)/.4)}.focus\:fill-green-10\/5:focus{fill:rgb(var(--green-10)/.05)}.focus\:fill-green-10\/50:focus{fill:rgb(var(--green-10)/.5)}.focus\:fill-green-10\/60:focus{fill:rgb(var(--green-10)/.6)}.focus\:fill-green-10\/70:focus{fill:rgb(var(--green-10)/.7)}.focus\:fill-green-10\/75:focus{fill:rgb(var(--green-10)/.75)}.focus\:fill-green-10\/80:focus{fill:rgb(var(--green-10)/.8)}.focus\:fill-green-10\/90:focus{fill:rgb(var(--green-10)/.9)}.focus\:fill-green-10\/95:focus{fill:rgb(var(--green-10)/.95)}.focus\:fill-green-2\/0:focus{fill:rgb(var(--green-2)/0)}.focus\:fill-green-2\/10:focus{fill:rgb(var(--green-2)/.1)}.focus\:fill-green-2\/100:focus{fill:rgb(var(--green-2)/1)}.focus\:fill-green-2\/20:focus{fill:rgb(var(--green-2)/.2)}.focus\:fill-green-2\/25:focus{fill:rgb(var(--green-2)/.25)}.focus\:fill-green-2\/30:focus{fill:rgb(var(--green-2)/.3)}.focus\:fill-green-2\/40:focus{fill:rgb(var(--green-2)/.4)}.focus\:fill-green-2\/5:focus{fill:rgb(var(--green-2)/.05)}.focus\:fill-green-2\/50:focus{fill:rgb(var(--green-2)/.5)}.focus\:fill-green-2\/60:focus{fill:rgb(var(--green-2)/.6)}.focus\:fill-green-2\/70:focus{fill:rgb(var(--green-2)/.7)}.focus\:fill-green-2\/75:focus{fill:rgb(var(--green-2)/.75)}.focus\:fill-green-2\/80:focus{fill:rgb(var(--green-2)/.8)}.focus\:fill-green-2\/90:focus{fill:rgb(var(--green-2)/.9)}.focus\:fill-green-2\/95:focus{fill:rgb(var(--green-2)/.95)}.focus\:fill-green-3\/0:focus{fill:rgb(var(--green-3)/0)}.focus\:fill-green-3\/10:focus{fill:rgb(var(--green-3)/.1)}.focus\:fill-green-3\/100:focus{fill:rgb(var(--green-3)/1)}.focus\:fill-green-3\/20:focus{fill:rgb(var(--green-3)/.2)}.focus\:fill-green-3\/25:focus{fill:rgb(var(--green-3)/.25)}.focus\:fill-green-3\/30:focus{fill:rgb(var(--green-3)/.3)}.focus\:fill-green-3\/40:focus{fill:rgb(var(--green-3)/.4)}.focus\:fill-green-3\/5:focus{fill:rgb(var(--green-3)/.05)}.focus\:fill-green-3\/50:focus{fill:rgb(var(--green-3)/.5)}.focus\:fill-green-3\/60:focus{fill:rgb(var(--green-3)/.6)}.focus\:fill-green-3\/70:focus{fill:rgb(var(--green-3)/.7)}.focus\:fill-green-3\/75:focus{fill:rgb(var(--green-3)/.75)}.focus\:fill-green-3\/80:focus{fill:rgb(var(--green-3)/.8)}.focus\:fill-green-3\/90:focus{fill:rgb(var(--green-3)/.9)}.focus\:fill-green-3\/95:focus{fill:rgb(var(--green-3)/.95)}.focus\:fill-green-4\/0:focus{fill:rgb(var(--green-4)/0)}.focus\:fill-green-4\/10:focus{fill:rgb(var(--green-4)/.1)}.focus\:fill-green-4\/100:focus{fill:rgb(var(--green-4)/1)}.focus\:fill-green-4\/20:focus{fill:rgb(var(--green-4)/.2)}.focus\:fill-green-4\/25:focus{fill:rgb(var(--green-4)/.25)}.focus\:fill-green-4\/30:focus{fill:rgb(var(--green-4)/.3)}.focus\:fill-green-4\/40:focus{fill:rgb(var(--green-4)/.4)}.focus\:fill-green-4\/5:focus{fill:rgb(var(--green-4)/.05)}.focus\:fill-green-4\/50:focus{fill:rgb(var(--green-4)/.5)}.focus\:fill-green-4\/60:focus{fill:rgb(var(--green-4)/.6)}.focus\:fill-green-4\/70:focus{fill:rgb(var(--green-4)/.7)}.focus\:fill-green-4\/75:focus{fill:rgb(var(--green-4)/.75)}.focus\:fill-green-4\/80:focus{fill:rgb(var(--green-4)/.8)}.focus\:fill-green-4\/90:focus{fill:rgb(var(--green-4)/.9)}.focus\:fill-green-4\/95:focus{fill:rgb(var(--green-4)/.95)}.focus\:fill-green-5\/0:focus{fill:rgb(var(--green-5)/0)}.focus\:fill-green-5\/10:focus{fill:rgb(var(--green-5)/.1)}.focus\:fill-green-5\/100:focus{fill:rgb(var(--green-5)/1)}.focus\:fill-green-5\/20:focus{fill:rgb(var(--green-5)/.2)}.focus\:fill-green-5\/25:focus{fill:rgb(var(--green-5)/.25)}.focus\:fill-green-5\/30:focus{fill:rgb(var(--green-5)/.3)}.focus\:fill-green-5\/40:focus{fill:rgb(var(--green-5)/.4)}.focus\:fill-green-5\/5:focus{fill:rgb(var(--green-5)/.05)}.focus\:fill-green-5\/50:focus{fill:rgb(var(--green-5)/.5)}.focus\:fill-green-5\/60:focus{fill:rgb(var(--green-5)/.6)}.focus\:fill-green-5\/70:focus{fill:rgb(var(--green-5)/.7)}.focus\:fill-green-5\/75:focus{fill:rgb(var(--green-5)/.75)}.focus\:fill-green-5\/80:focus{fill:rgb(var(--green-5)/.8)}.focus\:fill-green-5\/90:focus{fill:rgb(var(--green-5)/.9)}.focus\:fill-green-5\/95:focus{fill:rgb(var(--green-5)/.95)}.focus\:fill-green-6\/0:focus{fill:rgb(var(--green-6)/0)}.focus\:fill-green-6\/10:focus{fill:rgb(var(--green-6)/.1)}.focus\:fill-green-6\/100:focus{fill:rgb(var(--green-6)/1)}.focus\:fill-green-6\/20:focus{fill:rgb(var(--green-6)/.2)}.focus\:fill-green-6\/25:focus{fill:rgb(var(--green-6)/.25)}.focus\:fill-green-6\/30:focus{fill:rgb(var(--green-6)/.3)}.focus\:fill-green-6\/40:focus{fill:rgb(var(--green-6)/.4)}.focus\:fill-green-6\/5:focus{fill:rgb(var(--green-6)/.05)}.focus\:fill-green-6\/50:focus{fill:rgb(var(--green-6)/.5)}.focus\:fill-green-6\/60:focus{fill:rgb(var(--green-6)/.6)}.focus\:fill-green-6\/70:focus{fill:rgb(var(--green-6)/.7)}.focus\:fill-green-6\/75:focus{fill:rgb(var(--green-6)/.75)}.focus\:fill-green-6\/80:focus{fill:rgb(var(--green-6)/.8)}.focus\:fill-green-6\/90:focus{fill:rgb(var(--green-6)/.9)}.focus\:fill-green-6\/95:focus{fill:rgb(var(--green-6)/.95)}.focus\:fill-green-7\/0:focus{fill:rgb(var(--green-7)/0)}.focus\:fill-green-7\/10:focus{fill:rgb(var(--green-7)/.1)}.focus\:fill-green-7\/100:focus{fill:rgb(var(--green-7)/1)}.focus\:fill-green-7\/20:focus{fill:rgb(var(--green-7)/.2)}.focus\:fill-green-7\/25:focus{fill:rgb(var(--green-7)/.25)}.focus\:fill-green-7\/30:focus{fill:rgb(var(--green-7)/.3)}.focus\:fill-green-7\/40:focus{fill:rgb(var(--green-7)/.4)}.focus\:fill-green-7\/5:focus{fill:rgb(var(--green-7)/.05)}.focus\:fill-green-7\/50:focus{fill:rgb(var(--green-7)/.5)}.focus\:fill-green-7\/60:focus{fill:rgb(var(--green-7)/.6)}.focus\:fill-green-7\/70:focus{fill:rgb(var(--green-7)/.7)}.focus\:fill-green-7\/75:focus{fill:rgb(var(--green-7)/.75)}.focus\:fill-green-7\/80:focus{fill:rgb(var(--green-7)/.8)}.focus\:fill-green-7\/90:focus{fill:rgb(var(--green-7)/.9)}.focus\:fill-green-7\/95:focus{fill:rgb(var(--green-7)/.95)}.focus\:fill-green-8\/0:focus{fill:rgb(var(--green-8)/0)}.focus\:fill-green-8\/10:focus{fill:rgb(var(--green-8)/.1)}.focus\:fill-green-8\/100:focus{fill:rgb(var(--green-8)/1)}.focus\:fill-green-8\/20:focus{fill:rgb(var(--green-8)/.2)}.focus\:fill-green-8\/25:focus{fill:rgb(var(--green-8)/.25)}.focus\:fill-green-8\/30:focus{fill:rgb(var(--green-8)/.3)}.focus\:fill-green-8\/40:focus{fill:rgb(var(--green-8)/.4)}.focus\:fill-green-8\/5:focus{fill:rgb(var(--green-8)/.05)}.focus\:fill-green-8\/50:focus{fill:rgb(var(--green-8)/.5)}.focus\:fill-green-8\/60:focus{fill:rgb(var(--green-8)/.6)}.focus\:fill-green-8\/70:focus{fill:rgb(var(--green-8)/.7)}.focus\:fill-green-8\/75:focus{fill:rgb(var(--green-8)/.75)}.focus\:fill-green-8\/80:focus{fill:rgb(var(--green-8)/.8)}.focus\:fill-green-8\/90:focus{fill:rgb(var(--green-8)/.9)}.focus\:fill-green-8\/95:focus{fill:rgb(var(--green-8)/.95)}.focus\:fill-green-9\/0:focus{fill:rgb(var(--green-9)/0)}.focus\:fill-green-9\/10:focus{fill:rgb(var(--green-9)/.1)}.focus\:fill-green-9\/100:focus{fill:rgb(var(--green-9)/1)}.focus\:fill-green-9\/20:focus{fill:rgb(var(--green-9)/.2)}.focus\:fill-green-9\/25:focus{fill:rgb(var(--green-9)/.25)}.focus\:fill-green-9\/30:focus{fill:rgb(var(--green-9)/.3)}.focus\:fill-green-9\/40:focus{fill:rgb(var(--green-9)/.4)}.focus\:fill-green-9\/5:focus{fill:rgb(var(--green-9)/.05)}.focus\:fill-green-9\/50:focus{fill:rgb(var(--green-9)/.5)}.focus\:fill-green-9\/60:focus{fill:rgb(var(--green-9)/.6)}.focus\:fill-green-9\/70:focus{fill:rgb(var(--green-9)/.7)}.focus\:fill-green-9\/75:focus{fill:rgb(var(--green-9)/.75)}.focus\:fill-green-9\/80:focus{fill:rgb(var(--green-9)/.8)}.focus\:fill-green-9\/90:focus{fill:rgb(var(--green-9)/.9)}.focus\:fill-green-9\/95:focus{fill:rgb(var(--green-9)/.95)}.focus\:fill-pink-1\/0:focus{fill:rgb(var(--pink-1)/0)}.focus\:fill-pink-1\/10:focus{fill:rgb(var(--pink-1)/.1)}.focus\:fill-pink-1\/100:focus{fill:rgb(var(--pink-1)/1)}.focus\:fill-pink-1\/20:focus{fill:rgb(var(--pink-1)/.2)}.focus\:fill-pink-1\/25:focus{fill:rgb(var(--pink-1)/.25)}.focus\:fill-pink-1\/30:focus{fill:rgb(var(--pink-1)/.3)}.focus\:fill-pink-1\/40:focus{fill:rgb(var(--pink-1)/.4)}.focus\:fill-pink-1\/5:focus{fill:rgb(var(--pink-1)/.05)}.focus\:fill-pink-1\/50:focus{fill:rgb(var(--pink-1)/.5)}.focus\:fill-pink-1\/60:focus{fill:rgb(var(--pink-1)/.6)}.focus\:fill-pink-1\/70:focus{fill:rgb(var(--pink-1)/.7)}.focus\:fill-pink-1\/75:focus{fill:rgb(var(--pink-1)/.75)}.focus\:fill-pink-1\/80:focus{fill:rgb(var(--pink-1)/.8)}.focus\:fill-pink-1\/90:focus{fill:rgb(var(--pink-1)/.9)}.focus\:fill-pink-1\/95:focus{fill:rgb(var(--pink-1)/.95)}.focus\:fill-pink-10\/0:focus{fill:rgb(var(--pink-10)/0)}.focus\:fill-pink-10\/10:focus{fill:rgb(var(--pink-10)/.1)}.focus\:fill-pink-10\/100:focus{fill:rgb(var(--pink-10)/1)}.focus\:fill-pink-10\/20:focus{fill:rgb(var(--pink-10)/.2)}.focus\:fill-pink-10\/25:focus{fill:rgb(var(--pink-10)/.25)}.focus\:fill-pink-10\/30:focus{fill:rgb(var(--pink-10)/.3)}.focus\:fill-pink-10\/40:focus{fill:rgb(var(--pink-10)/.4)}.focus\:fill-pink-10\/5:focus{fill:rgb(var(--pink-10)/.05)}.focus\:fill-pink-10\/50:focus{fill:rgb(var(--pink-10)/.5)}.focus\:fill-pink-10\/60:focus{fill:rgb(var(--pink-10)/.6)}.focus\:fill-pink-10\/70:focus{fill:rgb(var(--pink-10)/.7)}.focus\:fill-pink-10\/75:focus{fill:rgb(var(--pink-10)/.75)}.focus\:fill-pink-10\/80:focus{fill:rgb(var(--pink-10)/.8)}.focus\:fill-pink-10\/90:focus{fill:rgb(var(--pink-10)/.9)}.focus\:fill-pink-10\/95:focus{fill:rgb(var(--pink-10)/.95)}.focus\:fill-pink-2\/0:focus{fill:rgb(var(--pink-2)/0)}.focus\:fill-pink-2\/10:focus{fill:rgb(var(--pink-2)/.1)}.focus\:fill-pink-2\/100:focus{fill:rgb(var(--pink-2)/1)}.focus\:fill-pink-2\/20:focus{fill:rgb(var(--pink-2)/.2)}.focus\:fill-pink-2\/25:focus{fill:rgb(var(--pink-2)/.25)}.focus\:fill-pink-2\/30:focus{fill:rgb(var(--pink-2)/.3)}.focus\:fill-pink-2\/40:focus{fill:rgb(var(--pink-2)/.4)}.focus\:fill-pink-2\/5:focus{fill:rgb(var(--pink-2)/.05)}.focus\:fill-pink-2\/50:focus{fill:rgb(var(--pink-2)/.5)}.focus\:fill-pink-2\/60:focus{fill:rgb(var(--pink-2)/.6)}.focus\:fill-pink-2\/70:focus{fill:rgb(var(--pink-2)/.7)}.focus\:fill-pink-2\/75:focus{fill:rgb(var(--pink-2)/.75)}.focus\:fill-pink-2\/80:focus{fill:rgb(var(--pink-2)/.8)}.focus\:fill-pink-2\/90:focus{fill:rgb(var(--pink-2)/.9)}.focus\:fill-pink-2\/95:focus{fill:rgb(var(--pink-2)/.95)}.focus\:fill-pink-3\/0:focus{fill:rgb(var(--pink-3)/0)}.focus\:fill-pink-3\/10:focus{fill:rgb(var(--pink-3)/.1)}.focus\:fill-pink-3\/100:focus{fill:rgb(var(--pink-3)/1)}.focus\:fill-pink-3\/20:focus{fill:rgb(var(--pink-3)/.2)}.focus\:fill-pink-3\/25:focus{fill:rgb(var(--pink-3)/.25)}.focus\:fill-pink-3\/30:focus{fill:rgb(var(--pink-3)/.3)}.focus\:fill-pink-3\/40:focus{fill:rgb(var(--pink-3)/.4)}.focus\:fill-pink-3\/5:focus{fill:rgb(var(--pink-3)/.05)}.focus\:fill-pink-3\/50:focus{fill:rgb(var(--pink-3)/.5)}.focus\:fill-pink-3\/60:focus{fill:rgb(var(--pink-3)/.6)}.focus\:fill-pink-3\/70:focus{fill:rgb(var(--pink-3)/.7)}.focus\:fill-pink-3\/75:focus{fill:rgb(var(--pink-3)/.75)}.focus\:fill-pink-3\/80:focus{fill:rgb(var(--pink-3)/.8)}.focus\:fill-pink-3\/90:focus{fill:rgb(var(--pink-3)/.9)}.focus\:fill-pink-3\/95:focus{fill:rgb(var(--pink-3)/.95)}.focus\:fill-pink-4\/0:focus{fill:rgb(var(--pink-4)/0)}.focus\:fill-pink-4\/10:focus{fill:rgb(var(--pink-4)/.1)}.focus\:fill-pink-4\/100:focus{fill:rgb(var(--pink-4)/1)}.focus\:fill-pink-4\/20:focus{fill:rgb(var(--pink-4)/.2)}.focus\:fill-pink-4\/25:focus{fill:rgb(var(--pink-4)/.25)}.focus\:fill-pink-4\/30:focus{fill:rgb(var(--pink-4)/.3)}.focus\:fill-pink-4\/40:focus{fill:rgb(var(--pink-4)/.4)}.focus\:fill-pink-4\/5:focus{fill:rgb(var(--pink-4)/.05)}.focus\:fill-pink-4\/50:focus{fill:rgb(var(--pink-4)/.5)}.focus\:fill-pink-4\/60:focus{fill:rgb(var(--pink-4)/.6)}.focus\:fill-pink-4\/70:focus{fill:rgb(var(--pink-4)/.7)}.focus\:fill-pink-4\/75:focus{fill:rgb(var(--pink-4)/.75)}.focus\:fill-pink-4\/80:focus{fill:rgb(var(--pink-4)/.8)}.focus\:fill-pink-4\/90:focus{fill:rgb(var(--pink-4)/.9)}.focus\:fill-pink-4\/95:focus{fill:rgb(var(--pink-4)/.95)}.focus\:fill-pink-5\/0:focus{fill:rgb(var(--pink-5)/0)}.focus\:fill-pink-5\/10:focus{fill:rgb(var(--pink-5)/.1)}.focus\:fill-pink-5\/100:focus{fill:rgb(var(--pink-5)/1)}.focus\:fill-pink-5\/20:focus{fill:rgb(var(--pink-5)/.2)}.focus\:fill-pink-5\/25:focus{fill:rgb(var(--pink-5)/.25)}.focus\:fill-pink-5\/30:focus{fill:rgb(var(--pink-5)/.3)}.focus\:fill-pink-5\/40:focus{fill:rgb(var(--pink-5)/.4)}.focus\:fill-pink-5\/5:focus{fill:rgb(var(--pink-5)/.05)}.focus\:fill-pink-5\/50:focus{fill:rgb(var(--pink-5)/.5)}.focus\:fill-pink-5\/60:focus{fill:rgb(var(--pink-5)/.6)}.focus\:fill-pink-5\/70:focus{fill:rgb(var(--pink-5)/.7)}.focus\:fill-pink-5\/75:focus{fill:rgb(var(--pink-5)/.75)}.focus\:fill-pink-5\/80:focus{fill:rgb(var(--pink-5)/.8)}.focus\:fill-pink-5\/90:focus{fill:rgb(var(--pink-5)/.9)}.focus\:fill-pink-5\/95:focus{fill:rgb(var(--pink-5)/.95)}.focus\:fill-pink-6\/0:focus{fill:rgb(var(--pink-6)/0)}.focus\:fill-pink-6\/10:focus{fill:rgb(var(--pink-6)/.1)}.focus\:fill-pink-6\/100:focus{fill:rgb(var(--pink-6)/1)}.focus\:fill-pink-6\/20:focus{fill:rgb(var(--pink-6)/.2)}.focus\:fill-pink-6\/25:focus{fill:rgb(var(--pink-6)/.25)}.focus\:fill-pink-6\/30:focus{fill:rgb(var(--pink-6)/.3)}.focus\:fill-pink-6\/40:focus{fill:rgb(var(--pink-6)/.4)}.focus\:fill-pink-6\/5:focus{fill:rgb(var(--pink-6)/.05)}.focus\:fill-pink-6\/50:focus{fill:rgb(var(--pink-6)/.5)}.focus\:fill-pink-6\/60:focus{fill:rgb(var(--pink-6)/.6)}.focus\:fill-pink-6\/70:focus{fill:rgb(var(--pink-6)/.7)}.focus\:fill-pink-6\/75:focus{fill:rgb(var(--pink-6)/.75)}.focus\:fill-pink-6\/80:focus{fill:rgb(var(--pink-6)/.8)}.focus\:fill-pink-6\/90:focus{fill:rgb(var(--pink-6)/.9)}.focus\:fill-pink-6\/95:focus{fill:rgb(var(--pink-6)/.95)}.focus\:fill-pink-7\/0:focus{fill:rgb(var(--pink-7)/0)}.focus\:fill-pink-7\/10:focus{fill:rgb(var(--pink-7)/.1)}.focus\:fill-pink-7\/100:focus{fill:rgb(var(--pink-7)/1)}.focus\:fill-pink-7\/20:focus{fill:rgb(var(--pink-7)/.2)}.focus\:fill-pink-7\/25:focus{fill:rgb(var(--pink-7)/.25)}.focus\:fill-pink-7\/30:focus{fill:rgb(var(--pink-7)/.3)}.focus\:fill-pink-7\/40:focus{fill:rgb(var(--pink-7)/.4)}.focus\:fill-pink-7\/5:focus{fill:rgb(var(--pink-7)/.05)}.focus\:fill-pink-7\/50:focus{fill:rgb(var(--pink-7)/.5)}.focus\:fill-pink-7\/60:focus{fill:rgb(var(--pink-7)/.6)}.focus\:fill-pink-7\/70:focus{fill:rgb(var(--pink-7)/.7)}.focus\:fill-pink-7\/75:focus{fill:rgb(var(--pink-7)/.75)}.focus\:fill-pink-7\/80:focus{fill:rgb(var(--pink-7)/.8)}.focus\:fill-pink-7\/90:focus{fill:rgb(var(--pink-7)/.9)}.focus\:fill-pink-7\/95:focus{fill:rgb(var(--pink-7)/.95)}.focus\:fill-pink-8\/0:focus{fill:rgb(var(--pink-8)/0)}.focus\:fill-pink-8\/10:focus{fill:rgb(var(--pink-8)/.1)}.focus\:fill-pink-8\/100:focus{fill:rgb(var(--pink-8)/1)}.focus\:fill-pink-8\/20:focus{fill:rgb(var(--pink-8)/.2)}.focus\:fill-pink-8\/25:focus{fill:rgb(var(--pink-8)/.25)}.focus\:fill-pink-8\/30:focus{fill:rgb(var(--pink-8)/.3)}.focus\:fill-pink-8\/40:focus{fill:rgb(var(--pink-8)/.4)}.focus\:fill-pink-8\/5:focus{fill:rgb(var(--pink-8)/.05)}.focus\:fill-pink-8\/50:focus{fill:rgb(var(--pink-8)/.5)}.focus\:fill-pink-8\/60:focus{fill:rgb(var(--pink-8)/.6)}.focus\:fill-pink-8\/70:focus{fill:rgb(var(--pink-8)/.7)}.focus\:fill-pink-8\/75:focus{fill:rgb(var(--pink-8)/.75)}.focus\:fill-pink-8\/80:focus{fill:rgb(var(--pink-8)/.8)}.focus\:fill-pink-8\/90:focus{fill:rgb(var(--pink-8)/.9)}.focus\:fill-pink-8\/95:focus{fill:rgb(var(--pink-8)/.95)}.focus\:fill-pink-9\/0:focus{fill:rgb(var(--pink-9)/0)}.focus\:fill-pink-9\/10:focus{fill:rgb(var(--pink-9)/.1)}.focus\:fill-pink-9\/100:focus{fill:rgb(var(--pink-9)/1)}.focus\:fill-pink-9\/20:focus{fill:rgb(var(--pink-9)/.2)}.focus\:fill-pink-9\/25:focus{fill:rgb(var(--pink-9)/.25)}.focus\:fill-pink-9\/30:focus{fill:rgb(var(--pink-9)/.3)}.focus\:fill-pink-9\/40:focus{fill:rgb(var(--pink-9)/.4)}.focus\:fill-pink-9\/5:focus{fill:rgb(var(--pink-9)/.05)}.focus\:fill-pink-9\/50:focus{fill:rgb(var(--pink-9)/.5)}.focus\:fill-pink-9\/60:focus{fill:rgb(var(--pink-9)/.6)}.focus\:fill-pink-9\/70:focus{fill:rgb(var(--pink-9)/.7)}.focus\:fill-pink-9\/75:focus{fill:rgb(var(--pink-9)/.75)}.focus\:fill-pink-9\/80:focus{fill:rgb(var(--pink-9)/.8)}.focus\:fill-pink-9\/90:focus{fill:rgb(var(--pink-9)/.9)}.focus\:fill-pink-9\/95:focus{fill:rgb(var(--pink-9)/.95)}.focus\:fill-primary:focus{fill:rgb(var(--primary))}.focus\:fill-primary\/0:focus{fill:rgb(var(--primary)/0)}.focus\:fill-primary\/10:focus{fill:rgb(var(--primary)/.1)}.focus\:fill-primary\/100:focus{fill:rgb(var(--primary)/1)}.focus\:fill-primary\/20:focus{fill:rgb(var(--primary)/.2)}.focus\:fill-primary\/25:focus{fill:rgb(var(--primary)/.25)}.focus\:fill-primary\/30:focus{fill:rgb(var(--primary)/.3)}.focus\:fill-primary\/40:focus{fill:rgb(var(--primary)/.4)}.focus\:fill-primary\/5:focus{fill:rgb(var(--primary)/.05)}.focus\:fill-primary\/50:focus{fill:rgb(var(--primary)/.5)}.focus\:fill-primary\/60:focus{fill:rgb(var(--primary)/.6)}.focus\:fill-primary\/70:focus{fill:rgb(var(--primary)/.7)}.focus\:fill-primary\/75:focus{fill:rgb(var(--primary)/.75)}.focus\:fill-primary\/80:focus{fill:rgb(var(--primary)/.8)}.focus\:fill-primary\/90:focus{fill:rgb(var(--primary)/.9)}.focus\:fill-primary\/95:focus{fill:rgb(var(--primary)/.95)}.focus\:fill-purple-1\/0:focus{fill:rgb(var(--purple-1)/0)}.focus\:fill-purple-1\/10:focus{fill:rgb(var(--purple-1)/.1)}.focus\:fill-purple-1\/100:focus{fill:rgb(var(--purple-1)/1)}.focus\:fill-purple-1\/20:focus{fill:rgb(var(--purple-1)/.2)}.focus\:fill-purple-1\/25:focus{fill:rgb(var(--purple-1)/.25)}.focus\:fill-purple-1\/30:focus{fill:rgb(var(--purple-1)/.3)}.focus\:fill-purple-1\/40:focus{fill:rgb(var(--purple-1)/.4)}.focus\:fill-purple-1\/5:focus{fill:rgb(var(--purple-1)/.05)}.focus\:fill-purple-1\/50:focus{fill:rgb(var(--purple-1)/.5)}.focus\:fill-purple-1\/60:focus{fill:rgb(var(--purple-1)/.6)}.focus\:fill-purple-1\/70:focus{fill:rgb(var(--purple-1)/.7)}.focus\:fill-purple-1\/75:focus{fill:rgb(var(--purple-1)/.75)}.focus\:fill-purple-1\/80:focus{fill:rgb(var(--purple-1)/.8)}.focus\:fill-purple-1\/90:focus{fill:rgb(var(--purple-1)/.9)}.focus\:fill-purple-1\/95:focus{fill:rgb(var(--purple-1)/.95)}.focus\:fill-purple-10\/0:focus{fill:rgb(var(--purple-10)/0)}.focus\:fill-purple-10\/10:focus{fill:rgb(var(--purple-10)/.1)}.focus\:fill-purple-10\/100:focus{fill:rgb(var(--purple-10)/1)}.focus\:fill-purple-10\/20:focus{fill:rgb(var(--purple-10)/.2)}.focus\:fill-purple-10\/25:focus{fill:rgb(var(--purple-10)/.25)}.focus\:fill-purple-10\/30:focus{fill:rgb(var(--purple-10)/.3)}.focus\:fill-purple-10\/40:focus{fill:rgb(var(--purple-10)/.4)}.focus\:fill-purple-10\/5:focus{fill:rgb(var(--purple-10)/.05)}.focus\:fill-purple-10\/50:focus{fill:rgb(var(--purple-10)/.5)}.focus\:fill-purple-10\/60:focus{fill:rgb(var(--purple-10)/.6)}.focus\:fill-purple-10\/70:focus{fill:rgb(var(--purple-10)/.7)}.focus\:fill-purple-10\/75:focus{fill:rgb(var(--purple-10)/.75)}.focus\:fill-purple-10\/80:focus{fill:rgb(var(--purple-10)/.8)}.focus\:fill-purple-10\/90:focus{fill:rgb(var(--purple-10)/.9)}.focus\:fill-purple-10\/95:focus{fill:rgb(var(--purple-10)/.95)}.focus\:fill-purple-2\/0:focus{fill:rgb(var(--purple-2)/0)}.focus\:fill-purple-2\/10:focus{fill:rgb(var(--purple-2)/.1)}.focus\:fill-purple-2\/100:focus{fill:rgb(var(--purple-2)/1)}.focus\:fill-purple-2\/20:focus{fill:rgb(var(--purple-2)/.2)}.focus\:fill-purple-2\/25:focus{fill:rgb(var(--purple-2)/.25)}.focus\:fill-purple-2\/30:focus{fill:rgb(var(--purple-2)/.3)}.focus\:fill-purple-2\/40:focus{fill:rgb(var(--purple-2)/.4)}.focus\:fill-purple-2\/5:focus{fill:rgb(var(--purple-2)/.05)}.focus\:fill-purple-2\/50:focus{fill:rgb(var(--purple-2)/.5)}.focus\:fill-purple-2\/60:focus{fill:rgb(var(--purple-2)/.6)}.focus\:fill-purple-2\/70:focus{fill:rgb(var(--purple-2)/.7)}.focus\:fill-purple-2\/75:focus{fill:rgb(var(--purple-2)/.75)}.focus\:fill-purple-2\/80:focus{fill:rgb(var(--purple-2)/.8)}.focus\:fill-purple-2\/90:focus{fill:rgb(var(--purple-2)/.9)}.focus\:fill-purple-2\/95:focus{fill:rgb(var(--purple-2)/.95)}.focus\:fill-purple-3\/0:focus{fill:rgb(var(--purple-3)/0)}.focus\:fill-purple-3\/10:focus{fill:rgb(var(--purple-3)/.1)}.focus\:fill-purple-3\/100:focus{fill:rgb(var(--purple-3)/1)}.focus\:fill-purple-3\/20:focus{fill:rgb(var(--purple-3)/.2)}.focus\:fill-purple-3\/25:focus{fill:rgb(var(--purple-3)/.25)}.focus\:fill-purple-3\/30:focus{fill:rgb(var(--purple-3)/.3)}.focus\:fill-purple-3\/40:focus{fill:rgb(var(--purple-3)/.4)}.focus\:fill-purple-3\/5:focus{fill:rgb(var(--purple-3)/.05)}.focus\:fill-purple-3\/50:focus{fill:rgb(var(--purple-3)/.5)}.focus\:fill-purple-3\/60:focus{fill:rgb(var(--purple-3)/.6)}.focus\:fill-purple-3\/70:focus{fill:rgb(var(--purple-3)/.7)}.focus\:fill-purple-3\/75:focus{fill:rgb(var(--purple-3)/.75)}.focus\:fill-purple-3\/80:focus{fill:rgb(var(--purple-3)/.8)}.focus\:fill-purple-3\/90:focus{fill:rgb(var(--purple-3)/.9)}.focus\:fill-purple-3\/95:focus{fill:rgb(var(--purple-3)/.95)}.focus\:fill-purple-4\/0:focus{fill:rgb(var(--purple-4)/0)}.focus\:fill-purple-4\/10:focus{fill:rgb(var(--purple-4)/.1)}.focus\:fill-purple-4\/100:focus{fill:rgb(var(--purple-4)/1)}.focus\:fill-purple-4\/20:focus{fill:rgb(var(--purple-4)/.2)}.focus\:fill-purple-4\/25:focus{fill:rgb(var(--purple-4)/.25)}.focus\:fill-purple-4\/30:focus{fill:rgb(var(--purple-4)/.3)}.focus\:fill-purple-4\/40:focus{fill:rgb(var(--purple-4)/.4)}.focus\:fill-purple-4\/5:focus{fill:rgb(var(--purple-4)/.05)}.focus\:fill-purple-4\/50:focus{fill:rgb(var(--purple-4)/.5)}.focus\:fill-purple-4\/60:focus{fill:rgb(var(--purple-4)/.6)}.focus\:fill-purple-4\/70:focus{fill:rgb(var(--purple-4)/.7)}.focus\:fill-purple-4\/75:focus{fill:rgb(var(--purple-4)/.75)}.focus\:fill-purple-4\/80:focus{fill:rgb(var(--purple-4)/.8)}.focus\:fill-purple-4\/90:focus{fill:rgb(var(--purple-4)/.9)}.focus\:fill-purple-4\/95:focus{fill:rgb(var(--purple-4)/.95)}.focus\:fill-purple-5\/0:focus{fill:rgb(var(--purple-5)/0)}.focus\:fill-purple-5\/10:focus{fill:rgb(var(--purple-5)/.1)}.focus\:fill-purple-5\/100:focus{fill:rgb(var(--purple-5)/1)}.focus\:fill-purple-5\/20:focus{fill:rgb(var(--purple-5)/.2)}.focus\:fill-purple-5\/25:focus{fill:rgb(var(--purple-5)/.25)}.focus\:fill-purple-5\/30:focus{fill:rgb(var(--purple-5)/.3)}.focus\:fill-purple-5\/40:focus{fill:rgb(var(--purple-5)/.4)}.focus\:fill-purple-5\/5:focus{fill:rgb(var(--purple-5)/.05)}.focus\:fill-purple-5\/50:focus{fill:rgb(var(--purple-5)/.5)}.focus\:fill-purple-5\/60:focus{fill:rgb(var(--purple-5)/.6)}.focus\:fill-purple-5\/70:focus{fill:rgb(var(--purple-5)/.7)}.focus\:fill-purple-5\/75:focus{fill:rgb(var(--purple-5)/.75)}.focus\:fill-purple-5\/80:focus{fill:rgb(var(--purple-5)/.8)}.focus\:fill-purple-5\/90:focus{fill:rgb(var(--purple-5)/.9)}.focus\:fill-purple-5\/95:focus{fill:rgb(var(--purple-5)/.95)}.focus\:fill-purple-6\/0:focus{fill:rgb(var(--purple-6)/0)}.focus\:fill-purple-6\/10:focus{fill:rgb(var(--purple-6)/.1)}.focus\:fill-purple-6\/100:focus{fill:rgb(var(--purple-6)/1)}.focus\:fill-purple-6\/20:focus{fill:rgb(var(--purple-6)/.2)}.focus\:fill-purple-6\/25:focus{fill:rgb(var(--purple-6)/.25)}.focus\:fill-purple-6\/30:focus{fill:rgb(var(--purple-6)/.3)}.focus\:fill-purple-6\/40:focus{fill:rgb(var(--purple-6)/.4)}.focus\:fill-purple-6\/5:focus{fill:rgb(var(--purple-6)/.05)}.focus\:fill-purple-6\/50:focus{fill:rgb(var(--purple-6)/.5)}.focus\:fill-purple-6\/60:focus{fill:rgb(var(--purple-6)/.6)}.focus\:fill-purple-6\/70:focus{fill:rgb(var(--purple-6)/.7)}.focus\:fill-purple-6\/75:focus{fill:rgb(var(--purple-6)/.75)}.focus\:fill-purple-6\/80:focus{fill:rgb(var(--purple-6)/.8)}.focus\:fill-purple-6\/90:focus{fill:rgb(var(--purple-6)/.9)}.focus\:fill-purple-6\/95:focus{fill:rgb(var(--purple-6)/.95)}.focus\:fill-purple-7\/0:focus{fill:rgb(var(--purple-7)/0)}.focus\:fill-purple-7\/10:focus{fill:rgb(var(--purple-7)/.1)}.focus\:fill-purple-7\/100:focus{fill:rgb(var(--purple-7)/1)}.focus\:fill-purple-7\/20:focus{fill:rgb(var(--purple-7)/.2)}.focus\:fill-purple-7\/25:focus{fill:rgb(var(--purple-7)/.25)}.focus\:fill-purple-7\/30:focus{fill:rgb(var(--purple-7)/.3)}.focus\:fill-purple-7\/40:focus{fill:rgb(var(--purple-7)/.4)}.focus\:fill-purple-7\/5:focus{fill:rgb(var(--purple-7)/.05)}.focus\:fill-purple-7\/50:focus{fill:rgb(var(--purple-7)/.5)}.focus\:fill-purple-7\/60:focus{fill:rgb(var(--purple-7)/.6)}.focus\:fill-purple-7\/70:focus{fill:rgb(var(--purple-7)/.7)}.focus\:fill-purple-7\/75:focus{fill:rgb(var(--purple-7)/.75)}.focus\:fill-purple-7\/80:focus{fill:rgb(var(--purple-7)/.8)}.focus\:fill-purple-7\/90:focus{fill:rgb(var(--purple-7)/.9)}.focus\:fill-purple-7\/95:focus{fill:rgb(var(--purple-7)/.95)}.focus\:fill-purple-8\/0:focus{fill:rgb(var(--purple-8)/0)}.focus\:fill-purple-8\/10:focus{fill:rgb(var(--purple-8)/.1)}.focus\:fill-purple-8\/100:focus{fill:rgb(var(--purple-8)/1)}.focus\:fill-purple-8\/20:focus{fill:rgb(var(--purple-8)/.2)}.focus\:fill-purple-8\/25:focus{fill:rgb(var(--purple-8)/.25)}.focus\:fill-purple-8\/30:focus{fill:rgb(var(--purple-8)/.3)}.focus\:fill-purple-8\/40:focus{fill:rgb(var(--purple-8)/.4)}.focus\:fill-purple-8\/5:focus{fill:rgb(var(--purple-8)/.05)}.focus\:fill-purple-8\/50:focus{fill:rgb(var(--purple-8)/.5)}.focus\:fill-purple-8\/60:focus{fill:rgb(var(--purple-8)/.6)}.focus\:fill-purple-8\/70:focus{fill:rgb(var(--purple-8)/.7)}.focus\:fill-purple-8\/75:focus{fill:rgb(var(--purple-8)/.75)}.focus\:fill-purple-8\/80:focus{fill:rgb(var(--purple-8)/.8)}.focus\:fill-purple-8\/90:focus{fill:rgb(var(--purple-8)/.9)}.focus\:fill-purple-8\/95:focus{fill:rgb(var(--purple-8)/.95)}.focus\:fill-purple-9\/0:focus{fill:rgb(var(--purple-9)/0)}.focus\:fill-purple-9\/10:focus{fill:rgb(var(--purple-9)/.1)}.focus\:fill-purple-9\/100:focus{fill:rgb(var(--purple-9)/1)}.focus\:fill-purple-9\/20:focus{fill:rgb(var(--purple-9)/.2)}.focus\:fill-purple-9\/25:focus{fill:rgb(var(--purple-9)/.25)}.focus\:fill-purple-9\/30:focus{fill:rgb(var(--purple-9)/.3)}.focus\:fill-purple-9\/40:focus{fill:rgb(var(--purple-9)/.4)}.focus\:fill-purple-9\/5:focus{fill:rgb(var(--purple-9)/.05)}.focus\:fill-purple-9\/50:focus{fill:rgb(var(--purple-9)/.5)}.focus\:fill-purple-9\/60:focus{fill:rgb(var(--purple-9)/.6)}.focus\:fill-purple-9\/70:focus{fill:rgb(var(--purple-9)/.7)}.focus\:fill-purple-9\/75:focus{fill:rgb(var(--purple-9)/.75)}.focus\:fill-purple-9\/80:focus{fill:rgb(var(--purple-9)/.8)}.focus\:fill-purple-9\/90:focus{fill:rgb(var(--purple-9)/.9)}.focus\:fill-purple-9\/95:focus{fill:rgb(var(--purple-9)/.95)}.focus\:fill-red-1\/0:focus{fill:rgb(var(--red-1)/0)}.focus\:fill-red-1\/10:focus{fill:rgb(var(--red-1)/.1)}.focus\:fill-red-1\/100:focus{fill:rgb(var(--red-1)/1)}.focus\:fill-red-1\/20:focus{fill:rgb(var(--red-1)/.2)}.focus\:fill-red-1\/25:focus{fill:rgb(var(--red-1)/.25)}.focus\:fill-red-1\/30:focus{fill:rgb(var(--red-1)/.3)}.focus\:fill-red-1\/40:focus{fill:rgb(var(--red-1)/.4)}.focus\:fill-red-1\/5:focus{fill:rgb(var(--red-1)/.05)}.focus\:fill-red-1\/50:focus{fill:rgb(var(--red-1)/.5)}.focus\:fill-red-1\/60:focus{fill:rgb(var(--red-1)/.6)}.focus\:fill-red-1\/70:focus{fill:rgb(var(--red-1)/.7)}.focus\:fill-red-1\/75:focus{fill:rgb(var(--red-1)/.75)}.focus\:fill-red-1\/80:focus{fill:rgb(var(--red-1)/.8)}.focus\:fill-red-1\/90:focus{fill:rgb(var(--red-1)/.9)}.focus\:fill-red-1\/95:focus{fill:rgb(var(--red-1)/.95)}.focus\:fill-red-10\/0:focus{fill:rgb(var(--red-10)/0)}.focus\:fill-red-10\/10:focus{fill:rgb(var(--red-10)/.1)}.focus\:fill-red-10\/100:focus{fill:rgb(var(--red-10)/1)}.focus\:fill-red-10\/20:focus{fill:rgb(var(--red-10)/.2)}.focus\:fill-red-10\/25:focus{fill:rgb(var(--red-10)/.25)}.focus\:fill-red-10\/30:focus{fill:rgb(var(--red-10)/.3)}.focus\:fill-red-10\/40:focus{fill:rgb(var(--red-10)/.4)}.focus\:fill-red-10\/5:focus{fill:rgb(var(--red-10)/.05)}.focus\:fill-red-10\/50:focus{fill:rgb(var(--red-10)/.5)}.focus\:fill-red-10\/60:focus{fill:rgb(var(--red-10)/.6)}.focus\:fill-red-10\/70:focus{fill:rgb(var(--red-10)/.7)}.focus\:fill-red-10\/75:focus{fill:rgb(var(--red-10)/.75)}.focus\:fill-red-10\/80:focus{fill:rgb(var(--red-10)/.8)}.focus\:fill-red-10\/90:focus{fill:rgb(var(--red-10)/.9)}.focus\:fill-red-10\/95:focus{fill:rgb(var(--red-10)/.95)}.focus\:fill-red-2\/0:focus{fill:rgb(var(--red-2)/0)}.focus\:fill-red-2\/10:focus{fill:rgb(var(--red-2)/.1)}.focus\:fill-red-2\/100:focus{fill:rgb(var(--red-2)/1)}.focus\:fill-red-2\/20:focus{fill:rgb(var(--red-2)/.2)}.focus\:fill-red-2\/25:focus{fill:rgb(var(--red-2)/.25)}.focus\:fill-red-2\/30:focus{fill:rgb(var(--red-2)/.3)}.focus\:fill-red-2\/40:focus{fill:rgb(var(--red-2)/.4)}.focus\:fill-red-2\/5:focus{fill:rgb(var(--red-2)/.05)}.focus\:fill-red-2\/50:focus{fill:rgb(var(--red-2)/.5)}.focus\:fill-red-2\/60:focus{fill:rgb(var(--red-2)/.6)}.focus\:fill-red-2\/70:focus{fill:rgb(var(--red-2)/.7)}.focus\:fill-red-2\/75:focus{fill:rgb(var(--red-2)/.75)}.focus\:fill-red-2\/80:focus{fill:rgb(var(--red-2)/.8)}.focus\:fill-red-2\/90:focus{fill:rgb(var(--red-2)/.9)}.focus\:fill-red-2\/95:focus{fill:rgb(var(--red-2)/.95)}.focus\:fill-red-3\/0:focus{fill:rgb(var(--red-3)/0)}.focus\:fill-red-3\/10:focus{fill:rgb(var(--red-3)/.1)}.focus\:fill-red-3\/100:focus{fill:rgb(var(--red-3)/1)}.focus\:fill-red-3\/20:focus{fill:rgb(var(--red-3)/.2)}.focus\:fill-red-3\/25:focus{fill:rgb(var(--red-3)/.25)}.focus\:fill-red-3\/30:focus{fill:rgb(var(--red-3)/.3)}.focus\:fill-red-3\/40:focus{fill:rgb(var(--red-3)/.4)}.focus\:fill-red-3\/5:focus{fill:rgb(var(--red-3)/.05)}.focus\:fill-red-3\/50:focus{fill:rgb(var(--red-3)/.5)}.focus\:fill-red-3\/60:focus{fill:rgb(var(--red-3)/.6)}.focus\:fill-red-3\/70:focus{fill:rgb(var(--red-3)/.7)}.focus\:fill-red-3\/75:focus{fill:rgb(var(--red-3)/.75)}.focus\:fill-red-3\/80:focus{fill:rgb(var(--red-3)/.8)}.focus\:fill-red-3\/90:focus{fill:rgb(var(--red-3)/.9)}.focus\:fill-red-3\/95:focus{fill:rgb(var(--red-3)/.95)}.focus\:fill-red-4\/0:focus{fill:rgb(var(--red-4)/0)}.focus\:fill-red-4\/10:focus{fill:rgb(var(--red-4)/.1)}.focus\:fill-red-4\/100:focus{fill:rgb(var(--red-4)/1)}.focus\:fill-red-4\/20:focus{fill:rgb(var(--red-4)/.2)}.focus\:fill-red-4\/25:focus{fill:rgb(var(--red-4)/.25)}.focus\:fill-red-4\/30:focus{fill:rgb(var(--red-4)/.3)}.focus\:fill-red-4\/40:focus{fill:rgb(var(--red-4)/.4)}.focus\:fill-red-4\/5:focus{fill:rgb(var(--red-4)/.05)}.focus\:fill-red-4\/50:focus{fill:rgb(var(--red-4)/.5)}.focus\:fill-red-4\/60:focus{fill:rgb(var(--red-4)/.6)}.focus\:fill-red-4\/70:focus{fill:rgb(var(--red-4)/.7)}.focus\:fill-red-4\/75:focus{fill:rgb(var(--red-4)/.75)}.focus\:fill-red-4\/80:focus{fill:rgb(var(--red-4)/.8)}.focus\:fill-red-4\/90:focus{fill:rgb(var(--red-4)/.9)}.focus\:fill-red-4\/95:focus{fill:rgb(var(--red-4)/.95)}.focus\:fill-red-5\/0:focus{fill:rgb(var(--red-5)/0)}.focus\:fill-red-5\/10:focus{fill:rgb(var(--red-5)/.1)}.focus\:fill-red-5\/100:focus{fill:rgb(var(--red-5)/1)}.focus\:fill-red-5\/20:focus{fill:rgb(var(--red-5)/.2)}.focus\:fill-red-5\/25:focus{fill:rgb(var(--red-5)/.25)}.focus\:fill-red-5\/30:focus{fill:rgb(var(--red-5)/.3)}.focus\:fill-red-5\/40:focus{fill:rgb(var(--red-5)/.4)}.focus\:fill-red-5\/5:focus{fill:rgb(var(--red-5)/.05)}.focus\:fill-red-5\/50:focus{fill:rgb(var(--red-5)/.5)}.focus\:fill-red-5\/60:focus{fill:rgb(var(--red-5)/.6)}.focus\:fill-red-5\/70:focus{fill:rgb(var(--red-5)/.7)}.focus\:fill-red-5\/75:focus{fill:rgb(var(--red-5)/.75)}.focus\:fill-red-5\/80:focus{fill:rgb(var(--red-5)/.8)}.focus\:fill-red-5\/90:focus{fill:rgb(var(--red-5)/.9)}.focus\:fill-red-5\/95:focus{fill:rgb(var(--red-5)/.95)}.focus\:fill-red-6\/0:focus{fill:rgb(var(--red-6)/0)}.focus\:fill-red-6\/10:focus{fill:rgb(var(--red-6)/.1)}.focus\:fill-red-6\/100:focus{fill:rgb(var(--red-6)/1)}.focus\:fill-red-6\/20:focus{fill:rgb(var(--red-6)/.2)}.focus\:fill-red-6\/25:focus{fill:rgb(var(--red-6)/.25)}.focus\:fill-red-6\/30:focus{fill:rgb(var(--red-6)/.3)}.focus\:fill-red-6\/40:focus{fill:rgb(var(--red-6)/.4)}.focus\:fill-red-6\/5:focus{fill:rgb(var(--red-6)/.05)}.focus\:fill-red-6\/50:focus{fill:rgb(var(--red-6)/.5)}.focus\:fill-red-6\/60:focus{fill:rgb(var(--red-6)/.6)}.focus\:fill-red-6\/70:focus{fill:rgb(var(--red-6)/.7)}.focus\:fill-red-6\/75:focus{fill:rgb(var(--red-6)/.75)}.focus\:fill-red-6\/80:focus{fill:rgb(var(--red-6)/.8)}.focus\:fill-red-6\/90:focus{fill:rgb(var(--red-6)/.9)}.focus\:fill-red-6\/95:focus{fill:rgb(var(--red-6)/.95)}.focus\:fill-red-7\/0:focus{fill:rgb(var(--red-7)/0)}.focus\:fill-red-7\/10:focus{fill:rgb(var(--red-7)/.1)}.focus\:fill-red-7\/100:focus{fill:rgb(var(--red-7)/1)}.focus\:fill-red-7\/20:focus{fill:rgb(var(--red-7)/.2)}.focus\:fill-red-7\/25:focus{fill:rgb(var(--red-7)/.25)}.focus\:fill-red-7\/30:focus{fill:rgb(var(--red-7)/.3)}.focus\:fill-red-7\/40:focus{fill:rgb(var(--red-7)/.4)}.focus\:fill-red-7\/5:focus{fill:rgb(var(--red-7)/.05)}.focus\:fill-red-7\/50:focus{fill:rgb(var(--red-7)/.5)}.focus\:fill-red-7\/60:focus{fill:rgb(var(--red-7)/.6)}.focus\:fill-red-7\/70:focus{fill:rgb(var(--red-7)/.7)}.focus\:fill-red-7\/75:focus{fill:rgb(var(--red-7)/.75)}.focus\:fill-red-7\/80:focus{fill:rgb(var(--red-7)/.8)}.focus\:fill-red-7\/90:focus{fill:rgb(var(--red-7)/.9)}.focus\:fill-red-7\/95:focus{fill:rgb(var(--red-7)/.95)}.focus\:fill-red-8\/0:focus{fill:rgb(var(--red-8)/0)}.focus\:fill-red-8\/10:focus{fill:rgb(var(--red-8)/.1)}.focus\:fill-red-8\/100:focus{fill:rgb(var(--red-8)/1)}.focus\:fill-red-8\/20:focus{fill:rgb(var(--red-8)/.2)}.focus\:fill-red-8\/25:focus{fill:rgb(var(--red-8)/.25)}.focus\:fill-red-8\/30:focus{fill:rgb(var(--red-8)/.3)}.focus\:fill-red-8\/40:focus{fill:rgb(var(--red-8)/.4)}.focus\:fill-red-8\/5:focus{fill:rgb(var(--red-8)/.05)}.focus\:fill-red-8\/50:focus{fill:rgb(var(--red-8)/.5)}.focus\:fill-red-8\/60:focus{fill:rgb(var(--red-8)/.6)}.focus\:fill-red-8\/70:focus{fill:rgb(var(--red-8)/.7)}.focus\:fill-red-8\/75:focus{fill:rgb(var(--red-8)/.75)}.focus\:fill-red-8\/80:focus{fill:rgb(var(--red-8)/.8)}.focus\:fill-red-8\/90:focus{fill:rgb(var(--red-8)/.9)}.focus\:fill-red-8\/95:focus{fill:rgb(var(--red-8)/.95)}.focus\:fill-red-9\/0:focus{fill:rgb(var(--red-9)/0)}.focus\:fill-red-9\/10:focus{fill:rgb(var(--red-9)/.1)}.focus\:fill-red-9\/100:focus{fill:rgb(var(--red-9)/1)}.focus\:fill-red-9\/20:focus{fill:rgb(var(--red-9)/.2)}.focus\:fill-red-9\/25:focus{fill:rgb(var(--red-9)/.25)}.focus\:fill-red-9\/30:focus{fill:rgb(var(--red-9)/.3)}.focus\:fill-red-9\/40:focus{fill:rgb(var(--red-9)/.4)}.focus\:fill-red-9\/5:focus{fill:rgb(var(--red-9)/.05)}.focus\:fill-red-9\/50:focus{fill:rgb(var(--red-9)/.5)}.focus\:fill-red-9\/60:focus{fill:rgb(var(--red-9)/.6)}.focus\:fill-red-9\/70:focus{fill:rgb(var(--red-9)/.7)}.focus\:fill-red-9\/75:focus{fill:rgb(var(--red-9)/.75)}.focus\:fill-red-9\/80:focus{fill:rgb(var(--red-9)/.8)}.focus\:fill-red-9\/90:focus{fill:rgb(var(--red-9)/.9)}.focus\:fill-red-9\/95:focus{fill:rgb(var(--red-9)/.95)}.focus\:fill-secondary:focus{fill:rgb(var(--secondary))}.focus\:fill-secondary\/0:focus{fill:rgb(var(--secondary)/0)}.focus\:fill-secondary\/10:focus{fill:rgb(var(--secondary)/.1)}.focus\:fill-secondary\/100:focus{fill:rgb(var(--secondary)/1)}.focus\:fill-secondary\/20:focus{fill:rgb(var(--secondary)/.2)}.focus\:fill-secondary\/25:focus{fill:rgb(var(--secondary)/.25)}.focus\:fill-secondary\/30:focus{fill:rgb(var(--secondary)/.3)}.focus\:fill-secondary\/40:focus{fill:rgb(var(--secondary)/.4)}.focus\:fill-secondary\/5:focus{fill:rgb(var(--secondary)/.05)}.focus\:fill-secondary\/50:focus{fill:rgb(var(--secondary)/.5)}.focus\:fill-secondary\/60:focus{fill:rgb(var(--secondary)/.6)}.focus\:fill-secondary\/70:focus{fill:rgb(var(--secondary)/.7)}.focus\:fill-secondary\/75:focus{fill:rgb(var(--secondary)/.75)}.focus\:fill-secondary\/80:focus{fill:rgb(var(--secondary)/.8)}.focus\:fill-secondary\/90:focus{fill:rgb(var(--secondary)/.9)}.focus\:fill-secondary\/95:focus{fill:rgb(var(--secondary)/.95)}.focus\:fill-slate-1\/0:focus{fill:rgb(var(--slate-1)/0)}.focus\:fill-slate-1\/10:focus{fill:rgb(var(--slate-1)/.1)}.focus\:fill-slate-1\/100:focus{fill:rgb(var(--slate-1)/1)}.focus\:fill-slate-1\/20:focus{fill:rgb(var(--slate-1)/.2)}.focus\:fill-slate-1\/25:focus{fill:rgb(var(--slate-1)/.25)}.focus\:fill-slate-1\/30:focus{fill:rgb(var(--slate-1)/.3)}.focus\:fill-slate-1\/40:focus{fill:rgb(var(--slate-1)/.4)}.focus\:fill-slate-1\/5:focus{fill:rgb(var(--slate-1)/.05)}.focus\:fill-slate-1\/50:focus{fill:rgb(var(--slate-1)/.5)}.focus\:fill-slate-1\/60:focus{fill:rgb(var(--slate-1)/.6)}.focus\:fill-slate-1\/70:focus{fill:rgb(var(--slate-1)/.7)}.focus\:fill-slate-1\/75:focus{fill:rgb(var(--slate-1)/.75)}.focus\:fill-slate-1\/80:focus{fill:rgb(var(--slate-1)/.8)}.focus\:fill-slate-1\/90:focus{fill:rgb(var(--slate-1)/.9)}.focus\:fill-slate-1\/95:focus{fill:rgb(var(--slate-1)/.95)}.focus\:fill-slate-10\/0:focus{fill:rgb(var(--slate-10)/0)}.focus\:fill-slate-10\/10:focus{fill:rgb(var(--slate-10)/.1)}.focus\:fill-slate-10\/100:focus{fill:rgb(var(--slate-10)/1)}.focus\:fill-slate-10\/20:focus{fill:rgb(var(--slate-10)/.2)}.focus\:fill-slate-10\/25:focus{fill:rgb(var(--slate-10)/.25)}.focus\:fill-slate-10\/30:focus{fill:rgb(var(--slate-10)/.3)}.focus\:fill-slate-10\/40:focus{fill:rgb(var(--slate-10)/.4)}.focus\:fill-slate-10\/5:focus{fill:rgb(var(--slate-10)/.05)}.focus\:fill-slate-10\/50:focus{fill:rgb(var(--slate-10)/.5)}.focus\:fill-slate-10\/60:focus{fill:rgb(var(--slate-10)/.6)}.focus\:fill-slate-10\/70:focus{fill:rgb(var(--slate-10)/.7)}.focus\:fill-slate-10\/75:focus{fill:rgb(var(--slate-10)/.75)}.focus\:fill-slate-10\/80:focus{fill:rgb(var(--slate-10)/.8)}.focus\:fill-slate-10\/90:focus{fill:rgb(var(--slate-10)/.9)}.focus\:fill-slate-10\/95:focus{fill:rgb(var(--slate-10)/.95)}.focus\:fill-slate-2\/0:focus{fill:rgb(var(--slate-2)/0)}.focus\:fill-slate-2\/10:focus{fill:rgb(var(--slate-2)/.1)}.focus\:fill-slate-2\/100:focus{fill:rgb(var(--slate-2)/1)}.focus\:fill-slate-2\/20:focus{fill:rgb(var(--slate-2)/.2)}.focus\:fill-slate-2\/25:focus{fill:rgb(var(--slate-2)/.25)}.focus\:fill-slate-2\/30:focus{fill:rgb(var(--slate-2)/.3)}.focus\:fill-slate-2\/40:focus{fill:rgb(var(--slate-2)/.4)}.focus\:fill-slate-2\/5:focus{fill:rgb(var(--slate-2)/.05)}.focus\:fill-slate-2\/50:focus{fill:rgb(var(--slate-2)/.5)}.focus\:fill-slate-2\/60:focus{fill:rgb(var(--slate-2)/.6)}.focus\:fill-slate-2\/70:focus{fill:rgb(var(--slate-2)/.7)}.focus\:fill-slate-2\/75:focus{fill:rgb(var(--slate-2)/.75)}.focus\:fill-slate-2\/80:focus{fill:rgb(var(--slate-2)/.8)}.focus\:fill-slate-2\/90:focus{fill:rgb(var(--slate-2)/.9)}.focus\:fill-slate-2\/95:focus{fill:rgb(var(--slate-2)/.95)}.focus\:fill-slate-3\/0:focus{fill:rgb(var(--slate-3)/0)}.focus\:fill-slate-3\/10:focus{fill:rgb(var(--slate-3)/.1)}.focus\:fill-slate-3\/100:focus{fill:rgb(var(--slate-3)/1)}.focus\:fill-slate-3\/20:focus{fill:rgb(var(--slate-3)/.2)}.focus\:fill-slate-3\/25:focus{fill:rgb(var(--slate-3)/.25)}.focus\:fill-slate-3\/30:focus{fill:rgb(var(--slate-3)/.3)}.focus\:fill-slate-3\/40:focus{fill:rgb(var(--slate-3)/.4)}.focus\:fill-slate-3\/5:focus{fill:rgb(var(--slate-3)/.05)}.focus\:fill-slate-3\/50:focus{fill:rgb(var(--slate-3)/.5)}.focus\:fill-slate-3\/60:focus{fill:rgb(var(--slate-3)/.6)}.focus\:fill-slate-3\/70:focus{fill:rgb(var(--slate-3)/.7)}.focus\:fill-slate-3\/75:focus{fill:rgb(var(--slate-3)/.75)}.focus\:fill-slate-3\/80:focus{fill:rgb(var(--slate-3)/.8)}.focus\:fill-slate-3\/90:focus{fill:rgb(var(--slate-3)/.9)}.focus\:fill-slate-3\/95:focus{fill:rgb(var(--slate-3)/.95)}.focus\:fill-slate-4\/0:focus{fill:rgb(var(--slate-4)/0)}.focus\:fill-slate-4\/10:focus{fill:rgb(var(--slate-4)/.1)}.focus\:fill-slate-4\/100:focus{fill:rgb(var(--slate-4)/1)}.focus\:fill-slate-4\/20:focus{fill:rgb(var(--slate-4)/.2)}.focus\:fill-slate-4\/25:focus{fill:rgb(var(--slate-4)/.25)}.focus\:fill-slate-4\/30:focus{fill:rgb(var(--slate-4)/.3)}.focus\:fill-slate-4\/40:focus{fill:rgb(var(--slate-4)/.4)}.focus\:fill-slate-4\/5:focus{fill:rgb(var(--slate-4)/.05)}.focus\:fill-slate-4\/50:focus{fill:rgb(var(--slate-4)/.5)}.focus\:fill-slate-4\/60:focus{fill:rgb(var(--slate-4)/.6)}.focus\:fill-slate-4\/70:focus{fill:rgb(var(--slate-4)/.7)}.focus\:fill-slate-4\/75:focus{fill:rgb(var(--slate-4)/.75)}.focus\:fill-slate-4\/80:focus{fill:rgb(var(--slate-4)/.8)}.focus\:fill-slate-4\/90:focus{fill:rgb(var(--slate-4)/.9)}.focus\:fill-slate-4\/95:focus{fill:rgb(var(--slate-4)/.95)}.focus\:fill-slate-5\/0:focus{fill:rgb(var(--slate-5)/0)}.focus\:fill-slate-5\/10:focus{fill:rgb(var(--slate-5)/.1)}.focus\:fill-slate-5\/100:focus{fill:rgb(var(--slate-5)/1)}.focus\:fill-slate-5\/20:focus{fill:rgb(var(--slate-5)/.2)}.focus\:fill-slate-5\/25:focus{fill:rgb(var(--slate-5)/.25)}.focus\:fill-slate-5\/30:focus{fill:rgb(var(--slate-5)/.3)}.focus\:fill-slate-5\/40:focus{fill:rgb(var(--slate-5)/.4)}.focus\:fill-slate-5\/5:focus{fill:rgb(var(--slate-5)/.05)}.focus\:fill-slate-5\/50:focus{fill:rgb(var(--slate-5)/.5)}.focus\:fill-slate-5\/60:focus{fill:rgb(var(--slate-5)/.6)}.focus\:fill-slate-5\/70:focus{fill:rgb(var(--slate-5)/.7)}.focus\:fill-slate-5\/75:focus{fill:rgb(var(--slate-5)/.75)}.focus\:fill-slate-5\/80:focus{fill:rgb(var(--slate-5)/.8)}.focus\:fill-slate-5\/90:focus{fill:rgb(var(--slate-5)/.9)}.focus\:fill-slate-5\/95:focus{fill:rgb(var(--slate-5)/.95)}.focus\:fill-slate-6\/0:focus{fill:rgb(var(--slate-6)/0)}.focus\:fill-slate-6\/10:focus{fill:rgb(var(--slate-6)/.1)}.focus\:fill-slate-6\/100:focus{fill:rgb(var(--slate-6)/1)}.focus\:fill-slate-6\/20:focus{fill:rgb(var(--slate-6)/.2)}.focus\:fill-slate-6\/25:focus{fill:rgb(var(--slate-6)/.25)}.focus\:fill-slate-6\/30:focus{fill:rgb(var(--slate-6)/.3)}.focus\:fill-slate-6\/40:focus{fill:rgb(var(--slate-6)/.4)}.focus\:fill-slate-6\/5:focus{fill:rgb(var(--slate-6)/.05)}.focus\:fill-slate-6\/50:focus{fill:rgb(var(--slate-6)/.5)}.focus\:fill-slate-6\/60:focus{fill:rgb(var(--slate-6)/.6)}.focus\:fill-slate-6\/70:focus{fill:rgb(var(--slate-6)/.7)}.focus\:fill-slate-6\/75:focus{fill:rgb(var(--slate-6)/.75)}.focus\:fill-slate-6\/80:focus{fill:rgb(var(--slate-6)/.8)}.focus\:fill-slate-6\/90:focus{fill:rgb(var(--slate-6)/.9)}.focus\:fill-slate-6\/95:focus{fill:rgb(var(--slate-6)/.95)}.focus\:fill-slate-7\/0:focus{fill:rgb(var(--slate-7)/0)}.focus\:fill-slate-7\/10:focus{fill:rgb(var(--slate-7)/.1)}.focus\:fill-slate-7\/100:focus{fill:rgb(var(--slate-7)/1)}.focus\:fill-slate-7\/20:focus{fill:rgb(var(--slate-7)/.2)}.focus\:fill-slate-7\/25:focus{fill:rgb(var(--slate-7)/.25)}.focus\:fill-slate-7\/30:focus{fill:rgb(var(--slate-7)/.3)}.focus\:fill-slate-7\/40:focus{fill:rgb(var(--slate-7)/.4)}.focus\:fill-slate-7\/5:focus{fill:rgb(var(--slate-7)/.05)}.focus\:fill-slate-7\/50:focus{fill:rgb(var(--slate-7)/.5)}.focus\:fill-slate-7\/60:focus{fill:rgb(var(--slate-7)/.6)}.focus\:fill-slate-7\/70:focus{fill:rgb(var(--slate-7)/.7)}.focus\:fill-slate-7\/75:focus{fill:rgb(var(--slate-7)/.75)}.focus\:fill-slate-7\/80:focus{fill:rgb(var(--slate-7)/.8)}.focus\:fill-slate-7\/90:focus{fill:rgb(var(--slate-7)/.9)}.focus\:fill-slate-7\/95:focus{fill:rgb(var(--slate-7)/.95)}.focus\:fill-slate-8\/0:focus{fill:rgb(var(--slate-8)/0)}.focus\:fill-slate-8\/10:focus{fill:rgb(var(--slate-8)/.1)}.focus\:fill-slate-8\/100:focus{fill:rgb(var(--slate-8)/1)}.focus\:fill-slate-8\/20:focus{fill:rgb(var(--slate-8)/.2)}.focus\:fill-slate-8\/25:focus{fill:rgb(var(--slate-8)/.25)}.focus\:fill-slate-8\/30:focus{fill:rgb(var(--slate-8)/.3)}.focus\:fill-slate-8\/40:focus{fill:rgb(var(--slate-8)/.4)}.focus\:fill-slate-8\/5:focus{fill:rgb(var(--slate-8)/.05)}.focus\:fill-slate-8\/50:focus{fill:rgb(var(--slate-8)/.5)}.focus\:fill-slate-8\/60:focus{fill:rgb(var(--slate-8)/.6)}.focus\:fill-slate-8\/70:focus{fill:rgb(var(--slate-8)/.7)}.focus\:fill-slate-8\/75:focus{fill:rgb(var(--slate-8)/.75)}.focus\:fill-slate-8\/80:focus{fill:rgb(var(--slate-8)/.8)}.focus\:fill-slate-8\/90:focus{fill:rgb(var(--slate-8)/.9)}.focus\:fill-slate-8\/95:focus{fill:rgb(var(--slate-8)/.95)}.focus\:fill-slate-9\/0:focus{fill:rgb(var(--slate-9)/0)}.focus\:fill-slate-9\/10:focus{fill:rgb(var(--slate-9)/.1)}.focus\:fill-slate-9\/100:focus{fill:rgb(var(--slate-9)/1)}.focus\:fill-slate-9\/20:focus{fill:rgb(var(--slate-9)/.2)}.focus\:fill-slate-9\/25:focus{fill:rgb(var(--slate-9)/.25)}.focus\:fill-slate-9\/30:focus{fill:rgb(var(--slate-9)/.3)}.focus\:fill-slate-9\/40:focus{fill:rgb(var(--slate-9)/.4)}.focus\:fill-slate-9\/5:focus{fill:rgb(var(--slate-9)/.05)}.focus\:fill-slate-9\/50:focus{fill:rgb(var(--slate-9)/.5)}.focus\:fill-slate-9\/60:focus{fill:rgb(var(--slate-9)/.6)}.focus\:fill-slate-9\/70:focus{fill:rgb(var(--slate-9)/.7)}.focus\:fill-slate-9\/75:focus{fill:rgb(var(--slate-9)/.75)}.focus\:fill-slate-9\/80:focus{fill:rgb(var(--slate-9)/.8)}.focus\:fill-slate-9\/90:focus{fill:rgb(var(--slate-9)/.9)}.focus\:fill-slate-9\/95:focus{fill:rgb(var(--slate-9)/.95)}.focus\:fill-success:focus{fill:rgb(var(--success))}.focus\:fill-success\/0:focus{fill:rgb(var(--success)/0)}.focus\:fill-success\/10:focus{fill:rgb(var(--success)/.1)}.focus\:fill-success\/100:focus{fill:rgb(var(--success)/1)}.focus\:fill-success\/20:focus{fill:rgb(var(--success)/.2)}.focus\:fill-success\/25:focus{fill:rgb(var(--success)/.25)}.focus\:fill-success\/30:focus{fill:rgb(var(--success)/.3)}.focus\:fill-success\/40:focus{fill:rgb(var(--success)/.4)}.focus\:fill-success\/5:focus{fill:rgb(var(--success)/.05)}.focus\:fill-success\/50:focus{fill:rgb(var(--success)/.5)}.focus\:fill-success\/60:focus{fill:rgb(var(--success)/.6)}.focus\:fill-success\/70:focus{fill:rgb(var(--success)/.7)}.focus\:fill-success\/75:focus{fill:rgb(var(--success)/.75)}.focus\:fill-success\/80:focus{fill:rgb(var(--success)/.8)}.focus\:fill-success\/90:focus{fill:rgb(var(--success)/.9)}.focus\:fill-success\/95:focus{fill:rgb(var(--success)/.95)}.focus\:fill-warning:focus{fill:rgb(var(--warning))}.focus\:fill-warning\/0:focus{fill:rgb(var(--warning)/0)}.focus\:fill-warning\/10:focus{fill:rgb(var(--warning)/.1)}.focus\:fill-warning\/100:focus{fill:rgb(var(--warning)/1)}.focus\:fill-warning\/20:focus{fill:rgb(var(--warning)/.2)}.focus\:fill-warning\/25:focus{fill:rgb(var(--warning)/.25)}.focus\:fill-warning\/30:focus{fill:rgb(var(--warning)/.3)}.focus\:fill-warning\/40:focus{fill:rgb(var(--warning)/.4)}.focus\:fill-warning\/5:focus{fill:rgb(var(--warning)/.05)}.focus\:fill-warning\/50:focus{fill:rgb(var(--warning)/.5)}.focus\:fill-warning\/60:focus{fill:rgb(var(--warning)/.6)}.focus\:fill-warning\/70:focus{fill:rgb(var(--warning)/.7)}.focus\:fill-warning\/75:focus{fill:rgb(var(--warning)/.75)}.focus\:fill-warning\/80:focus{fill:rgb(var(--warning)/.8)}.focus\:fill-warning\/90:focus{fill:rgb(var(--warning)/.9)}.focus\:fill-warning\/95:focus{fill:rgb(var(--warning)/.95)}.focus\:fill-white:focus{fill:#fff}.focus\:fill-white\/0:focus{fill:hsla(0,0%,100%,0)}.focus\:fill-white\/10:focus{fill:hsla(0,0%,100%,.1)}.focus\:fill-white\/100:focus{fill:#fff}.focus\:fill-white\/20:focus{fill:hsla(0,0%,100%,.2)}.focus\:fill-white\/25:focus{fill:hsla(0,0%,100%,.25)}.focus\:fill-white\/30:focus{fill:hsla(0,0%,100%,.3)}.focus\:fill-white\/40:focus{fill:hsla(0,0%,100%,.4)}.focus\:fill-white\/5:focus{fill:hsla(0,0%,100%,.05)}.focus\:fill-white\/50:focus{fill:hsla(0,0%,100%,.5)}.focus\:fill-white\/60:focus{fill:hsla(0,0%,100%,.6)}.focus\:fill-white\/70:focus{fill:hsla(0,0%,100%,.7)}.focus\:fill-white\/75:focus{fill:hsla(0,0%,100%,.75)}.focus\:fill-white\/80:focus{fill:hsla(0,0%,100%,.8)}.focus\:fill-white\/90:focus{fill:hsla(0,0%,100%,.9)}.focus\:fill-white\/95:focus{fill:hsla(0,0%,100%,.95)}.focus\:fill-whiteInverted:focus{fill:rgb(var(--whiteInverted))}.focus\:fill-whiteInverted\/0:focus{fill:rgb(var(--whiteInverted)/0)}.focus\:fill-whiteInverted\/10:focus{fill:rgb(var(--whiteInverted)/.1)}.focus\:fill-whiteInverted\/100:focus{fill:rgb(var(--whiteInverted)/1)}.focus\:fill-whiteInverted\/20:focus{fill:rgb(var(--whiteInverted)/.2)}.focus\:fill-whiteInverted\/25:focus{fill:rgb(var(--whiteInverted)/.25)}.focus\:fill-whiteInverted\/30:focus{fill:rgb(var(--whiteInverted)/.3)}.focus\:fill-whiteInverted\/40:focus{fill:rgb(var(--whiteInverted)/.4)}.focus\:fill-whiteInverted\/5:focus{fill:rgb(var(--whiteInverted)/.05)}.focus\:fill-whiteInverted\/50:focus{fill:rgb(var(--whiteInverted)/.5)}.focus\:fill-whiteInverted\/60:focus{fill:rgb(var(--whiteInverted)/.6)}.focus\:fill-whiteInverted\/70:focus{fill:rgb(var(--whiteInverted)/.7)}.focus\:fill-whiteInverted\/75:focus{fill:rgb(var(--whiteInverted)/.75)}.focus\:fill-whiteInverted\/80:focus{fill:rgb(var(--whiteInverted)/.8)}.focus\:fill-whiteInverted\/90:focus{fill:rgb(var(--whiteInverted)/.9)}.focus\:fill-whiteInverted\/95:focus{fill:rgb(var(--whiteInverted)/.95)}.focus\:stroke-backgroundPrimary:focus{stroke:rgb(var(--backgroundPrimary))}.focus\:stroke-backgroundPrimary\/0:focus{stroke:rgb(var(--backgroundPrimary)/0)}.focus\:stroke-backgroundPrimary\/10:focus{stroke:rgb(var(--backgroundPrimary)/.1)}.focus\:stroke-backgroundPrimary\/100:focus{stroke:rgb(var(--backgroundPrimary)/1)}.focus\:stroke-backgroundPrimary\/20:focus{stroke:rgb(var(--backgroundPrimary)/.2)}.focus\:stroke-backgroundPrimary\/25:focus{stroke:rgb(var(--backgroundPrimary)/.25)}.focus\:stroke-backgroundPrimary\/30:focus{stroke:rgb(var(--backgroundPrimary)/.3)}.focus\:stroke-backgroundPrimary\/40:focus{stroke:rgb(var(--backgroundPrimary)/.4)}.focus\:stroke-backgroundPrimary\/5:focus{stroke:rgb(var(--backgroundPrimary)/.05)}.focus\:stroke-backgroundPrimary\/50:focus{stroke:rgb(var(--backgroundPrimary)/.5)}.focus\:stroke-backgroundPrimary\/60:focus{stroke:rgb(var(--backgroundPrimary)/.6)}.focus\:stroke-backgroundPrimary\/70:focus{stroke:rgb(var(--backgroundPrimary)/.7)}.focus\:stroke-backgroundPrimary\/75:focus{stroke:rgb(var(--backgroundPrimary)/.75)}.focus\:stroke-backgroundPrimary\/80:focus{stroke:rgb(var(--backgroundPrimary)/.8)}.focus\:stroke-backgroundPrimary\/90:focus{stroke:rgb(var(--backgroundPrimary)/.9)}.focus\:stroke-backgroundPrimary\/95:focus{stroke:rgb(var(--backgroundPrimary)/.95)}.focus\:stroke-backgroundSecondary:focus{stroke:rgb(var(--backgroundSecondary))}.focus\:stroke-backgroundSecondary\/0:focus{stroke:rgb(var(--backgroundSecondary)/0)}.focus\:stroke-backgroundSecondary\/10:focus{stroke:rgb(var(--backgroundSecondary)/.1)}.focus\:stroke-backgroundSecondary\/100:focus{stroke:rgb(var(--backgroundSecondary)/1)}.focus\:stroke-backgroundSecondary\/20:focus{stroke:rgb(var(--backgroundSecondary)/.2)}.focus\:stroke-backgroundSecondary\/25:focus{stroke:rgb(var(--backgroundSecondary)/.25)}.focus\:stroke-backgroundSecondary\/30:focus{stroke:rgb(var(--backgroundSecondary)/.3)}.focus\:stroke-backgroundSecondary\/40:focus{stroke:rgb(var(--backgroundSecondary)/.4)}.focus\:stroke-backgroundSecondary\/5:focus{stroke:rgb(var(--backgroundSecondary)/.05)}.focus\:stroke-backgroundSecondary\/50:focus{stroke:rgb(var(--backgroundSecondary)/.5)}.focus\:stroke-backgroundSecondary\/60:focus{stroke:rgb(var(--backgroundSecondary)/.6)}.focus\:stroke-backgroundSecondary\/70:focus{stroke:rgb(var(--backgroundSecondary)/.7)}.focus\:stroke-backgroundSecondary\/75:focus{stroke:rgb(var(--backgroundSecondary)/.75)}.focus\:stroke-backgroundSecondary\/80:focus{stroke:rgb(var(--backgroundSecondary)/.8)}.focus\:stroke-backgroundSecondary\/90:focus{stroke:rgb(var(--backgroundSecondary)/.9)}.focus\:stroke-backgroundSecondary\/95:focus{stroke:rgb(var(--backgroundSecondary)/.95)}.focus\:stroke-black:focus{stroke:#000}.focus\:stroke-black\/0:focus{stroke:transparent}.focus\:stroke-black\/10:focus{stroke:rgba(0,0,0,.1)}.focus\:stroke-black\/100:focus{stroke:#000}.focus\:stroke-black\/20:focus{stroke:rgba(0,0,0,.2)}.focus\:stroke-black\/25:focus{stroke:rgba(0,0,0,.25)}.focus\:stroke-black\/30:focus{stroke:rgba(0,0,0,.3)}.focus\:stroke-black\/40:focus{stroke:rgba(0,0,0,.4)}.focus\:stroke-black\/5:focus{stroke:rgba(0,0,0,.05)}.focus\:stroke-black\/50:focus{stroke:rgba(0,0,0,.5)}.focus\:stroke-black\/60:focus{stroke:rgba(0,0,0,.6)}.focus\:stroke-black\/70:focus{stroke:rgba(0,0,0,.7)}.focus\:stroke-black\/75:focus{stroke:rgba(0,0,0,.75)}.focus\:stroke-black\/80:focus{stroke:rgba(0,0,0,.8)}.focus\:stroke-black\/90:focus{stroke:rgba(0,0,0,.9)}.focus\:stroke-black\/95:focus{stroke:rgba(0,0,0,.95)}.focus\:stroke-blackInverted:focus{stroke:rgb(var(--blackInverted))}.focus\:stroke-blackInverted\/0:focus{stroke:rgb(var(--blackInverted)/0)}.focus\:stroke-blackInverted\/10:focus{stroke:rgb(var(--blackInverted)/.1)}.focus\:stroke-blackInverted\/100:focus{stroke:rgb(var(--blackInverted)/1)}.focus\:stroke-blackInverted\/20:focus{stroke:rgb(var(--blackInverted)/.2)}.focus\:stroke-blackInverted\/25:focus{stroke:rgb(var(--blackInverted)/.25)}.focus\:stroke-blackInverted\/30:focus{stroke:rgb(var(--blackInverted)/.3)}.focus\:stroke-blackInverted\/40:focus{stroke:rgb(var(--blackInverted)/.4)}.focus\:stroke-blackInverted\/5:focus{stroke:rgb(var(--blackInverted)/.05)}.focus\:stroke-blackInverted\/50:focus{stroke:rgb(var(--blackInverted)/.5)}.focus\:stroke-blackInverted\/60:focus{stroke:rgb(var(--blackInverted)/.6)}.focus\:stroke-blackInverted\/70:focus{stroke:rgb(var(--blackInverted)/.7)}.focus\:stroke-blackInverted\/75:focus{stroke:rgb(var(--blackInverted)/.75)}.focus\:stroke-blackInverted\/80:focus{stroke:rgb(var(--blackInverted)/.8)}.focus\:stroke-blackInverted\/90:focus{stroke:rgb(var(--blackInverted)/.9)}.focus\:stroke-blackInverted\/95:focus{stroke:rgb(var(--blackInverted)/.95)}.focus\:stroke-blue-1\/0:focus{stroke:rgb(var(--blue-1)/0)}.focus\:stroke-blue-1\/10:focus{stroke:rgb(var(--blue-1)/.1)}.focus\:stroke-blue-1\/100:focus{stroke:rgb(var(--blue-1)/1)}.focus\:stroke-blue-1\/20:focus{stroke:rgb(var(--blue-1)/.2)}.focus\:stroke-blue-1\/25:focus{stroke:rgb(var(--blue-1)/.25)}.focus\:stroke-blue-1\/30:focus{stroke:rgb(var(--blue-1)/.3)}.focus\:stroke-blue-1\/40:focus{stroke:rgb(var(--blue-1)/.4)}.focus\:stroke-blue-1\/5:focus{stroke:rgb(var(--blue-1)/.05)}.focus\:stroke-blue-1\/50:focus{stroke:rgb(var(--blue-1)/.5)}.focus\:stroke-blue-1\/60:focus{stroke:rgb(var(--blue-1)/.6)}.focus\:stroke-blue-1\/70:focus{stroke:rgb(var(--blue-1)/.7)}.focus\:stroke-blue-1\/75:focus{stroke:rgb(var(--blue-1)/.75)}.focus\:stroke-blue-1\/80:focus{stroke:rgb(var(--blue-1)/.8)}.focus\:stroke-blue-1\/90:focus{stroke:rgb(var(--blue-1)/.9)}.focus\:stroke-blue-1\/95:focus{stroke:rgb(var(--blue-1)/.95)}.focus\:stroke-blue-10\/0:focus{stroke:rgb(var(--blue-10)/0)}.focus\:stroke-blue-10\/10:focus{stroke:rgb(var(--blue-10)/.1)}.focus\:stroke-blue-10\/100:focus{stroke:rgb(var(--blue-10)/1)}.focus\:stroke-blue-10\/20:focus{stroke:rgb(var(--blue-10)/.2)}.focus\:stroke-blue-10\/25:focus{stroke:rgb(var(--blue-10)/.25)}.focus\:stroke-blue-10\/30:focus{stroke:rgb(var(--blue-10)/.3)}.focus\:stroke-blue-10\/40:focus{stroke:rgb(var(--blue-10)/.4)}.focus\:stroke-blue-10\/5:focus{stroke:rgb(var(--blue-10)/.05)}.focus\:stroke-blue-10\/50:focus{stroke:rgb(var(--blue-10)/.5)}.focus\:stroke-blue-10\/60:focus{stroke:rgb(var(--blue-10)/.6)}.focus\:stroke-blue-10\/70:focus{stroke:rgb(var(--blue-10)/.7)}.focus\:stroke-blue-10\/75:focus{stroke:rgb(var(--blue-10)/.75)}.focus\:stroke-blue-10\/80:focus{stroke:rgb(var(--blue-10)/.8)}.focus\:stroke-blue-10\/90:focus{stroke:rgb(var(--blue-10)/.9)}.focus\:stroke-blue-10\/95:focus{stroke:rgb(var(--blue-10)/.95)}.focus\:stroke-blue-2\/0:focus{stroke:rgb(var(--blue-2)/0)}.focus\:stroke-blue-2\/10:focus{stroke:rgb(var(--blue-2)/.1)}.focus\:stroke-blue-2\/100:focus{stroke:rgb(var(--blue-2)/1)}.focus\:stroke-blue-2\/20:focus{stroke:rgb(var(--blue-2)/.2)}.focus\:stroke-blue-2\/25:focus{stroke:rgb(var(--blue-2)/.25)}.focus\:stroke-blue-2\/30:focus{stroke:rgb(var(--blue-2)/.3)}.focus\:stroke-blue-2\/40:focus{stroke:rgb(var(--blue-2)/.4)}.focus\:stroke-blue-2\/5:focus{stroke:rgb(var(--blue-2)/.05)}.focus\:stroke-blue-2\/50:focus{stroke:rgb(var(--blue-2)/.5)}.focus\:stroke-blue-2\/60:focus{stroke:rgb(var(--blue-2)/.6)}.focus\:stroke-blue-2\/70:focus{stroke:rgb(var(--blue-2)/.7)}.focus\:stroke-blue-2\/75:focus{stroke:rgb(var(--blue-2)/.75)}.focus\:stroke-blue-2\/80:focus{stroke:rgb(var(--blue-2)/.8)}.focus\:stroke-blue-2\/90:focus{stroke:rgb(var(--blue-2)/.9)}.focus\:stroke-blue-2\/95:focus{stroke:rgb(var(--blue-2)/.95)}.focus\:stroke-blue-3\/0:focus{stroke:rgb(var(--blue-3)/0)}.focus\:stroke-blue-3\/10:focus{stroke:rgb(var(--blue-3)/.1)}.focus\:stroke-blue-3\/100:focus{stroke:rgb(var(--blue-3)/1)}.focus\:stroke-blue-3\/20:focus{stroke:rgb(var(--blue-3)/.2)}.focus\:stroke-blue-3\/25:focus{stroke:rgb(var(--blue-3)/.25)}.focus\:stroke-blue-3\/30:focus{stroke:rgb(var(--blue-3)/.3)}.focus\:stroke-blue-3\/40:focus{stroke:rgb(var(--blue-3)/.4)}.focus\:stroke-blue-3\/5:focus{stroke:rgb(var(--blue-3)/.05)}.focus\:stroke-blue-3\/50:focus{stroke:rgb(var(--blue-3)/.5)}.focus\:stroke-blue-3\/60:focus{stroke:rgb(var(--blue-3)/.6)}.focus\:stroke-blue-3\/70:focus{stroke:rgb(var(--blue-3)/.7)}.focus\:stroke-blue-3\/75:focus{stroke:rgb(var(--blue-3)/.75)}.focus\:stroke-blue-3\/80:focus{stroke:rgb(var(--blue-3)/.8)}.focus\:stroke-blue-3\/90:focus{stroke:rgb(var(--blue-3)/.9)}.focus\:stroke-blue-3\/95:focus{stroke:rgb(var(--blue-3)/.95)}.focus\:stroke-blue-4\/0:focus{stroke:rgb(var(--blue-4)/0)}.focus\:stroke-blue-4\/10:focus{stroke:rgb(var(--blue-4)/.1)}.focus\:stroke-blue-4\/100:focus{stroke:rgb(var(--blue-4)/1)}.focus\:stroke-blue-4\/20:focus{stroke:rgb(var(--blue-4)/.2)}.focus\:stroke-blue-4\/25:focus{stroke:rgb(var(--blue-4)/.25)}.focus\:stroke-blue-4\/30:focus{stroke:rgb(var(--blue-4)/.3)}.focus\:stroke-blue-4\/40:focus{stroke:rgb(var(--blue-4)/.4)}.focus\:stroke-blue-4\/5:focus{stroke:rgb(var(--blue-4)/.05)}.focus\:stroke-blue-4\/50:focus{stroke:rgb(var(--blue-4)/.5)}.focus\:stroke-blue-4\/60:focus{stroke:rgb(var(--blue-4)/.6)}.focus\:stroke-blue-4\/70:focus{stroke:rgb(var(--blue-4)/.7)}.focus\:stroke-blue-4\/75:focus{stroke:rgb(var(--blue-4)/.75)}.focus\:stroke-blue-4\/80:focus{stroke:rgb(var(--blue-4)/.8)}.focus\:stroke-blue-4\/90:focus{stroke:rgb(var(--blue-4)/.9)}.focus\:stroke-blue-4\/95:focus{stroke:rgb(var(--blue-4)/.95)}.focus\:stroke-blue-5\/0:focus{stroke:rgb(var(--blue-5)/0)}.focus\:stroke-blue-5\/10:focus{stroke:rgb(var(--blue-5)/.1)}.focus\:stroke-blue-5\/100:focus{stroke:rgb(var(--blue-5)/1)}.focus\:stroke-blue-5\/20:focus{stroke:rgb(var(--blue-5)/.2)}.focus\:stroke-blue-5\/25:focus{stroke:rgb(var(--blue-5)/.25)}.focus\:stroke-blue-5\/30:focus{stroke:rgb(var(--blue-5)/.3)}.focus\:stroke-blue-5\/40:focus{stroke:rgb(var(--blue-5)/.4)}.focus\:stroke-blue-5\/5:focus{stroke:rgb(var(--blue-5)/.05)}.focus\:stroke-blue-5\/50:focus{stroke:rgb(var(--blue-5)/.5)}.focus\:stroke-blue-5\/60:focus{stroke:rgb(var(--blue-5)/.6)}.focus\:stroke-blue-5\/70:focus{stroke:rgb(var(--blue-5)/.7)}.focus\:stroke-blue-5\/75:focus{stroke:rgb(var(--blue-5)/.75)}.focus\:stroke-blue-5\/80:focus{stroke:rgb(var(--blue-5)/.8)}.focus\:stroke-blue-5\/90:focus{stroke:rgb(var(--blue-5)/.9)}.focus\:stroke-blue-5\/95:focus{stroke:rgb(var(--blue-5)/.95)}.focus\:stroke-blue-6\/0:focus{stroke:rgb(var(--blue-6)/0)}.focus\:stroke-blue-6\/10:focus{stroke:rgb(var(--blue-6)/.1)}.focus\:stroke-blue-6\/100:focus{stroke:rgb(var(--blue-6)/1)}.focus\:stroke-blue-6\/20:focus{stroke:rgb(var(--blue-6)/.2)}.focus\:stroke-blue-6\/25:focus{stroke:rgb(var(--blue-6)/.25)}.focus\:stroke-blue-6\/30:focus{stroke:rgb(var(--blue-6)/.3)}.focus\:stroke-blue-6\/40:focus{stroke:rgb(var(--blue-6)/.4)}.focus\:stroke-blue-6\/5:focus{stroke:rgb(var(--blue-6)/.05)}.focus\:stroke-blue-6\/50:focus{stroke:rgb(var(--blue-6)/.5)}.focus\:stroke-blue-6\/60:focus{stroke:rgb(var(--blue-6)/.6)}.focus\:stroke-blue-6\/70:focus{stroke:rgb(var(--blue-6)/.7)}.focus\:stroke-blue-6\/75:focus{stroke:rgb(var(--blue-6)/.75)}.focus\:stroke-blue-6\/80:focus{stroke:rgb(var(--blue-6)/.8)}.focus\:stroke-blue-6\/90:focus{stroke:rgb(var(--blue-6)/.9)}.focus\:stroke-blue-6\/95:focus{stroke:rgb(var(--blue-6)/.95)}.focus\:stroke-blue-7\/0:focus{stroke:rgb(var(--blue-7)/0)}.focus\:stroke-blue-7\/10:focus{stroke:rgb(var(--blue-7)/.1)}.focus\:stroke-blue-7\/100:focus{stroke:rgb(var(--blue-7)/1)}.focus\:stroke-blue-7\/20:focus{stroke:rgb(var(--blue-7)/.2)}.focus\:stroke-blue-7\/25:focus{stroke:rgb(var(--blue-7)/.25)}.focus\:stroke-blue-7\/30:focus{stroke:rgb(var(--blue-7)/.3)}.focus\:stroke-blue-7\/40:focus{stroke:rgb(var(--blue-7)/.4)}.focus\:stroke-blue-7\/5:focus{stroke:rgb(var(--blue-7)/.05)}.focus\:stroke-blue-7\/50:focus{stroke:rgb(var(--blue-7)/.5)}.focus\:stroke-blue-7\/60:focus{stroke:rgb(var(--blue-7)/.6)}.focus\:stroke-blue-7\/70:focus{stroke:rgb(var(--blue-7)/.7)}.focus\:stroke-blue-7\/75:focus{stroke:rgb(var(--blue-7)/.75)}.focus\:stroke-blue-7\/80:focus{stroke:rgb(var(--blue-7)/.8)}.focus\:stroke-blue-7\/90:focus{stroke:rgb(var(--blue-7)/.9)}.focus\:stroke-blue-7\/95:focus{stroke:rgb(var(--blue-7)/.95)}.focus\:stroke-blue-8\/0:focus{stroke:rgb(var(--blue-8)/0)}.focus\:stroke-blue-8\/10:focus{stroke:rgb(var(--blue-8)/.1)}.focus\:stroke-blue-8\/100:focus{stroke:rgb(var(--blue-8)/1)}.focus\:stroke-blue-8\/20:focus{stroke:rgb(var(--blue-8)/.2)}.focus\:stroke-blue-8\/25:focus{stroke:rgb(var(--blue-8)/.25)}.focus\:stroke-blue-8\/30:focus{stroke:rgb(var(--blue-8)/.3)}.focus\:stroke-blue-8\/40:focus{stroke:rgb(var(--blue-8)/.4)}.focus\:stroke-blue-8\/5:focus{stroke:rgb(var(--blue-8)/.05)}.focus\:stroke-blue-8\/50:focus{stroke:rgb(var(--blue-8)/.5)}.focus\:stroke-blue-8\/60:focus{stroke:rgb(var(--blue-8)/.6)}.focus\:stroke-blue-8\/70:focus{stroke:rgb(var(--blue-8)/.7)}.focus\:stroke-blue-8\/75:focus{stroke:rgb(var(--blue-8)/.75)}.focus\:stroke-blue-8\/80:focus{stroke:rgb(var(--blue-8)/.8)}.focus\:stroke-blue-8\/90:focus{stroke:rgb(var(--blue-8)/.9)}.focus\:stroke-blue-8\/95:focus{stroke:rgb(var(--blue-8)/.95)}.focus\:stroke-blue-9\/0:focus{stroke:rgb(var(--blue-9)/0)}.focus\:stroke-blue-9\/10:focus{stroke:rgb(var(--blue-9)/.1)}.focus\:stroke-blue-9\/100:focus{stroke:rgb(var(--blue-9)/1)}.focus\:stroke-blue-9\/20:focus{stroke:rgb(var(--blue-9)/.2)}.focus\:stroke-blue-9\/25:focus{stroke:rgb(var(--blue-9)/.25)}.focus\:stroke-blue-9\/30:focus{stroke:rgb(var(--blue-9)/.3)}.focus\:stroke-blue-9\/40:focus{stroke:rgb(var(--blue-9)/.4)}.focus\:stroke-blue-9\/5:focus{stroke:rgb(var(--blue-9)/.05)}.focus\:stroke-blue-9\/50:focus{stroke:rgb(var(--blue-9)/.5)}.focus\:stroke-blue-9\/60:focus{stroke:rgb(var(--blue-9)/.6)}.focus\:stroke-blue-9\/70:focus{stroke:rgb(var(--blue-9)/.7)}.focus\:stroke-blue-9\/75:focus{stroke:rgb(var(--blue-9)/.75)}.focus\:stroke-blue-9\/80:focus{stroke:rgb(var(--blue-9)/.8)}.focus\:stroke-blue-9\/90:focus{stroke:rgb(var(--blue-9)/.9)}.focus\:stroke-blue-9\/95:focus{stroke:rgb(var(--blue-9)/.95)}.focus\:stroke-border:focus{stroke:rgb(var(--border))}.focus\:stroke-border\/0:focus{stroke:rgb(var(--border)/0)}.focus\:stroke-border\/10:focus{stroke:rgb(var(--border)/.1)}.focus\:stroke-border\/100:focus{stroke:rgb(var(--border)/1)}.focus\:stroke-border\/20:focus{stroke:rgb(var(--border)/.2)}.focus\:stroke-border\/25:focus{stroke:rgb(var(--border)/.25)}.focus\:stroke-border\/30:focus{stroke:rgb(var(--border)/.3)}.focus\:stroke-border\/40:focus{stroke:rgb(var(--border)/.4)}.focus\:stroke-border\/5:focus{stroke:rgb(var(--border)/.05)}.focus\:stroke-border\/50:focus{stroke:rgb(var(--border)/.5)}.focus\:stroke-border\/60:focus{stroke:rgb(var(--border)/.6)}.focus\:stroke-border\/70:focus{stroke:rgb(var(--border)/.7)}.focus\:stroke-border\/75:focus{stroke:rgb(var(--border)/.75)}.focus\:stroke-border\/80:focus{stroke:rgb(var(--border)/.8)}.focus\:stroke-border\/90:focus{stroke:rgb(var(--border)/.9)}.focus\:stroke-border\/95:focus{stroke:rgb(var(--border)/.95)}.focus\:stroke-content1:focus{stroke:rgb(var(--content1))}.focus\:stroke-content1\/0:focus{stroke:rgb(var(--content1)/0)}.focus\:stroke-content1\/10:focus{stroke:rgb(var(--content1)/.1)}.focus\:stroke-content1\/100:focus{stroke:rgb(var(--content1)/1)}.focus\:stroke-content1\/20:focus{stroke:rgb(var(--content1)/.2)}.focus\:stroke-content1\/25:focus{stroke:rgb(var(--content1)/.25)}.focus\:stroke-content1\/30:focus{stroke:rgb(var(--content1)/.3)}.focus\:stroke-content1\/40:focus{stroke:rgb(var(--content1)/.4)}.focus\:stroke-content1\/5:focus{stroke:rgb(var(--content1)/.05)}.focus\:stroke-content1\/50:focus{stroke:rgb(var(--content1)/.5)}.focus\:stroke-content1\/60:focus{stroke:rgb(var(--content1)/.6)}.focus\:stroke-content1\/70:focus{stroke:rgb(var(--content1)/.7)}.focus\:stroke-content1\/75:focus{stroke:rgb(var(--content1)/.75)}.focus\:stroke-content1\/80:focus{stroke:rgb(var(--content1)/.8)}.focus\:stroke-content1\/90:focus{stroke:rgb(var(--content1)/.9)}.focus\:stroke-content1\/95:focus{stroke:rgb(var(--content1)/.95)}.focus\:stroke-content2:focus{stroke:rgb(var(--content2))}.focus\:stroke-content2\/0:focus{stroke:rgb(var(--content2)/0)}.focus\:stroke-content2\/10:focus{stroke:rgb(var(--content2)/.1)}.focus\:stroke-content2\/100:focus{stroke:rgb(var(--content2)/1)}.focus\:stroke-content2\/20:focus{stroke:rgb(var(--content2)/.2)}.focus\:stroke-content2\/25:focus{stroke:rgb(var(--content2)/.25)}.focus\:stroke-content2\/30:focus{stroke:rgb(var(--content2)/.3)}.focus\:stroke-content2\/40:focus{stroke:rgb(var(--content2)/.4)}.focus\:stroke-content2\/5:focus{stroke:rgb(var(--content2)/.05)}.focus\:stroke-content2\/50:focus{stroke:rgb(var(--content2)/.5)}.focus\:stroke-content2\/60:focus{stroke:rgb(var(--content2)/.6)}.focus\:stroke-content2\/70:focus{stroke:rgb(var(--content2)/.7)}.focus\:stroke-content2\/75:focus{stroke:rgb(var(--content2)/.75)}.focus\:stroke-content2\/80:focus{stroke:rgb(var(--content2)/.8)}.focus\:stroke-content2\/90:focus{stroke:rgb(var(--content2)/.9)}.focus\:stroke-content2\/95:focus{stroke:rgb(var(--content2)/.95)}.focus\:stroke-content3:focus{stroke:rgb(var(--content3))}.focus\:stroke-content3\/0:focus{stroke:rgb(var(--content3)/0)}.focus\:stroke-content3\/10:focus{stroke:rgb(var(--content3)/.1)}.focus\:stroke-content3\/100:focus{stroke:rgb(var(--content3)/1)}.focus\:stroke-content3\/20:focus{stroke:rgb(var(--content3)/.2)}.focus\:stroke-content3\/25:focus{stroke:rgb(var(--content3)/.25)}.focus\:stroke-content3\/30:focus{stroke:rgb(var(--content3)/.3)}.focus\:stroke-content3\/40:focus{stroke:rgb(var(--content3)/.4)}.focus\:stroke-content3\/5:focus{stroke:rgb(var(--content3)/.05)}.focus\:stroke-content3\/50:focus{stroke:rgb(var(--content3)/.5)}.focus\:stroke-content3\/60:focus{stroke:rgb(var(--content3)/.6)}.focus\:stroke-content3\/70:focus{stroke:rgb(var(--content3)/.7)}.focus\:stroke-content3\/75:focus{stroke:rgb(var(--content3)/.75)}.focus\:stroke-content3\/80:focus{stroke:rgb(var(--content3)/.8)}.focus\:stroke-content3\/90:focus{stroke:rgb(var(--content3)/.9)}.focus\:stroke-content3\/95:focus{stroke:rgb(var(--content3)/.95)}.focus\:stroke-cyan-1\/0:focus{stroke:rgb(var(--cyan-1)/0)}.focus\:stroke-cyan-1\/10:focus{stroke:rgb(var(--cyan-1)/.1)}.focus\:stroke-cyan-1\/100:focus{stroke:rgb(var(--cyan-1)/1)}.focus\:stroke-cyan-1\/20:focus{stroke:rgb(var(--cyan-1)/.2)}.focus\:stroke-cyan-1\/25:focus{stroke:rgb(var(--cyan-1)/.25)}.focus\:stroke-cyan-1\/30:focus{stroke:rgb(var(--cyan-1)/.3)}.focus\:stroke-cyan-1\/40:focus{stroke:rgb(var(--cyan-1)/.4)}.focus\:stroke-cyan-1\/5:focus{stroke:rgb(var(--cyan-1)/.05)}.focus\:stroke-cyan-1\/50:focus{stroke:rgb(var(--cyan-1)/.5)}.focus\:stroke-cyan-1\/60:focus{stroke:rgb(var(--cyan-1)/.6)}.focus\:stroke-cyan-1\/70:focus{stroke:rgb(var(--cyan-1)/.7)}.focus\:stroke-cyan-1\/75:focus{stroke:rgb(var(--cyan-1)/.75)}.focus\:stroke-cyan-1\/80:focus{stroke:rgb(var(--cyan-1)/.8)}.focus\:stroke-cyan-1\/90:focus{stroke:rgb(var(--cyan-1)/.9)}.focus\:stroke-cyan-1\/95:focus{stroke:rgb(var(--cyan-1)/.95)}.focus\:stroke-cyan-10\/0:focus{stroke:rgb(var(--cyan-10)/0)}.focus\:stroke-cyan-10\/10:focus{stroke:rgb(var(--cyan-10)/.1)}.focus\:stroke-cyan-10\/100:focus{stroke:rgb(var(--cyan-10)/1)}.focus\:stroke-cyan-10\/20:focus{stroke:rgb(var(--cyan-10)/.2)}.focus\:stroke-cyan-10\/25:focus{stroke:rgb(var(--cyan-10)/.25)}.focus\:stroke-cyan-10\/30:focus{stroke:rgb(var(--cyan-10)/.3)}.focus\:stroke-cyan-10\/40:focus{stroke:rgb(var(--cyan-10)/.4)}.focus\:stroke-cyan-10\/5:focus{stroke:rgb(var(--cyan-10)/.05)}.focus\:stroke-cyan-10\/50:focus{stroke:rgb(var(--cyan-10)/.5)}.focus\:stroke-cyan-10\/60:focus{stroke:rgb(var(--cyan-10)/.6)}.focus\:stroke-cyan-10\/70:focus{stroke:rgb(var(--cyan-10)/.7)}.focus\:stroke-cyan-10\/75:focus{stroke:rgb(var(--cyan-10)/.75)}.focus\:stroke-cyan-10\/80:focus{stroke:rgb(var(--cyan-10)/.8)}.focus\:stroke-cyan-10\/90:focus{stroke:rgb(var(--cyan-10)/.9)}.focus\:stroke-cyan-10\/95:focus{stroke:rgb(var(--cyan-10)/.95)}.focus\:stroke-cyan-2\/0:focus{stroke:rgb(var(--cyan-2)/0)}.focus\:stroke-cyan-2\/10:focus{stroke:rgb(var(--cyan-2)/.1)}.focus\:stroke-cyan-2\/100:focus{stroke:rgb(var(--cyan-2)/1)}.focus\:stroke-cyan-2\/20:focus{stroke:rgb(var(--cyan-2)/.2)}.focus\:stroke-cyan-2\/25:focus{stroke:rgb(var(--cyan-2)/.25)}.focus\:stroke-cyan-2\/30:focus{stroke:rgb(var(--cyan-2)/.3)}.focus\:stroke-cyan-2\/40:focus{stroke:rgb(var(--cyan-2)/.4)}.focus\:stroke-cyan-2\/5:focus{stroke:rgb(var(--cyan-2)/.05)}.focus\:stroke-cyan-2\/50:focus{stroke:rgb(var(--cyan-2)/.5)}.focus\:stroke-cyan-2\/60:focus{stroke:rgb(var(--cyan-2)/.6)}.focus\:stroke-cyan-2\/70:focus{stroke:rgb(var(--cyan-2)/.7)}.focus\:stroke-cyan-2\/75:focus{stroke:rgb(var(--cyan-2)/.75)}.focus\:stroke-cyan-2\/80:focus{stroke:rgb(var(--cyan-2)/.8)}.focus\:stroke-cyan-2\/90:focus{stroke:rgb(var(--cyan-2)/.9)}.focus\:stroke-cyan-2\/95:focus{stroke:rgb(var(--cyan-2)/.95)}.focus\:stroke-cyan-3\/0:focus{stroke:rgb(var(--cyan-3)/0)}.focus\:stroke-cyan-3\/10:focus{stroke:rgb(var(--cyan-3)/.1)}.focus\:stroke-cyan-3\/100:focus{stroke:rgb(var(--cyan-3)/1)}.focus\:stroke-cyan-3\/20:focus{stroke:rgb(var(--cyan-3)/.2)}.focus\:stroke-cyan-3\/25:focus{stroke:rgb(var(--cyan-3)/.25)}.focus\:stroke-cyan-3\/30:focus{stroke:rgb(var(--cyan-3)/.3)}.focus\:stroke-cyan-3\/40:focus{stroke:rgb(var(--cyan-3)/.4)}.focus\:stroke-cyan-3\/5:focus{stroke:rgb(var(--cyan-3)/.05)}.focus\:stroke-cyan-3\/50:focus{stroke:rgb(var(--cyan-3)/.5)}.focus\:stroke-cyan-3\/60:focus{stroke:rgb(var(--cyan-3)/.6)}.focus\:stroke-cyan-3\/70:focus{stroke:rgb(var(--cyan-3)/.7)}.focus\:stroke-cyan-3\/75:focus{stroke:rgb(var(--cyan-3)/.75)}.focus\:stroke-cyan-3\/80:focus{stroke:rgb(var(--cyan-3)/.8)}.focus\:stroke-cyan-3\/90:focus{stroke:rgb(var(--cyan-3)/.9)}.focus\:stroke-cyan-3\/95:focus{stroke:rgb(var(--cyan-3)/.95)}.focus\:stroke-cyan-4\/0:focus{stroke:rgb(var(--cyan-4)/0)}.focus\:stroke-cyan-4\/10:focus{stroke:rgb(var(--cyan-4)/.1)}.focus\:stroke-cyan-4\/100:focus{stroke:rgb(var(--cyan-4)/1)}.focus\:stroke-cyan-4\/20:focus{stroke:rgb(var(--cyan-4)/.2)}.focus\:stroke-cyan-4\/25:focus{stroke:rgb(var(--cyan-4)/.25)}.focus\:stroke-cyan-4\/30:focus{stroke:rgb(var(--cyan-4)/.3)}.focus\:stroke-cyan-4\/40:focus{stroke:rgb(var(--cyan-4)/.4)}.focus\:stroke-cyan-4\/5:focus{stroke:rgb(var(--cyan-4)/.05)}.focus\:stroke-cyan-4\/50:focus{stroke:rgb(var(--cyan-4)/.5)}.focus\:stroke-cyan-4\/60:focus{stroke:rgb(var(--cyan-4)/.6)}.focus\:stroke-cyan-4\/70:focus{stroke:rgb(var(--cyan-4)/.7)}.focus\:stroke-cyan-4\/75:focus{stroke:rgb(var(--cyan-4)/.75)}.focus\:stroke-cyan-4\/80:focus{stroke:rgb(var(--cyan-4)/.8)}.focus\:stroke-cyan-4\/90:focus{stroke:rgb(var(--cyan-4)/.9)}.focus\:stroke-cyan-4\/95:focus{stroke:rgb(var(--cyan-4)/.95)}.focus\:stroke-cyan-5\/0:focus{stroke:rgb(var(--cyan-5)/0)}.focus\:stroke-cyan-5\/10:focus{stroke:rgb(var(--cyan-5)/.1)}.focus\:stroke-cyan-5\/100:focus{stroke:rgb(var(--cyan-5)/1)}.focus\:stroke-cyan-5\/20:focus{stroke:rgb(var(--cyan-5)/.2)}.focus\:stroke-cyan-5\/25:focus{stroke:rgb(var(--cyan-5)/.25)}.focus\:stroke-cyan-5\/30:focus{stroke:rgb(var(--cyan-5)/.3)}.focus\:stroke-cyan-5\/40:focus{stroke:rgb(var(--cyan-5)/.4)}.focus\:stroke-cyan-5\/5:focus{stroke:rgb(var(--cyan-5)/.05)}.focus\:stroke-cyan-5\/50:focus{stroke:rgb(var(--cyan-5)/.5)}.focus\:stroke-cyan-5\/60:focus{stroke:rgb(var(--cyan-5)/.6)}.focus\:stroke-cyan-5\/70:focus{stroke:rgb(var(--cyan-5)/.7)}.focus\:stroke-cyan-5\/75:focus{stroke:rgb(var(--cyan-5)/.75)}.focus\:stroke-cyan-5\/80:focus{stroke:rgb(var(--cyan-5)/.8)}.focus\:stroke-cyan-5\/90:focus{stroke:rgb(var(--cyan-5)/.9)}.focus\:stroke-cyan-5\/95:focus{stroke:rgb(var(--cyan-5)/.95)}.focus\:stroke-cyan-6\/0:focus{stroke:rgb(var(--cyan-6)/0)}.focus\:stroke-cyan-6\/10:focus{stroke:rgb(var(--cyan-6)/.1)}.focus\:stroke-cyan-6\/100:focus{stroke:rgb(var(--cyan-6)/1)}.focus\:stroke-cyan-6\/20:focus{stroke:rgb(var(--cyan-6)/.2)}.focus\:stroke-cyan-6\/25:focus{stroke:rgb(var(--cyan-6)/.25)}.focus\:stroke-cyan-6\/30:focus{stroke:rgb(var(--cyan-6)/.3)}.focus\:stroke-cyan-6\/40:focus{stroke:rgb(var(--cyan-6)/.4)}.focus\:stroke-cyan-6\/5:focus{stroke:rgb(var(--cyan-6)/.05)}.focus\:stroke-cyan-6\/50:focus{stroke:rgb(var(--cyan-6)/.5)}.focus\:stroke-cyan-6\/60:focus{stroke:rgb(var(--cyan-6)/.6)}.focus\:stroke-cyan-6\/70:focus{stroke:rgb(var(--cyan-6)/.7)}.focus\:stroke-cyan-6\/75:focus{stroke:rgb(var(--cyan-6)/.75)}.focus\:stroke-cyan-6\/80:focus{stroke:rgb(var(--cyan-6)/.8)}.focus\:stroke-cyan-6\/90:focus{stroke:rgb(var(--cyan-6)/.9)}.focus\:stroke-cyan-6\/95:focus{stroke:rgb(var(--cyan-6)/.95)}.focus\:stroke-cyan-7\/0:focus{stroke:rgb(var(--cyan-7)/0)}.focus\:stroke-cyan-7\/10:focus{stroke:rgb(var(--cyan-7)/.1)}.focus\:stroke-cyan-7\/100:focus{stroke:rgb(var(--cyan-7)/1)}.focus\:stroke-cyan-7\/20:focus{stroke:rgb(var(--cyan-7)/.2)}.focus\:stroke-cyan-7\/25:focus{stroke:rgb(var(--cyan-7)/.25)}.focus\:stroke-cyan-7\/30:focus{stroke:rgb(var(--cyan-7)/.3)}.focus\:stroke-cyan-7\/40:focus{stroke:rgb(var(--cyan-7)/.4)}.focus\:stroke-cyan-7\/5:focus{stroke:rgb(var(--cyan-7)/.05)}.focus\:stroke-cyan-7\/50:focus{stroke:rgb(var(--cyan-7)/.5)}.focus\:stroke-cyan-7\/60:focus{stroke:rgb(var(--cyan-7)/.6)}.focus\:stroke-cyan-7\/70:focus{stroke:rgb(var(--cyan-7)/.7)}.focus\:stroke-cyan-7\/75:focus{stroke:rgb(var(--cyan-7)/.75)}.focus\:stroke-cyan-7\/80:focus{stroke:rgb(var(--cyan-7)/.8)}.focus\:stroke-cyan-7\/90:focus{stroke:rgb(var(--cyan-7)/.9)}.focus\:stroke-cyan-7\/95:focus{stroke:rgb(var(--cyan-7)/.95)}.focus\:stroke-cyan-8\/0:focus{stroke:rgb(var(--cyan-8)/0)}.focus\:stroke-cyan-8\/10:focus{stroke:rgb(var(--cyan-8)/.1)}.focus\:stroke-cyan-8\/100:focus{stroke:rgb(var(--cyan-8)/1)}.focus\:stroke-cyan-8\/20:focus{stroke:rgb(var(--cyan-8)/.2)}.focus\:stroke-cyan-8\/25:focus{stroke:rgb(var(--cyan-8)/.25)}.focus\:stroke-cyan-8\/30:focus{stroke:rgb(var(--cyan-8)/.3)}.focus\:stroke-cyan-8\/40:focus{stroke:rgb(var(--cyan-8)/.4)}.focus\:stroke-cyan-8\/5:focus{stroke:rgb(var(--cyan-8)/.05)}.focus\:stroke-cyan-8\/50:focus{stroke:rgb(var(--cyan-8)/.5)}.focus\:stroke-cyan-8\/60:focus{stroke:rgb(var(--cyan-8)/.6)}.focus\:stroke-cyan-8\/70:focus{stroke:rgb(var(--cyan-8)/.7)}.focus\:stroke-cyan-8\/75:focus{stroke:rgb(var(--cyan-8)/.75)}.focus\:stroke-cyan-8\/80:focus{stroke:rgb(var(--cyan-8)/.8)}.focus\:stroke-cyan-8\/90:focus{stroke:rgb(var(--cyan-8)/.9)}.focus\:stroke-cyan-8\/95:focus{stroke:rgb(var(--cyan-8)/.95)}.focus\:stroke-cyan-9\/0:focus{stroke:rgb(var(--cyan-9)/0)}.focus\:stroke-cyan-9\/10:focus{stroke:rgb(var(--cyan-9)/.1)}.focus\:stroke-cyan-9\/100:focus{stroke:rgb(var(--cyan-9)/1)}.focus\:stroke-cyan-9\/20:focus{stroke:rgb(var(--cyan-9)/.2)}.focus\:stroke-cyan-9\/25:focus{stroke:rgb(var(--cyan-9)/.25)}.focus\:stroke-cyan-9\/30:focus{stroke:rgb(var(--cyan-9)/.3)}.focus\:stroke-cyan-9\/40:focus{stroke:rgb(var(--cyan-9)/.4)}.focus\:stroke-cyan-9\/5:focus{stroke:rgb(var(--cyan-9)/.05)}.focus\:stroke-cyan-9\/50:focus{stroke:rgb(var(--cyan-9)/.5)}.focus\:stroke-cyan-9\/60:focus{stroke:rgb(var(--cyan-9)/.6)}.focus\:stroke-cyan-9\/70:focus{stroke:rgb(var(--cyan-9)/.7)}.focus\:stroke-cyan-9\/75:focus{stroke:rgb(var(--cyan-9)/.75)}.focus\:stroke-cyan-9\/80:focus{stroke:rgb(var(--cyan-9)/.8)}.focus\:stroke-cyan-9\/90:focus{stroke:rgb(var(--cyan-9)/.9)}.focus\:stroke-cyan-9\/95:focus{stroke:rgb(var(--cyan-9)/.95)}.focus\:stroke-error:focus{stroke:rgb(var(--error))}.focus\:stroke-error\/0:focus{stroke:rgb(var(--error)/0)}.focus\:stroke-error\/10:focus{stroke:rgb(var(--error)/.1)}.focus\:stroke-error\/100:focus{stroke:rgb(var(--error)/1)}.focus\:stroke-error\/20:focus{stroke:rgb(var(--error)/.2)}.focus\:stroke-error\/25:focus{stroke:rgb(var(--error)/.25)}.focus\:stroke-error\/30:focus{stroke:rgb(var(--error)/.3)}.focus\:stroke-error\/40:focus{stroke:rgb(var(--error)/.4)}.focus\:stroke-error\/5:focus{stroke:rgb(var(--error)/.05)}.focus\:stroke-error\/50:focus{stroke:rgb(var(--error)/.5)}.focus\:stroke-error\/60:focus{stroke:rgb(var(--error)/.6)}.focus\:stroke-error\/70:focus{stroke:rgb(var(--error)/.7)}.focus\:stroke-error\/75:focus{stroke:rgb(var(--error)/.75)}.focus\:stroke-error\/80:focus{stroke:rgb(var(--error)/.8)}.focus\:stroke-error\/90:focus{stroke:rgb(var(--error)/.9)}.focus\:stroke-error\/95:focus{stroke:rgb(var(--error)/.95)}.focus\:stroke-gray-1\/0:focus{stroke:rgb(var(--gray-1)/0)}.focus\:stroke-gray-1\/10:focus{stroke:rgb(var(--gray-1)/.1)}.focus\:stroke-gray-1\/100:focus{stroke:rgb(var(--gray-1)/1)}.focus\:stroke-gray-1\/20:focus{stroke:rgb(var(--gray-1)/.2)}.focus\:stroke-gray-1\/25:focus{stroke:rgb(var(--gray-1)/.25)}.focus\:stroke-gray-1\/30:focus{stroke:rgb(var(--gray-1)/.3)}.focus\:stroke-gray-1\/40:focus{stroke:rgb(var(--gray-1)/.4)}.focus\:stroke-gray-1\/5:focus{stroke:rgb(var(--gray-1)/.05)}.focus\:stroke-gray-1\/50:focus{stroke:rgb(var(--gray-1)/.5)}.focus\:stroke-gray-1\/60:focus{stroke:rgb(var(--gray-1)/.6)}.focus\:stroke-gray-1\/70:focus{stroke:rgb(var(--gray-1)/.7)}.focus\:stroke-gray-1\/75:focus{stroke:rgb(var(--gray-1)/.75)}.focus\:stroke-gray-1\/80:focus{stroke:rgb(var(--gray-1)/.8)}.focus\:stroke-gray-1\/90:focus{stroke:rgb(var(--gray-1)/.9)}.focus\:stroke-gray-1\/95:focus{stroke:rgb(var(--gray-1)/.95)}.focus\:stroke-gray-10\/0:focus{stroke:rgb(var(--gray-10)/0)}.focus\:stroke-gray-10\/10:focus{stroke:rgb(var(--gray-10)/.1)}.focus\:stroke-gray-10\/100:focus{stroke:rgb(var(--gray-10)/1)}.focus\:stroke-gray-10\/20:focus{stroke:rgb(var(--gray-10)/.2)}.focus\:stroke-gray-10\/25:focus{stroke:rgb(var(--gray-10)/.25)}.focus\:stroke-gray-10\/30:focus{stroke:rgb(var(--gray-10)/.3)}.focus\:stroke-gray-10\/40:focus{stroke:rgb(var(--gray-10)/.4)}.focus\:stroke-gray-10\/5:focus{stroke:rgb(var(--gray-10)/.05)}.focus\:stroke-gray-10\/50:focus{stroke:rgb(var(--gray-10)/.5)}.focus\:stroke-gray-10\/60:focus{stroke:rgb(var(--gray-10)/.6)}.focus\:stroke-gray-10\/70:focus{stroke:rgb(var(--gray-10)/.7)}.focus\:stroke-gray-10\/75:focus{stroke:rgb(var(--gray-10)/.75)}.focus\:stroke-gray-10\/80:focus{stroke:rgb(var(--gray-10)/.8)}.focus\:stroke-gray-10\/90:focus{stroke:rgb(var(--gray-10)/.9)}.focus\:stroke-gray-10\/95:focus{stroke:rgb(var(--gray-10)/.95)}.focus\:stroke-gray-2\/0:focus{stroke:rgb(var(--gray-2)/0)}.focus\:stroke-gray-2\/10:focus{stroke:rgb(var(--gray-2)/.1)}.focus\:stroke-gray-2\/100:focus{stroke:rgb(var(--gray-2)/1)}.focus\:stroke-gray-2\/20:focus{stroke:rgb(var(--gray-2)/.2)}.focus\:stroke-gray-2\/25:focus{stroke:rgb(var(--gray-2)/.25)}.focus\:stroke-gray-2\/30:focus{stroke:rgb(var(--gray-2)/.3)}.focus\:stroke-gray-2\/40:focus{stroke:rgb(var(--gray-2)/.4)}.focus\:stroke-gray-2\/5:focus{stroke:rgb(var(--gray-2)/.05)}.focus\:stroke-gray-2\/50:focus{stroke:rgb(var(--gray-2)/.5)}.focus\:stroke-gray-2\/60:focus{stroke:rgb(var(--gray-2)/.6)}.focus\:stroke-gray-2\/70:focus{stroke:rgb(var(--gray-2)/.7)}.focus\:stroke-gray-2\/75:focus{stroke:rgb(var(--gray-2)/.75)}.focus\:stroke-gray-2\/80:focus{stroke:rgb(var(--gray-2)/.8)}.focus\:stroke-gray-2\/90:focus{stroke:rgb(var(--gray-2)/.9)}.focus\:stroke-gray-2\/95:focus{stroke:rgb(var(--gray-2)/.95)}.focus\:stroke-gray-3\/0:focus{stroke:rgb(var(--gray-3)/0)}.focus\:stroke-gray-3\/10:focus{stroke:rgb(var(--gray-3)/.1)}.focus\:stroke-gray-3\/100:focus{stroke:rgb(var(--gray-3)/1)}.focus\:stroke-gray-3\/20:focus{stroke:rgb(var(--gray-3)/.2)}.focus\:stroke-gray-3\/25:focus{stroke:rgb(var(--gray-3)/.25)}.focus\:stroke-gray-3\/30:focus{stroke:rgb(var(--gray-3)/.3)}.focus\:stroke-gray-3\/40:focus{stroke:rgb(var(--gray-3)/.4)}.focus\:stroke-gray-3\/5:focus{stroke:rgb(var(--gray-3)/.05)}.focus\:stroke-gray-3\/50:focus{stroke:rgb(var(--gray-3)/.5)}.focus\:stroke-gray-3\/60:focus{stroke:rgb(var(--gray-3)/.6)}.focus\:stroke-gray-3\/70:focus{stroke:rgb(var(--gray-3)/.7)}.focus\:stroke-gray-3\/75:focus{stroke:rgb(var(--gray-3)/.75)}.focus\:stroke-gray-3\/80:focus{stroke:rgb(var(--gray-3)/.8)}.focus\:stroke-gray-3\/90:focus{stroke:rgb(var(--gray-3)/.9)}.focus\:stroke-gray-3\/95:focus{stroke:rgb(var(--gray-3)/.95)}.focus\:stroke-gray-4\/0:focus{stroke:rgb(var(--gray-4)/0)}.focus\:stroke-gray-4\/10:focus{stroke:rgb(var(--gray-4)/.1)}.focus\:stroke-gray-4\/100:focus{stroke:rgb(var(--gray-4)/1)}.focus\:stroke-gray-4\/20:focus{stroke:rgb(var(--gray-4)/.2)}.focus\:stroke-gray-4\/25:focus{stroke:rgb(var(--gray-4)/.25)}.focus\:stroke-gray-4\/30:focus{stroke:rgb(var(--gray-4)/.3)}.focus\:stroke-gray-4\/40:focus{stroke:rgb(var(--gray-4)/.4)}.focus\:stroke-gray-4\/5:focus{stroke:rgb(var(--gray-4)/.05)}.focus\:stroke-gray-4\/50:focus{stroke:rgb(var(--gray-4)/.5)}.focus\:stroke-gray-4\/60:focus{stroke:rgb(var(--gray-4)/.6)}.focus\:stroke-gray-4\/70:focus{stroke:rgb(var(--gray-4)/.7)}.focus\:stroke-gray-4\/75:focus{stroke:rgb(var(--gray-4)/.75)}.focus\:stroke-gray-4\/80:focus{stroke:rgb(var(--gray-4)/.8)}.focus\:stroke-gray-4\/90:focus{stroke:rgb(var(--gray-4)/.9)}.focus\:stroke-gray-4\/95:focus{stroke:rgb(var(--gray-4)/.95)}.focus\:stroke-gray-5\/0:focus{stroke:rgb(var(--gray-5)/0)}.focus\:stroke-gray-5\/10:focus{stroke:rgb(var(--gray-5)/.1)}.focus\:stroke-gray-5\/100:focus{stroke:rgb(var(--gray-5)/1)}.focus\:stroke-gray-5\/20:focus{stroke:rgb(var(--gray-5)/.2)}.focus\:stroke-gray-5\/25:focus{stroke:rgb(var(--gray-5)/.25)}.focus\:stroke-gray-5\/30:focus{stroke:rgb(var(--gray-5)/.3)}.focus\:stroke-gray-5\/40:focus{stroke:rgb(var(--gray-5)/.4)}.focus\:stroke-gray-5\/5:focus{stroke:rgb(var(--gray-5)/.05)}.focus\:stroke-gray-5\/50:focus{stroke:rgb(var(--gray-5)/.5)}.focus\:stroke-gray-5\/60:focus{stroke:rgb(var(--gray-5)/.6)}.focus\:stroke-gray-5\/70:focus{stroke:rgb(var(--gray-5)/.7)}.focus\:stroke-gray-5\/75:focus{stroke:rgb(var(--gray-5)/.75)}.focus\:stroke-gray-5\/80:focus{stroke:rgb(var(--gray-5)/.8)}.focus\:stroke-gray-5\/90:focus{stroke:rgb(var(--gray-5)/.9)}.focus\:stroke-gray-5\/95:focus{stroke:rgb(var(--gray-5)/.95)}.focus\:stroke-gray-6\/0:focus{stroke:rgb(var(--gray-6)/0)}.focus\:stroke-gray-6\/10:focus{stroke:rgb(var(--gray-6)/.1)}.focus\:stroke-gray-6\/100:focus{stroke:rgb(var(--gray-6)/1)}.focus\:stroke-gray-6\/20:focus{stroke:rgb(var(--gray-6)/.2)}.focus\:stroke-gray-6\/25:focus{stroke:rgb(var(--gray-6)/.25)}.focus\:stroke-gray-6\/30:focus{stroke:rgb(var(--gray-6)/.3)}.focus\:stroke-gray-6\/40:focus{stroke:rgb(var(--gray-6)/.4)}.focus\:stroke-gray-6\/5:focus{stroke:rgb(var(--gray-6)/.05)}.focus\:stroke-gray-6\/50:focus{stroke:rgb(var(--gray-6)/.5)}.focus\:stroke-gray-6\/60:focus{stroke:rgb(var(--gray-6)/.6)}.focus\:stroke-gray-6\/70:focus{stroke:rgb(var(--gray-6)/.7)}.focus\:stroke-gray-6\/75:focus{stroke:rgb(var(--gray-6)/.75)}.focus\:stroke-gray-6\/80:focus{stroke:rgb(var(--gray-6)/.8)}.focus\:stroke-gray-6\/90:focus{stroke:rgb(var(--gray-6)/.9)}.focus\:stroke-gray-6\/95:focus{stroke:rgb(var(--gray-6)/.95)}.focus\:stroke-gray-7\/0:focus{stroke:rgb(var(--gray-7)/0)}.focus\:stroke-gray-7\/10:focus{stroke:rgb(var(--gray-7)/.1)}.focus\:stroke-gray-7\/100:focus{stroke:rgb(var(--gray-7)/1)}.focus\:stroke-gray-7\/20:focus{stroke:rgb(var(--gray-7)/.2)}.focus\:stroke-gray-7\/25:focus{stroke:rgb(var(--gray-7)/.25)}.focus\:stroke-gray-7\/30:focus{stroke:rgb(var(--gray-7)/.3)}.focus\:stroke-gray-7\/40:focus{stroke:rgb(var(--gray-7)/.4)}.focus\:stroke-gray-7\/5:focus{stroke:rgb(var(--gray-7)/.05)}.focus\:stroke-gray-7\/50:focus{stroke:rgb(var(--gray-7)/.5)}.focus\:stroke-gray-7\/60:focus{stroke:rgb(var(--gray-7)/.6)}.focus\:stroke-gray-7\/70:focus{stroke:rgb(var(--gray-7)/.7)}.focus\:stroke-gray-7\/75:focus{stroke:rgb(var(--gray-7)/.75)}.focus\:stroke-gray-7\/80:focus{stroke:rgb(var(--gray-7)/.8)}.focus\:stroke-gray-7\/90:focus{stroke:rgb(var(--gray-7)/.9)}.focus\:stroke-gray-7\/95:focus{stroke:rgb(var(--gray-7)/.95)}.focus\:stroke-gray-8\/0:focus{stroke:rgb(var(--gray-8)/0)}.focus\:stroke-gray-8\/10:focus{stroke:rgb(var(--gray-8)/.1)}.focus\:stroke-gray-8\/100:focus{stroke:rgb(var(--gray-8)/1)}.focus\:stroke-gray-8\/20:focus{stroke:rgb(var(--gray-8)/.2)}.focus\:stroke-gray-8\/25:focus{stroke:rgb(var(--gray-8)/.25)}.focus\:stroke-gray-8\/30:focus{stroke:rgb(var(--gray-8)/.3)}.focus\:stroke-gray-8\/40:focus{stroke:rgb(var(--gray-8)/.4)}.focus\:stroke-gray-8\/5:focus{stroke:rgb(var(--gray-8)/.05)}.focus\:stroke-gray-8\/50:focus{stroke:rgb(var(--gray-8)/.5)}.focus\:stroke-gray-8\/60:focus{stroke:rgb(var(--gray-8)/.6)}.focus\:stroke-gray-8\/70:focus{stroke:rgb(var(--gray-8)/.7)}.focus\:stroke-gray-8\/75:focus{stroke:rgb(var(--gray-8)/.75)}.focus\:stroke-gray-8\/80:focus{stroke:rgb(var(--gray-8)/.8)}.focus\:stroke-gray-8\/90:focus{stroke:rgb(var(--gray-8)/.9)}.focus\:stroke-gray-8\/95:focus{stroke:rgb(var(--gray-8)/.95)}.focus\:stroke-gray-9\/0:focus{stroke:rgb(var(--gray-9)/0)}.focus\:stroke-gray-9\/10:focus{stroke:rgb(var(--gray-9)/.1)}.focus\:stroke-gray-9\/100:focus{stroke:rgb(var(--gray-9)/1)}.focus\:stroke-gray-9\/20:focus{stroke:rgb(var(--gray-9)/.2)}.focus\:stroke-gray-9\/25:focus{stroke:rgb(var(--gray-9)/.25)}.focus\:stroke-gray-9\/30:focus{stroke:rgb(var(--gray-9)/.3)}.focus\:stroke-gray-9\/40:focus{stroke:rgb(var(--gray-9)/.4)}.focus\:stroke-gray-9\/5:focus{stroke:rgb(var(--gray-9)/.05)}.focus\:stroke-gray-9\/50:focus{stroke:rgb(var(--gray-9)/.5)}.focus\:stroke-gray-9\/60:focus{stroke:rgb(var(--gray-9)/.6)}.focus\:stroke-gray-9\/70:focus{stroke:rgb(var(--gray-9)/.7)}.focus\:stroke-gray-9\/75:focus{stroke:rgb(var(--gray-9)/.75)}.focus\:stroke-gray-9\/80:focus{stroke:rgb(var(--gray-9)/.8)}.focus\:stroke-gray-9\/90:focus{stroke:rgb(var(--gray-9)/.9)}.focus\:stroke-gray-9\/95:focus{stroke:rgb(var(--gray-9)/.95)}.focus\:stroke-green-1\/0:focus{stroke:rgb(var(--green-1)/0)}.focus\:stroke-green-1\/10:focus{stroke:rgb(var(--green-1)/.1)}.focus\:stroke-green-1\/100:focus{stroke:rgb(var(--green-1)/1)}.focus\:stroke-green-1\/20:focus{stroke:rgb(var(--green-1)/.2)}.focus\:stroke-green-1\/25:focus{stroke:rgb(var(--green-1)/.25)}.focus\:stroke-green-1\/30:focus{stroke:rgb(var(--green-1)/.3)}.focus\:stroke-green-1\/40:focus{stroke:rgb(var(--green-1)/.4)}.focus\:stroke-green-1\/5:focus{stroke:rgb(var(--green-1)/.05)}.focus\:stroke-green-1\/50:focus{stroke:rgb(var(--green-1)/.5)}.focus\:stroke-green-1\/60:focus{stroke:rgb(var(--green-1)/.6)}.focus\:stroke-green-1\/70:focus{stroke:rgb(var(--green-1)/.7)}.focus\:stroke-green-1\/75:focus{stroke:rgb(var(--green-1)/.75)}.focus\:stroke-green-1\/80:focus{stroke:rgb(var(--green-1)/.8)}.focus\:stroke-green-1\/90:focus{stroke:rgb(var(--green-1)/.9)}.focus\:stroke-green-1\/95:focus{stroke:rgb(var(--green-1)/.95)}.focus\:stroke-green-10\/0:focus{stroke:rgb(var(--green-10)/0)}.focus\:stroke-green-10\/10:focus{stroke:rgb(var(--green-10)/.1)}.focus\:stroke-green-10\/100:focus{stroke:rgb(var(--green-10)/1)}.focus\:stroke-green-10\/20:focus{stroke:rgb(var(--green-10)/.2)}.focus\:stroke-green-10\/25:focus{stroke:rgb(var(--green-10)/.25)}.focus\:stroke-green-10\/30:focus{stroke:rgb(var(--green-10)/.3)}.focus\:stroke-green-10\/40:focus{stroke:rgb(var(--green-10)/.4)}.focus\:stroke-green-10\/5:focus{stroke:rgb(var(--green-10)/.05)}.focus\:stroke-green-10\/50:focus{stroke:rgb(var(--green-10)/.5)}.focus\:stroke-green-10\/60:focus{stroke:rgb(var(--green-10)/.6)}.focus\:stroke-green-10\/70:focus{stroke:rgb(var(--green-10)/.7)}.focus\:stroke-green-10\/75:focus{stroke:rgb(var(--green-10)/.75)}.focus\:stroke-green-10\/80:focus{stroke:rgb(var(--green-10)/.8)}.focus\:stroke-green-10\/90:focus{stroke:rgb(var(--green-10)/.9)}.focus\:stroke-green-10\/95:focus{stroke:rgb(var(--green-10)/.95)}.focus\:stroke-green-2\/0:focus{stroke:rgb(var(--green-2)/0)}.focus\:stroke-green-2\/10:focus{stroke:rgb(var(--green-2)/.1)}.focus\:stroke-green-2\/100:focus{stroke:rgb(var(--green-2)/1)}.focus\:stroke-green-2\/20:focus{stroke:rgb(var(--green-2)/.2)}.focus\:stroke-green-2\/25:focus{stroke:rgb(var(--green-2)/.25)}.focus\:stroke-green-2\/30:focus{stroke:rgb(var(--green-2)/.3)}.focus\:stroke-green-2\/40:focus{stroke:rgb(var(--green-2)/.4)}.focus\:stroke-green-2\/5:focus{stroke:rgb(var(--green-2)/.05)}.focus\:stroke-green-2\/50:focus{stroke:rgb(var(--green-2)/.5)}.focus\:stroke-green-2\/60:focus{stroke:rgb(var(--green-2)/.6)}.focus\:stroke-green-2\/70:focus{stroke:rgb(var(--green-2)/.7)}.focus\:stroke-green-2\/75:focus{stroke:rgb(var(--green-2)/.75)}.focus\:stroke-green-2\/80:focus{stroke:rgb(var(--green-2)/.8)}.focus\:stroke-green-2\/90:focus{stroke:rgb(var(--green-2)/.9)}.focus\:stroke-green-2\/95:focus{stroke:rgb(var(--green-2)/.95)}.focus\:stroke-green-3\/0:focus{stroke:rgb(var(--green-3)/0)}.focus\:stroke-green-3\/10:focus{stroke:rgb(var(--green-3)/.1)}.focus\:stroke-green-3\/100:focus{stroke:rgb(var(--green-3)/1)}.focus\:stroke-green-3\/20:focus{stroke:rgb(var(--green-3)/.2)}.focus\:stroke-green-3\/25:focus{stroke:rgb(var(--green-3)/.25)}.focus\:stroke-green-3\/30:focus{stroke:rgb(var(--green-3)/.3)}.focus\:stroke-green-3\/40:focus{stroke:rgb(var(--green-3)/.4)}.focus\:stroke-green-3\/5:focus{stroke:rgb(var(--green-3)/.05)}.focus\:stroke-green-3\/50:focus{stroke:rgb(var(--green-3)/.5)}.focus\:stroke-green-3\/60:focus{stroke:rgb(var(--green-3)/.6)}.focus\:stroke-green-3\/70:focus{stroke:rgb(var(--green-3)/.7)}.focus\:stroke-green-3\/75:focus{stroke:rgb(var(--green-3)/.75)}.focus\:stroke-green-3\/80:focus{stroke:rgb(var(--green-3)/.8)}.focus\:stroke-green-3\/90:focus{stroke:rgb(var(--green-3)/.9)}.focus\:stroke-green-3\/95:focus{stroke:rgb(var(--green-3)/.95)}.focus\:stroke-green-4\/0:focus{stroke:rgb(var(--green-4)/0)}.focus\:stroke-green-4\/10:focus{stroke:rgb(var(--green-4)/.1)}.focus\:stroke-green-4\/100:focus{stroke:rgb(var(--green-4)/1)}.focus\:stroke-green-4\/20:focus{stroke:rgb(var(--green-4)/.2)}.focus\:stroke-green-4\/25:focus{stroke:rgb(var(--green-4)/.25)}.focus\:stroke-green-4\/30:focus{stroke:rgb(var(--green-4)/.3)}.focus\:stroke-green-4\/40:focus{stroke:rgb(var(--green-4)/.4)}.focus\:stroke-green-4\/5:focus{stroke:rgb(var(--green-4)/.05)}.focus\:stroke-green-4\/50:focus{stroke:rgb(var(--green-4)/.5)}.focus\:stroke-green-4\/60:focus{stroke:rgb(var(--green-4)/.6)}.focus\:stroke-green-4\/70:focus{stroke:rgb(var(--green-4)/.7)}.focus\:stroke-green-4\/75:focus{stroke:rgb(var(--green-4)/.75)}.focus\:stroke-green-4\/80:focus{stroke:rgb(var(--green-4)/.8)}.focus\:stroke-green-4\/90:focus{stroke:rgb(var(--green-4)/.9)}.focus\:stroke-green-4\/95:focus{stroke:rgb(var(--green-4)/.95)}.focus\:stroke-green-5\/0:focus{stroke:rgb(var(--green-5)/0)}.focus\:stroke-green-5\/10:focus{stroke:rgb(var(--green-5)/.1)}.focus\:stroke-green-5\/100:focus{stroke:rgb(var(--green-5)/1)}.focus\:stroke-green-5\/20:focus{stroke:rgb(var(--green-5)/.2)}.focus\:stroke-green-5\/25:focus{stroke:rgb(var(--green-5)/.25)}.focus\:stroke-green-5\/30:focus{stroke:rgb(var(--green-5)/.3)}.focus\:stroke-green-5\/40:focus{stroke:rgb(var(--green-5)/.4)}.focus\:stroke-green-5\/5:focus{stroke:rgb(var(--green-5)/.05)}.focus\:stroke-green-5\/50:focus{stroke:rgb(var(--green-5)/.5)}.focus\:stroke-green-5\/60:focus{stroke:rgb(var(--green-5)/.6)}.focus\:stroke-green-5\/70:focus{stroke:rgb(var(--green-5)/.7)}.focus\:stroke-green-5\/75:focus{stroke:rgb(var(--green-5)/.75)}.focus\:stroke-green-5\/80:focus{stroke:rgb(var(--green-5)/.8)}.focus\:stroke-green-5\/90:focus{stroke:rgb(var(--green-5)/.9)}.focus\:stroke-green-5\/95:focus{stroke:rgb(var(--green-5)/.95)}.focus\:stroke-green-6\/0:focus{stroke:rgb(var(--green-6)/0)}.focus\:stroke-green-6\/10:focus{stroke:rgb(var(--green-6)/.1)}.focus\:stroke-green-6\/100:focus{stroke:rgb(var(--green-6)/1)}.focus\:stroke-green-6\/20:focus{stroke:rgb(var(--green-6)/.2)}.focus\:stroke-green-6\/25:focus{stroke:rgb(var(--green-6)/.25)}.focus\:stroke-green-6\/30:focus{stroke:rgb(var(--green-6)/.3)}.focus\:stroke-green-6\/40:focus{stroke:rgb(var(--green-6)/.4)}.focus\:stroke-green-6\/5:focus{stroke:rgb(var(--green-6)/.05)}.focus\:stroke-green-6\/50:focus{stroke:rgb(var(--green-6)/.5)}.focus\:stroke-green-6\/60:focus{stroke:rgb(var(--green-6)/.6)}.focus\:stroke-green-6\/70:focus{stroke:rgb(var(--green-6)/.7)}.focus\:stroke-green-6\/75:focus{stroke:rgb(var(--green-6)/.75)}.focus\:stroke-green-6\/80:focus{stroke:rgb(var(--green-6)/.8)}.focus\:stroke-green-6\/90:focus{stroke:rgb(var(--green-6)/.9)}.focus\:stroke-green-6\/95:focus{stroke:rgb(var(--green-6)/.95)}.focus\:stroke-green-7\/0:focus{stroke:rgb(var(--green-7)/0)}.focus\:stroke-green-7\/10:focus{stroke:rgb(var(--green-7)/.1)}.focus\:stroke-green-7\/100:focus{stroke:rgb(var(--green-7)/1)}.focus\:stroke-green-7\/20:focus{stroke:rgb(var(--green-7)/.2)}.focus\:stroke-green-7\/25:focus{stroke:rgb(var(--green-7)/.25)}.focus\:stroke-green-7\/30:focus{stroke:rgb(var(--green-7)/.3)}.focus\:stroke-green-7\/40:focus{stroke:rgb(var(--green-7)/.4)}.focus\:stroke-green-7\/5:focus{stroke:rgb(var(--green-7)/.05)}.focus\:stroke-green-7\/50:focus{stroke:rgb(var(--green-7)/.5)}.focus\:stroke-green-7\/60:focus{stroke:rgb(var(--green-7)/.6)}.focus\:stroke-green-7\/70:focus{stroke:rgb(var(--green-7)/.7)}.focus\:stroke-green-7\/75:focus{stroke:rgb(var(--green-7)/.75)}.focus\:stroke-green-7\/80:focus{stroke:rgb(var(--green-7)/.8)}.focus\:stroke-green-7\/90:focus{stroke:rgb(var(--green-7)/.9)}.focus\:stroke-green-7\/95:focus{stroke:rgb(var(--green-7)/.95)}.focus\:stroke-green-8\/0:focus{stroke:rgb(var(--green-8)/0)}.focus\:stroke-green-8\/10:focus{stroke:rgb(var(--green-8)/.1)}.focus\:stroke-green-8\/100:focus{stroke:rgb(var(--green-8)/1)}.focus\:stroke-green-8\/20:focus{stroke:rgb(var(--green-8)/.2)}.focus\:stroke-green-8\/25:focus{stroke:rgb(var(--green-8)/.25)}.focus\:stroke-green-8\/30:focus{stroke:rgb(var(--green-8)/.3)}.focus\:stroke-green-8\/40:focus{stroke:rgb(var(--green-8)/.4)}.focus\:stroke-green-8\/5:focus{stroke:rgb(var(--green-8)/.05)}.focus\:stroke-green-8\/50:focus{stroke:rgb(var(--green-8)/.5)}.focus\:stroke-green-8\/60:focus{stroke:rgb(var(--green-8)/.6)}.focus\:stroke-green-8\/70:focus{stroke:rgb(var(--green-8)/.7)}.focus\:stroke-green-8\/75:focus{stroke:rgb(var(--green-8)/.75)}.focus\:stroke-green-8\/80:focus{stroke:rgb(var(--green-8)/.8)}.focus\:stroke-green-8\/90:focus{stroke:rgb(var(--green-8)/.9)}.focus\:stroke-green-8\/95:focus{stroke:rgb(var(--green-8)/.95)}.focus\:stroke-green-9\/0:focus{stroke:rgb(var(--green-9)/0)}.focus\:stroke-green-9\/10:focus{stroke:rgb(var(--green-9)/.1)}.focus\:stroke-green-9\/100:focus{stroke:rgb(var(--green-9)/1)}.focus\:stroke-green-9\/20:focus{stroke:rgb(var(--green-9)/.2)}.focus\:stroke-green-9\/25:focus{stroke:rgb(var(--green-9)/.25)}.focus\:stroke-green-9\/30:focus{stroke:rgb(var(--green-9)/.3)}.focus\:stroke-green-9\/40:focus{stroke:rgb(var(--green-9)/.4)}.focus\:stroke-green-9\/5:focus{stroke:rgb(var(--green-9)/.05)}.focus\:stroke-green-9\/50:focus{stroke:rgb(var(--green-9)/.5)}.focus\:stroke-green-9\/60:focus{stroke:rgb(var(--green-9)/.6)}.focus\:stroke-green-9\/70:focus{stroke:rgb(var(--green-9)/.7)}.focus\:stroke-green-9\/75:focus{stroke:rgb(var(--green-9)/.75)}.focus\:stroke-green-9\/80:focus{stroke:rgb(var(--green-9)/.8)}.focus\:stroke-green-9\/90:focus{stroke:rgb(var(--green-9)/.9)}.focus\:stroke-green-9\/95:focus{stroke:rgb(var(--green-9)/.95)}.focus\:stroke-pink-1\/0:focus{stroke:rgb(var(--pink-1)/0)}.focus\:stroke-pink-1\/10:focus{stroke:rgb(var(--pink-1)/.1)}.focus\:stroke-pink-1\/100:focus{stroke:rgb(var(--pink-1)/1)}.focus\:stroke-pink-1\/20:focus{stroke:rgb(var(--pink-1)/.2)}.focus\:stroke-pink-1\/25:focus{stroke:rgb(var(--pink-1)/.25)}.focus\:stroke-pink-1\/30:focus{stroke:rgb(var(--pink-1)/.3)}.focus\:stroke-pink-1\/40:focus{stroke:rgb(var(--pink-1)/.4)}.focus\:stroke-pink-1\/5:focus{stroke:rgb(var(--pink-1)/.05)}.focus\:stroke-pink-1\/50:focus{stroke:rgb(var(--pink-1)/.5)}.focus\:stroke-pink-1\/60:focus{stroke:rgb(var(--pink-1)/.6)}.focus\:stroke-pink-1\/70:focus{stroke:rgb(var(--pink-1)/.7)}.focus\:stroke-pink-1\/75:focus{stroke:rgb(var(--pink-1)/.75)}.focus\:stroke-pink-1\/80:focus{stroke:rgb(var(--pink-1)/.8)}.focus\:stroke-pink-1\/90:focus{stroke:rgb(var(--pink-1)/.9)}.focus\:stroke-pink-1\/95:focus{stroke:rgb(var(--pink-1)/.95)}.focus\:stroke-pink-10\/0:focus{stroke:rgb(var(--pink-10)/0)}.focus\:stroke-pink-10\/10:focus{stroke:rgb(var(--pink-10)/.1)}.focus\:stroke-pink-10\/100:focus{stroke:rgb(var(--pink-10)/1)}.focus\:stroke-pink-10\/20:focus{stroke:rgb(var(--pink-10)/.2)}.focus\:stroke-pink-10\/25:focus{stroke:rgb(var(--pink-10)/.25)}.focus\:stroke-pink-10\/30:focus{stroke:rgb(var(--pink-10)/.3)}.focus\:stroke-pink-10\/40:focus{stroke:rgb(var(--pink-10)/.4)}.focus\:stroke-pink-10\/5:focus{stroke:rgb(var(--pink-10)/.05)}.focus\:stroke-pink-10\/50:focus{stroke:rgb(var(--pink-10)/.5)}.focus\:stroke-pink-10\/60:focus{stroke:rgb(var(--pink-10)/.6)}.focus\:stroke-pink-10\/70:focus{stroke:rgb(var(--pink-10)/.7)}.focus\:stroke-pink-10\/75:focus{stroke:rgb(var(--pink-10)/.75)}.focus\:stroke-pink-10\/80:focus{stroke:rgb(var(--pink-10)/.8)}.focus\:stroke-pink-10\/90:focus{stroke:rgb(var(--pink-10)/.9)}.focus\:stroke-pink-10\/95:focus{stroke:rgb(var(--pink-10)/.95)}.focus\:stroke-pink-2\/0:focus{stroke:rgb(var(--pink-2)/0)}.focus\:stroke-pink-2\/10:focus{stroke:rgb(var(--pink-2)/.1)}.focus\:stroke-pink-2\/100:focus{stroke:rgb(var(--pink-2)/1)}.focus\:stroke-pink-2\/20:focus{stroke:rgb(var(--pink-2)/.2)}.focus\:stroke-pink-2\/25:focus{stroke:rgb(var(--pink-2)/.25)}.focus\:stroke-pink-2\/30:focus{stroke:rgb(var(--pink-2)/.3)}.focus\:stroke-pink-2\/40:focus{stroke:rgb(var(--pink-2)/.4)}.focus\:stroke-pink-2\/5:focus{stroke:rgb(var(--pink-2)/.05)}.focus\:stroke-pink-2\/50:focus{stroke:rgb(var(--pink-2)/.5)}.focus\:stroke-pink-2\/60:focus{stroke:rgb(var(--pink-2)/.6)}.focus\:stroke-pink-2\/70:focus{stroke:rgb(var(--pink-2)/.7)}.focus\:stroke-pink-2\/75:focus{stroke:rgb(var(--pink-2)/.75)}.focus\:stroke-pink-2\/80:focus{stroke:rgb(var(--pink-2)/.8)}.focus\:stroke-pink-2\/90:focus{stroke:rgb(var(--pink-2)/.9)}.focus\:stroke-pink-2\/95:focus{stroke:rgb(var(--pink-2)/.95)}.focus\:stroke-pink-3\/0:focus{stroke:rgb(var(--pink-3)/0)}.focus\:stroke-pink-3\/10:focus{stroke:rgb(var(--pink-3)/.1)}.focus\:stroke-pink-3\/100:focus{stroke:rgb(var(--pink-3)/1)}.focus\:stroke-pink-3\/20:focus{stroke:rgb(var(--pink-3)/.2)}.focus\:stroke-pink-3\/25:focus{stroke:rgb(var(--pink-3)/.25)}.focus\:stroke-pink-3\/30:focus{stroke:rgb(var(--pink-3)/.3)}.focus\:stroke-pink-3\/40:focus{stroke:rgb(var(--pink-3)/.4)}.focus\:stroke-pink-3\/5:focus{stroke:rgb(var(--pink-3)/.05)}.focus\:stroke-pink-3\/50:focus{stroke:rgb(var(--pink-3)/.5)}.focus\:stroke-pink-3\/60:focus{stroke:rgb(var(--pink-3)/.6)}.focus\:stroke-pink-3\/70:focus{stroke:rgb(var(--pink-3)/.7)}.focus\:stroke-pink-3\/75:focus{stroke:rgb(var(--pink-3)/.75)}.focus\:stroke-pink-3\/80:focus{stroke:rgb(var(--pink-3)/.8)}.focus\:stroke-pink-3\/90:focus{stroke:rgb(var(--pink-3)/.9)}.focus\:stroke-pink-3\/95:focus{stroke:rgb(var(--pink-3)/.95)}.focus\:stroke-pink-4\/0:focus{stroke:rgb(var(--pink-4)/0)}.focus\:stroke-pink-4\/10:focus{stroke:rgb(var(--pink-4)/.1)}.focus\:stroke-pink-4\/100:focus{stroke:rgb(var(--pink-4)/1)}.focus\:stroke-pink-4\/20:focus{stroke:rgb(var(--pink-4)/.2)}.focus\:stroke-pink-4\/25:focus{stroke:rgb(var(--pink-4)/.25)}.focus\:stroke-pink-4\/30:focus{stroke:rgb(var(--pink-4)/.3)}.focus\:stroke-pink-4\/40:focus{stroke:rgb(var(--pink-4)/.4)}.focus\:stroke-pink-4\/5:focus{stroke:rgb(var(--pink-4)/.05)}.focus\:stroke-pink-4\/50:focus{stroke:rgb(var(--pink-4)/.5)}.focus\:stroke-pink-4\/60:focus{stroke:rgb(var(--pink-4)/.6)}.focus\:stroke-pink-4\/70:focus{stroke:rgb(var(--pink-4)/.7)}.focus\:stroke-pink-4\/75:focus{stroke:rgb(var(--pink-4)/.75)}.focus\:stroke-pink-4\/80:focus{stroke:rgb(var(--pink-4)/.8)}.focus\:stroke-pink-4\/90:focus{stroke:rgb(var(--pink-4)/.9)}.focus\:stroke-pink-4\/95:focus{stroke:rgb(var(--pink-4)/.95)}.focus\:stroke-pink-5\/0:focus{stroke:rgb(var(--pink-5)/0)}.focus\:stroke-pink-5\/10:focus{stroke:rgb(var(--pink-5)/.1)}.focus\:stroke-pink-5\/100:focus{stroke:rgb(var(--pink-5)/1)}.focus\:stroke-pink-5\/20:focus{stroke:rgb(var(--pink-5)/.2)}.focus\:stroke-pink-5\/25:focus{stroke:rgb(var(--pink-5)/.25)}.focus\:stroke-pink-5\/30:focus{stroke:rgb(var(--pink-5)/.3)}.focus\:stroke-pink-5\/40:focus{stroke:rgb(var(--pink-5)/.4)}.focus\:stroke-pink-5\/5:focus{stroke:rgb(var(--pink-5)/.05)}.focus\:stroke-pink-5\/50:focus{stroke:rgb(var(--pink-5)/.5)}.focus\:stroke-pink-5\/60:focus{stroke:rgb(var(--pink-5)/.6)}.focus\:stroke-pink-5\/70:focus{stroke:rgb(var(--pink-5)/.7)}.focus\:stroke-pink-5\/75:focus{stroke:rgb(var(--pink-5)/.75)}.focus\:stroke-pink-5\/80:focus{stroke:rgb(var(--pink-5)/.8)}.focus\:stroke-pink-5\/90:focus{stroke:rgb(var(--pink-5)/.9)}.focus\:stroke-pink-5\/95:focus{stroke:rgb(var(--pink-5)/.95)}.focus\:stroke-pink-6\/0:focus{stroke:rgb(var(--pink-6)/0)}.focus\:stroke-pink-6\/10:focus{stroke:rgb(var(--pink-6)/.1)}.focus\:stroke-pink-6\/100:focus{stroke:rgb(var(--pink-6)/1)}.focus\:stroke-pink-6\/20:focus{stroke:rgb(var(--pink-6)/.2)}.focus\:stroke-pink-6\/25:focus{stroke:rgb(var(--pink-6)/.25)}.focus\:stroke-pink-6\/30:focus{stroke:rgb(var(--pink-6)/.3)}.focus\:stroke-pink-6\/40:focus{stroke:rgb(var(--pink-6)/.4)}.focus\:stroke-pink-6\/5:focus{stroke:rgb(var(--pink-6)/.05)}.focus\:stroke-pink-6\/50:focus{stroke:rgb(var(--pink-6)/.5)}.focus\:stroke-pink-6\/60:focus{stroke:rgb(var(--pink-6)/.6)}.focus\:stroke-pink-6\/70:focus{stroke:rgb(var(--pink-6)/.7)}.focus\:stroke-pink-6\/75:focus{stroke:rgb(var(--pink-6)/.75)}.focus\:stroke-pink-6\/80:focus{stroke:rgb(var(--pink-6)/.8)}.focus\:stroke-pink-6\/90:focus{stroke:rgb(var(--pink-6)/.9)}.focus\:stroke-pink-6\/95:focus{stroke:rgb(var(--pink-6)/.95)}.focus\:stroke-pink-7\/0:focus{stroke:rgb(var(--pink-7)/0)}.focus\:stroke-pink-7\/10:focus{stroke:rgb(var(--pink-7)/.1)}.focus\:stroke-pink-7\/100:focus{stroke:rgb(var(--pink-7)/1)}.focus\:stroke-pink-7\/20:focus{stroke:rgb(var(--pink-7)/.2)}.focus\:stroke-pink-7\/25:focus{stroke:rgb(var(--pink-7)/.25)}.focus\:stroke-pink-7\/30:focus{stroke:rgb(var(--pink-7)/.3)}.focus\:stroke-pink-7\/40:focus{stroke:rgb(var(--pink-7)/.4)}.focus\:stroke-pink-7\/5:focus{stroke:rgb(var(--pink-7)/.05)}.focus\:stroke-pink-7\/50:focus{stroke:rgb(var(--pink-7)/.5)}.focus\:stroke-pink-7\/60:focus{stroke:rgb(var(--pink-7)/.6)}.focus\:stroke-pink-7\/70:focus{stroke:rgb(var(--pink-7)/.7)}.focus\:stroke-pink-7\/75:focus{stroke:rgb(var(--pink-7)/.75)}.focus\:stroke-pink-7\/80:focus{stroke:rgb(var(--pink-7)/.8)}.focus\:stroke-pink-7\/90:focus{stroke:rgb(var(--pink-7)/.9)}.focus\:stroke-pink-7\/95:focus{stroke:rgb(var(--pink-7)/.95)}.focus\:stroke-pink-8\/0:focus{stroke:rgb(var(--pink-8)/0)}.focus\:stroke-pink-8\/10:focus{stroke:rgb(var(--pink-8)/.1)}.focus\:stroke-pink-8\/100:focus{stroke:rgb(var(--pink-8)/1)}.focus\:stroke-pink-8\/20:focus{stroke:rgb(var(--pink-8)/.2)}.focus\:stroke-pink-8\/25:focus{stroke:rgb(var(--pink-8)/.25)}.focus\:stroke-pink-8\/30:focus{stroke:rgb(var(--pink-8)/.3)}.focus\:stroke-pink-8\/40:focus{stroke:rgb(var(--pink-8)/.4)}.focus\:stroke-pink-8\/5:focus{stroke:rgb(var(--pink-8)/.05)}.focus\:stroke-pink-8\/50:focus{stroke:rgb(var(--pink-8)/.5)}.focus\:stroke-pink-8\/60:focus{stroke:rgb(var(--pink-8)/.6)}.focus\:stroke-pink-8\/70:focus{stroke:rgb(var(--pink-8)/.7)}.focus\:stroke-pink-8\/75:focus{stroke:rgb(var(--pink-8)/.75)}.focus\:stroke-pink-8\/80:focus{stroke:rgb(var(--pink-8)/.8)}.focus\:stroke-pink-8\/90:focus{stroke:rgb(var(--pink-8)/.9)}.focus\:stroke-pink-8\/95:focus{stroke:rgb(var(--pink-8)/.95)}.focus\:stroke-pink-9\/0:focus{stroke:rgb(var(--pink-9)/0)}.focus\:stroke-pink-9\/10:focus{stroke:rgb(var(--pink-9)/.1)}.focus\:stroke-pink-9\/100:focus{stroke:rgb(var(--pink-9)/1)}.focus\:stroke-pink-9\/20:focus{stroke:rgb(var(--pink-9)/.2)}.focus\:stroke-pink-9\/25:focus{stroke:rgb(var(--pink-9)/.25)}.focus\:stroke-pink-9\/30:focus{stroke:rgb(var(--pink-9)/.3)}.focus\:stroke-pink-9\/40:focus{stroke:rgb(var(--pink-9)/.4)}.focus\:stroke-pink-9\/5:focus{stroke:rgb(var(--pink-9)/.05)}.focus\:stroke-pink-9\/50:focus{stroke:rgb(var(--pink-9)/.5)}.focus\:stroke-pink-9\/60:focus{stroke:rgb(var(--pink-9)/.6)}.focus\:stroke-pink-9\/70:focus{stroke:rgb(var(--pink-9)/.7)}.focus\:stroke-pink-9\/75:focus{stroke:rgb(var(--pink-9)/.75)}.focus\:stroke-pink-9\/80:focus{stroke:rgb(var(--pink-9)/.8)}.focus\:stroke-pink-9\/90:focus{stroke:rgb(var(--pink-9)/.9)}.focus\:stroke-pink-9\/95:focus{stroke:rgb(var(--pink-9)/.95)}.focus\:stroke-primary:focus{stroke:rgb(var(--primary))}.focus\:stroke-primary\/0:focus{stroke:rgb(var(--primary)/0)}.focus\:stroke-primary\/10:focus{stroke:rgb(var(--primary)/.1)}.focus\:stroke-primary\/100:focus{stroke:rgb(var(--primary)/1)}.focus\:stroke-primary\/20:focus{stroke:rgb(var(--primary)/.2)}.focus\:stroke-primary\/25:focus{stroke:rgb(var(--primary)/.25)}.focus\:stroke-primary\/30:focus{stroke:rgb(var(--primary)/.3)}.focus\:stroke-primary\/40:focus{stroke:rgb(var(--primary)/.4)}.focus\:stroke-primary\/5:focus{stroke:rgb(var(--primary)/.05)}.focus\:stroke-primary\/50:focus{stroke:rgb(var(--primary)/.5)}.focus\:stroke-primary\/60:focus{stroke:rgb(var(--primary)/.6)}.focus\:stroke-primary\/70:focus{stroke:rgb(var(--primary)/.7)}.focus\:stroke-primary\/75:focus{stroke:rgb(var(--primary)/.75)}.focus\:stroke-primary\/80:focus{stroke:rgb(var(--primary)/.8)}.focus\:stroke-primary\/90:focus{stroke:rgb(var(--primary)/.9)}.focus\:stroke-primary\/95:focus{stroke:rgb(var(--primary)/.95)}.focus\:stroke-purple-1\/0:focus{stroke:rgb(var(--purple-1)/0)}.focus\:stroke-purple-1\/10:focus{stroke:rgb(var(--purple-1)/.1)}.focus\:stroke-purple-1\/100:focus{stroke:rgb(var(--purple-1)/1)}.focus\:stroke-purple-1\/20:focus{stroke:rgb(var(--purple-1)/.2)}.focus\:stroke-purple-1\/25:focus{stroke:rgb(var(--purple-1)/.25)}.focus\:stroke-purple-1\/30:focus{stroke:rgb(var(--purple-1)/.3)}.focus\:stroke-purple-1\/40:focus{stroke:rgb(var(--purple-1)/.4)}.focus\:stroke-purple-1\/5:focus{stroke:rgb(var(--purple-1)/.05)}.focus\:stroke-purple-1\/50:focus{stroke:rgb(var(--purple-1)/.5)}.focus\:stroke-purple-1\/60:focus{stroke:rgb(var(--purple-1)/.6)}.focus\:stroke-purple-1\/70:focus{stroke:rgb(var(--purple-1)/.7)}.focus\:stroke-purple-1\/75:focus{stroke:rgb(var(--purple-1)/.75)}.focus\:stroke-purple-1\/80:focus{stroke:rgb(var(--purple-1)/.8)}.focus\:stroke-purple-1\/90:focus{stroke:rgb(var(--purple-1)/.9)}.focus\:stroke-purple-1\/95:focus{stroke:rgb(var(--purple-1)/.95)}.focus\:stroke-purple-10\/0:focus{stroke:rgb(var(--purple-10)/0)}.focus\:stroke-purple-10\/10:focus{stroke:rgb(var(--purple-10)/.1)}.focus\:stroke-purple-10\/100:focus{stroke:rgb(var(--purple-10)/1)}.focus\:stroke-purple-10\/20:focus{stroke:rgb(var(--purple-10)/.2)}.focus\:stroke-purple-10\/25:focus{stroke:rgb(var(--purple-10)/.25)}.focus\:stroke-purple-10\/30:focus{stroke:rgb(var(--purple-10)/.3)}.focus\:stroke-purple-10\/40:focus{stroke:rgb(var(--purple-10)/.4)}.focus\:stroke-purple-10\/5:focus{stroke:rgb(var(--purple-10)/.05)}.focus\:stroke-purple-10\/50:focus{stroke:rgb(var(--purple-10)/.5)}.focus\:stroke-purple-10\/60:focus{stroke:rgb(var(--purple-10)/.6)}.focus\:stroke-purple-10\/70:focus{stroke:rgb(var(--purple-10)/.7)}.focus\:stroke-purple-10\/75:focus{stroke:rgb(var(--purple-10)/.75)}.focus\:stroke-purple-10\/80:focus{stroke:rgb(var(--purple-10)/.8)}.focus\:stroke-purple-10\/90:focus{stroke:rgb(var(--purple-10)/.9)}.focus\:stroke-purple-10\/95:focus{stroke:rgb(var(--purple-10)/.95)}.focus\:stroke-purple-2\/0:focus{stroke:rgb(var(--purple-2)/0)}.focus\:stroke-purple-2\/10:focus{stroke:rgb(var(--purple-2)/.1)}.focus\:stroke-purple-2\/100:focus{stroke:rgb(var(--purple-2)/1)}.focus\:stroke-purple-2\/20:focus{stroke:rgb(var(--purple-2)/.2)}.focus\:stroke-purple-2\/25:focus{stroke:rgb(var(--purple-2)/.25)}.focus\:stroke-purple-2\/30:focus{stroke:rgb(var(--purple-2)/.3)}.focus\:stroke-purple-2\/40:focus{stroke:rgb(var(--purple-2)/.4)}.focus\:stroke-purple-2\/5:focus{stroke:rgb(var(--purple-2)/.05)}.focus\:stroke-purple-2\/50:focus{stroke:rgb(var(--purple-2)/.5)}.focus\:stroke-purple-2\/60:focus{stroke:rgb(var(--purple-2)/.6)}.focus\:stroke-purple-2\/70:focus{stroke:rgb(var(--purple-2)/.7)}.focus\:stroke-purple-2\/75:focus{stroke:rgb(var(--purple-2)/.75)}.focus\:stroke-purple-2\/80:focus{stroke:rgb(var(--purple-2)/.8)}.focus\:stroke-purple-2\/90:focus{stroke:rgb(var(--purple-2)/.9)}.focus\:stroke-purple-2\/95:focus{stroke:rgb(var(--purple-2)/.95)}.focus\:stroke-purple-3\/0:focus{stroke:rgb(var(--purple-3)/0)}.focus\:stroke-purple-3\/10:focus{stroke:rgb(var(--purple-3)/.1)}.focus\:stroke-purple-3\/100:focus{stroke:rgb(var(--purple-3)/1)}.focus\:stroke-purple-3\/20:focus{stroke:rgb(var(--purple-3)/.2)}.focus\:stroke-purple-3\/25:focus{stroke:rgb(var(--purple-3)/.25)}.focus\:stroke-purple-3\/30:focus{stroke:rgb(var(--purple-3)/.3)}.focus\:stroke-purple-3\/40:focus{stroke:rgb(var(--purple-3)/.4)}.focus\:stroke-purple-3\/5:focus{stroke:rgb(var(--purple-3)/.05)}.focus\:stroke-purple-3\/50:focus{stroke:rgb(var(--purple-3)/.5)}.focus\:stroke-purple-3\/60:focus{stroke:rgb(var(--purple-3)/.6)}.focus\:stroke-purple-3\/70:focus{stroke:rgb(var(--purple-3)/.7)}.focus\:stroke-purple-3\/75:focus{stroke:rgb(var(--purple-3)/.75)}.focus\:stroke-purple-3\/80:focus{stroke:rgb(var(--purple-3)/.8)}.focus\:stroke-purple-3\/90:focus{stroke:rgb(var(--purple-3)/.9)}.focus\:stroke-purple-3\/95:focus{stroke:rgb(var(--purple-3)/.95)}.focus\:stroke-purple-4\/0:focus{stroke:rgb(var(--purple-4)/0)}.focus\:stroke-purple-4\/10:focus{stroke:rgb(var(--purple-4)/.1)}.focus\:stroke-purple-4\/100:focus{stroke:rgb(var(--purple-4)/1)}.focus\:stroke-purple-4\/20:focus{stroke:rgb(var(--purple-4)/.2)}.focus\:stroke-purple-4\/25:focus{stroke:rgb(var(--purple-4)/.25)}.focus\:stroke-purple-4\/30:focus{stroke:rgb(var(--purple-4)/.3)}.focus\:stroke-purple-4\/40:focus{stroke:rgb(var(--purple-4)/.4)}.focus\:stroke-purple-4\/5:focus{stroke:rgb(var(--purple-4)/.05)}.focus\:stroke-purple-4\/50:focus{stroke:rgb(var(--purple-4)/.5)}.focus\:stroke-purple-4\/60:focus{stroke:rgb(var(--purple-4)/.6)}.focus\:stroke-purple-4\/70:focus{stroke:rgb(var(--purple-4)/.7)}.focus\:stroke-purple-4\/75:focus{stroke:rgb(var(--purple-4)/.75)}.focus\:stroke-purple-4\/80:focus{stroke:rgb(var(--purple-4)/.8)}.focus\:stroke-purple-4\/90:focus{stroke:rgb(var(--purple-4)/.9)}.focus\:stroke-purple-4\/95:focus{stroke:rgb(var(--purple-4)/.95)}.focus\:stroke-purple-5\/0:focus{stroke:rgb(var(--purple-5)/0)}.focus\:stroke-purple-5\/10:focus{stroke:rgb(var(--purple-5)/.1)}.focus\:stroke-purple-5\/100:focus{stroke:rgb(var(--purple-5)/1)}.focus\:stroke-purple-5\/20:focus{stroke:rgb(var(--purple-5)/.2)}.focus\:stroke-purple-5\/25:focus{stroke:rgb(var(--purple-5)/.25)}.focus\:stroke-purple-5\/30:focus{stroke:rgb(var(--purple-5)/.3)}.focus\:stroke-purple-5\/40:focus{stroke:rgb(var(--purple-5)/.4)}.focus\:stroke-purple-5\/5:focus{stroke:rgb(var(--purple-5)/.05)}.focus\:stroke-purple-5\/50:focus{stroke:rgb(var(--purple-5)/.5)}.focus\:stroke-purple-5\/60:focus{stroke:rgb(var(--purple-5)/.6)}.focus\:stroke-purple-5\/70:focus{stroke:rgb(var(--purple-5)/.7)}.focus\:stroke-purple-5\/75:focus{stroke:rgb(var(--purple-5)/.75)}.focus\:stroke-purple-5\/80:focus{stroke:rgb(var(--purple-5)/.8)}.focus\:stroke-purple-5\/90:focus{stroke:rgb(var(--purple-5)/.9)}.focus\:stroke-purple-5\/95:focus{stroke:rgb(var(--purple-5)/.95)}.focus\:stroke-purple-6\/0:focus{stroke:rgb(var(--purple-6)/0)}.focus\:stroke-purple-6\/10:focus{stroke:rgb(var(--purple-6)/.1)}.focus\:stroke-purple-6\/100:focus{stroke:rgb(var(--purple-6)/1)}.focus\:stroke-purple-6\/20:focus{stroke:rgb(var(--purple-6)/.2)}.focus\:stroke-purple-6\/25:focus{stroke:rgb(var(--purple-6)/.25)}.focus\:stroke-purple-6\/30:focus{stroke:rgb(var(--purple-6)/.3)}.focus\:stroke-purple-6\/40:focus{stroke:rgb(var(--purple-6)/.4)}.focus\:stroke-purple-6\/5:focus{stroke:rgb(var(--purple-6)/.05)}.focus\:stroke-purple-6\/50:focus{stroke:rgb(var(--purple-6)/.5)}.focus\:stroke-purple-6\/60:focus{stroke:rgb(var(--purple-6)/.6)}.focus\:stroke-purple-6\/70:focus{stroke:rgb(var(--purple-6)/.7)}.focus\:stroke-purple-6\/75:focus{stroke:rgb(var(--purple-6)/.75)}.focus\:stroke-purple-6\/80:focus{stroke:rgb(var(--purple-6)/.8)}.focus\:stroke-purple-6\/90:focus{stroke:rgb(var(--purple-6)/.9)}.focus\:stroke-purple-6\/95:focus{stroke:rgb(var(--purple-6)/.95)}.focus\:stroke-purple-7\/0:focus{stroke:rgb(var(--purple-7)/0)}.focus\:stroke-purple-7\/10:focus{stroke:rgb(var(--purple-7)/.1)}.focus\:stroke-purple-7\/100:focus{stroke:rgb(var(--purple-7)/1)}.focus\:stroke-purple-7\/20:focus{stroke:rgb(var(--purple-7)/.2)}.focus\:stroke-purple-7\/25:focus{stroke:rgb(var(--purple-7)/.25)}.focus\:stroke-purple-7\/30:focus{stroke:rgb(var(--purple-7)/.3)}.focus\:stroke-purple-7\/40:focus{stroke:rgb(var(--purple-7)/.4)}.focus\:stroke-purple-7\/5:focus{stroke:rgb(var(--purple-7)/.05)}.focus\:stroke-purple-7\/50:focus{stroke:rgb(var(--purple-7)/.5)}.focus\:stroke-purple-7\/60:focus{stroke:rgb(var(--purple-7)/.6)}.focus\:stroke-purple-7\/70:focus{stroke:rgb(var(--purple-7)/.7)}.focus\:stroke-purple-7\/75:focus{stroke:rgb(var(--purple-7)/.75)}.focus\:stroke-purple-7\/80:focus{stroke:rgb(var(--purple-7)/.8)}.focus\:stroke-purple-7\/90:focus{stroke:rgb(var(--purple-7)/.9)}.focus\:stroke-purple-7\/95:focus{stroke:rgb(var(--purple-7)/.95)}.focus\:stroke-purple-8\/0:focus{stroke:rgb(var(--purple-8)/0)}.focus\:stroke-purple-8\/10:focus{stroke:rgb(var(--purple-8)/.1)}.focus\:stroke-purple-8\/100:focus{stroke:rgb(var(--purple-8)/1)}.focus\:stroke-purple-8\/20:focus{stroke:rgb(var(--purple-8)/.2)}.focus\:stroke-purple-8\/25:focus{stroke:rgb(var(--purple-8)/.25)}.focus\:stroke-purple-8\/30:focus{stroke:rgb(var(--purple-8)/.3)}.focus\:stroke-purple-8\/40:focus{stroke:rgb(var(--purple-8)/.4)}.focus\:stroke-purple-8\/5:focus{stroke:rgb(var(--purple-8)/.05)}.focus\:stroke-purple-8\/50:focus{stroke:rgb(var(--purple-8)/.5)}.focus\:stroke-purple-8\/60:focus{stroke:rgb(var(--purple-8)/.6)}.focus\:stroke-purple-8\/70:focus{stroke:rgb(var(--purple-8)/.7)}.focus\:stroke-purple-8\/75:focus{stroke:rgb(var(--purple-8)/.75)}.focus\:stroke-purple-8\/80:focus{stroke:rgb(var(--purple-8)/.8)}.focus\:stroke-purple-8\/90:focus{stroke:rgb(var(--purple-8)/.9)}.focus\:stroke-purple-8\/95:focus{stroke:rgb(var(--purple-8)/.95)}.focus\:stroke-purple-9\/0:focus{stroke:rgb(var(--purple-9)/0)}.focus\:stroke-purple-9\/10:focus{stroke:rgb(var(--purple-9)/.1)}.focus\:stroke-purple-9\/100:focus{stroke:rgb(var(--purple-9)/1)}.focus\:stroke-purple-9\/20:focus{stroke:rgb(var(--purple-9)/.2)}.focus\:stroke-purple-9\/25:focus{stroke:rgb(var(--purple-9)/.25)}.focus\:stroke-purple-9\/30:focus{stroke:rgb(var(--purple-9)/.3)}.focus\:stroke-purple-9\/40:focus{stroke:rgb(var(--purple-9)/.4)}.focus\:stroke-purple-9\/5:focus{stroke:rgb(var(--purple-9)/.05)}.focus\:stroke-purple-9\/50:focus{stroke:rgb(var(--purple-9)/.5)}.focus\:stroke-purple-9\/60:focus{stroke:rgb(var(--purple-9)/.6)}.focus\:stroke-purple-9\/70:focus{stroke:rgb(var(--purple-9)/.7)}.focus\:stroke-purple-9\/75:focus{stroke:rgb(var(--purple-9)/.75)}.focus\:stroke-purple-9\/80:focus{stroke:rgb(var(--purple-9)/.8)}.focus\:stroke-purple-9\/90:focus{stroke:rgb(var(--purple-9)/.9)}.focus\:stroke-purple-9\/95:focus{stroke:rgb(var(--purple-9)/.95)}.focus\:stroke-red-1\/0:focus{stroke:rgb(var(--red-1)/0)}.focus\:stroke-red-1\/10:focus{stroke:rgb(var(--red-1)/.1)}.focus\:stroke-red-1\/100:focus{stroke:rgb(var(--red-1)/1)}.focus\:stroke-red-1\/20:focus{stroke:rgb(var(--red-1)/.2)}.focus\:stroke-red-1\/25:focus{stroke:rgb(var(--red-1)/.25)}.focus\:stroke-red-1\/30:focus{stroke:rgb(var(--red-1)/.3)}.focus\:stroke-red-1\/40:focus{stroke:rgb(var(--red-1)/.4)}.focus\:stroke-red-1\/5:focus{stroke:rgb(var(--red-1)/.05)}.focus\:stroke-red-1\/50:focus{stroke:rgb(var(--red-1)/.5)}.focus\:stroke-red-1\/60:focus{stroke:rgb(var(--red-1)/.6)}.focus\:stroke-red-1\/70:focus{stroke:rgb(var(--red-1)/.7)}.focus\:stroke-red-1\/75:focus{stroke:rgb(var(--red-1)/.75)}.focus\:stroke-red-1\/80:focus{stroke:rgb(var(--red-1)/.8)}.focus\:stroke-red-1\/90:focus{stroke:rgb(var(--red-1)/.9)}.focus\:stroke-red-1\/95:focus{stroke:rgb(var(--red-1)/.95)}.focus\:stroke-red-10\/0:focus{stroke:rgb(var(--red-10)/0)}.focus\:stroke-red-10\/10:focus{stroke:rgb(var(--red-10)/.1)}.focus\:stroke-red-10\/100:focus{stroke:rgb(var(--red-10)/1)}.focus\:stroke-red-10\/20:focus{stroke:rgb(var(--red-10)/.2)}.focus\:stroke-red-10\/25:focus{stroke:rgb(var(--red-10)/.25)}.focus\:stroke-red-10\/30:focus{stroke:rgb(var(--red-10)/.3)}.focus\:stroke-red-10\/40:focus{stroke:rgb(var(--red-10)/.4)}.focus\:stroke-red-10\/5:focus{stroke:rgb(var(--red-10)/.05)}.focus\:stroke-red-10\/50:focus{stroke:rgb(var(--red-10)/.5)}.focus\:stroke-red-10\/60:focus{stroke:rgb(var(--red-10)/.6)}.focus\:stroke-red-10\/70:focus{stroke:rgb(var(--red-10)/.7)}.focus\:stroke-red-10\/75:focus{stroke:rgb(var(--red-10)/.75)}.focus\:stroke-red-10\/80:focus{stroke:rgb(var(--red-10)/.8)}.focus\:stroke-red-10\/90:focus{stroke:rgb(var(--red-10)/.9)}.focus\:stroke-red-10\/95:focus{stroke:rgb(var(--red-10)/.95)}.focus\:stroke-red-2\/0:focus{stroke:rgb(var(--red-2)/0)}.focus\:stroke-red-2\/10:focus{stroke:rgb(var(--red-2)/.1)}.focus\:stroke-red-2\/100:focus{stroke:rgb(var(--red-2)/1)}.focus\:stroke-red-2\/20:focus{stroke:rgb(var(--red-2)/.2)}.focus\:stroke-red-2\/25:focus{stroke:rgb(var(--red-2)/.25)}.focus\:stroke-red-2\/30:focus{stroke:rgb(var(--red-2)/.3)}.focus\:stroke-red-2\/40:focus{stroke:rgb(var(--red-2)/.4)}.focus\:stroke-red-2\/5:focus{stroke:rgb(var(--red-2)/.05)}.focus\:stroke-red-2\/50:focus{stroke:rgb(var(--red-2)/.5)}.focus\:stroke-red-2\/60:focus{stroke:rgb(var(--red-2)/.6)}.focus\:stroke-red-2\/70:focus{stroke:rgb(var(--red-2)/.7)}.focus\:stroke-red-2\/75:focus{stroke:rgb(var(--red-2)/.75)}.focus\:stroke-red-2\/80:focus{stroke:rgb(var(--red-2)/.8)}.focus\:stroke-red-2\/90:focus{stroke:rgb(var(--red-2)/.9)}.focus\:stroke-red-2\/95:focus{stroke:rgb(var(--red-2)/.95)}.focus\:stroke-red-3\/0:focus{stroke:rgb(var(--red-3)/0)}.focus\:stroke-red-3\/10:focus{stroke:rgb(var(--red-3)/.1)}.focus\:stroke-red-3\/100:focus{stroke:rgb(var(--red-3)/1)}.focus\:stroke-red-3\/20:focus{stroke:rgb(var(--red-3)/.2)}.focus\:stroke-red-3\/25:focus{stroke:rgb(var(--red-3)/.25)}.focus\:stroke-red-3\/30:focus{stroke:rgb(var(--red-3)/.3)}.focus\:stroke-red-3\/40:focus{stroke:rgb(var(--red-3)/.4)}.focus\:stroke-red-3\/5:focus{stroke:rgb(var(--red-3)/.05)}.focus\:stroke-red-3\/50:focus{stroke:rgb(var(--red-3)/.5)}.focus\:stroke-red-3\/60:focus{stroke:rgb(var(--red-3)/.6)}.focus\:stroke-red-3\/70:focus{stroke:rgb(var(--red-3)/.7)}.focus\:stroke-red-3\/75:focus{stroke:rgb(var(--red-3)/.75)}.focus\:stroke-red-3\/80:focus{stroke:rgb(var(--red-3)/.8)}.focus\:stroke-red-3\/90:focus{stroke:rgb(var(--red-3)/.9)}.focus\:stroke-red-3\/95:focus{stroke:rgb(var(--red-3)/.95)}.focus\:stroke-red-4\/0:focus{stroke:rgb(var(--red-4)/0)}.focus\:stroke-red-4\/10:focus{stroke:rgb(var(--red-4)/.1)}.focus\:stroke-red-4\/100:focus{stroke:rgb(var(--red-4)/1)}.focus\:stroke-red-4\/20:focus{stroke:rgb(var(--red-4)/.2)}.focus\:stroke-red-4\/25:focus{stroke:rgb(var(--red-4)/.25)}.focus\:stroke-red-4\/30:focus{stroke:rgb(var(--red-4)/.3)}.focus\:stroke-red-4\/40:focus{stroke:rgb(var(--red-4)/.4)}.focus\:stroke-red-4\/5:focus{stroke:rgb(var(--red-4)/.05)}.focus\:stroke-red-4\/50:focus{stroke:rgb(var(--red-4)/.5)}.focus\:stroke-red-4\/60:focus{stroke:rgb(var(--red-4)/.6)}.focus\:stroke-red-4\/70:focus{stroke:rgb(var(--red-4)/.7)}.focus\:stroke-red-4\/75:focus{stroke:rgb(var(--red-4)/.75)}.focus\:stroke-red-4\/80:focus{stroke:rgb(var(--red-4)/.8)}.focus\:stroke-red-4\/90:focus{stroke:rgb(var(--red-4)/.9)}.focus\:stroke-red-4\/95:focus{stroke:rgb(var(--red-4)/.95)}.focus\:stroke-red-5\/0:focus{stroke:rgb(var(--red-5)/0)}.focus\:stroke-red-5\/10:focus{stroke:rgb(var(--red-5)/.1)}.focus\:stroke-red-5\/100:focus{stroke:rgb(var(--red-5)/1)}.focus\:stroke-red-5\/20:focus{stroke:rgb(var(--red-5)/.2)}.focus\:stroke-red-5\/25:focus{stroke:rgb(var(--red-5)/.25)}.focus\:stroke-red-5\/30:focus{stroke:rgb(var(--red-5)/.3)}.focus\:stroke-red-5\/40:focus{stroke:rgb(var(--red-5)/.4)}.focus\:stroke-red-5\/5:focus{stroke:rgb(var(--red-5)/.05)}.focus\:stroke-red-5\/50:focus{stroke:rgb(var(--red-5)/.5)}.focus\:stroke-red-5\/60:focus{stroke:rgb(var(--red-5)/.6)}.focus\:stroke-red-5\/70:focus{stroke:rgb(var(--red-5)/.7)}.focus\:stroke-red-5\/75:focus{stroke:rgb(var(--red-5)/.75)}.focus\:stroke-red-5\/80:focus{stroke:rgb(var(--red-5)/.8)}.focus\:stroke-red-5\/90:focus{stroke:rgb(var(--red-5)/.9)}.focus\:stroke-red-5\/95:focus{stroke:rgb(var(--red-5)/.95)}.focus\:stroke-red-6\/0:focus{stroke:rgb(var(--red-6)/0)}.focus\:stroke-red-6\/10:focus{stroke:rgb(var(--red-6)/.1)}.focus\:stroke-red-6\/100:focus{stroke:rgb(var(--red-6)/1)}.focus\:stroke-red-6\/20:focus{stroke:rgb(var(--red-6)/.2)}.focus\:stroke-red-6\/25:focus{stroke:rgb(var(--red-6)/.25)}.focus\:stroke-red-6\/30:focus{stroke:rgb(var(--red-6)/.3)}.focus\:stroke-red-6\/40:focus{stroke:rgb(var(--red-6)/.4)}.focus\:stroke-red-6\/5:focus{stroke:rgb(var(--red-6)/.05)}.focus\:stroke-red-6\/50:focus{stroke:rgb(var(--red-6)/.5)}.focus\:stroke-red-6\/60:focus{stroke:rgb(var(--red-6)/.6)}.focus\:stroke-red-6\/70:focus{stroke:rgb(var(--red-6)/.7)}.focus\:stroke-red-6\/75:focus{stroke:rgb(var(--red-6)/.75)}.focus\:stroke-red-6\/80:focus{stroke:rgb(var(--red-6)/.8)}.focus\:stroke-red-6\/90:focus{stroke:rgb(var(--red-6)/.9)}.focus\:stroke-red-6\/95:focus{stroke:rgb(var(--red-6)/.95)}.focus\:stroke-red-7\/0:focus{stroke:rgb(var(--red-7)/0)}.focus\:stroke-red-7\/10:focus{stroke:rgb(var(--red-7)/.1)}.focus\:stroke-red-7\/100:focus{stroke:rgb(var(--red-7)/1)}.focus\:stroke-red-7\/20:focus{stroke:rgb(var(--red-7)/.2)}.focus\:stroke-red-7\/25:focus{stroke:rgb(var(--red-7)/.25)}.focus\:stroke-red-7\/30:focus{stroke:rgb(var(--red-7)/.3)}.focus\:stroke-red-7\/40:focus{stroke:rgb(var(--red-7)/.4)}.focus\:stroke-red-7\/5:focus{stroke:rgb(var(--red-7)/.05)}.focus\:stroke-red-7\/50:focus{stroke:rgb(var(--red-7)/.5)}.focus\:stroke-red-7\/60:focus{stroke:rgb(var(--red-7)/.6)}.focus\:stroke-red-7\/70:focus{stroke:rgb(var(--red-7)/.7)}.focus\:stroke-red-7\/75:focus{stroke:rgb(var(--red-7)/.75)}.focus\:stroke-red-7\/80:focus{stroke:rgb(var(--red-7)/.8)}.focus\:stroke-red-7\/90:focus{stroke:rgb(var(--red-7)/.9)}.focus\:stroke-red-7\/95:focus{stroke:rgb(var(--red-7)/.95)}.focus\:stroke-red-8\/0:focus{stroke:rgb(var(--red-8)/0)}.focus\:stroke-red-8\/10:focus{stroke:rgb(var(--red-8)/.1)}.focus\:stroke-red-8\/100:focus{stroke:rgb(var(--red-8)/1)}.focus\:stroke-red-8\/20:focus{stroke:rgb(var(--red-8)/.2)}.focus\:stroke-red-8\/25:focus{stroke:rgb(var(--red-8)/.25)}.focus\:stroke-red-8\/30:focus{stroke:rgb(var(--red-8)/.3)}.focus\:stroke-red-8\/40:focus{stroke:rgb(var(--red-8)/.4)}.focus\:stroke-red-8\/5:focus{stroke:rgb(var(--red-8)/.05)}.focus\:stroke-red-8\/50:focus{stroke:rgb(var(--red-8)/.5)}.focus\:stroke-red-8\/60:focus{stroke:rgb(var(--red-8)/.6)}.focus\:stroke-red-8\/70:focus{stroke:rgb(var(--red-8)/.7)}.focus\:stroke-red-8\/75:focus{stroke:rgb(var(--red-8)/.75)}.focus\:stroke-red-8\/80:focus{stroke:rgb(var(--red-8)/.8)}.focus\:stroke-red-8\/90:focus{stroke:rgb(var(--red-8)/.9)}.focus\:stroke-red-8\/95:focus{stroke:rgb(var(--red-8)/.95)}.focus\:stroke-red-9\/0:focus{stroke:rgb(var(--red-9)/0)}.focus\:stroke-red-9\/10:focus{stroke:rgb(var(--red-9)/.1)}.focus\:stroke-red-9\/100:focus{stroke:rgb(var(--red-9)/1)}.focus\:stroke-red-9\/20:focus{stroke:rgb(var(--red-9)/.2)}.focus\:stroke-red-9\/25:focus{stroke:rgb(var(--red-9)/.25)}.focus\:stroke-red-9\/30:focus{stroke:rgb(var(--red-9)/.3)}.focus\:stroke-red-9\/40:focus{stroke:rgb(var(--red-9)/.4)}.focus\:stroke-red-9\/5:focus{stroke:rgb(var(--red-9)/.05)}.focus\:stroke-red-9\/50:focus{stroke:rgb(var(--red-9)/.5)}.focus\:stroke-red-9\/60:focus{stroke:rgb(var(--red-9)/.6)}.focus\:stroke-red-9\/70:focus{stroke:rgb(var(--red-9)/.7)}.focus\:stroke-red-9\/75:focus{stroke:rgb(var(--red-9)/.75)}.focus\:stroke-red-9\/80:focus{stroke:rgb(var(--red-9)/.8)}.focus\:stroke-red-9\/90:focus{stroke:rgb(var(--red-9)/.9)}.focus\:stroke-red-9\/95:focus{stroke:rgb(var(--red-9)/.95)}.focus\:stroke-secondary:focus{stroke:rgb(var(--secondary))}.focus\:stroke-secondary\/0:focus{stroke:rgb(var(--secondary)/0)}.focus\:stroke-secondary\/10:focus{stroke:rgb(var(--secondary)/.1)}.focus\:stroke-secondary\/100:focus{stroke:rgb(var(--secondary)/1)}.focus\:stroke-secondary\/20:focus{stroke:rgb(var(--secondary)/.2)}.focus\:stroke-secondary\/25:focus{stroke:rgb(var(--secondary)/.25)}.focus\:stroke-secondary\/30:focus{stroke:rgb(var(--secondary)/.3)}.focus\:stroke-secondary\/40:focus{stroke:rgb(var(--secondary)/.4)}.focus\:stroke-secondary\/5:focus{stroke:rgb(var(--secondary)/.05)}.focus\:stroke-secondary\/50:focus{stroke:rgb(var(--secondary)/.5)}.focus\:stroke-secondary\/60:focus{stroke:rgb(var(--secondary)/.6)}.focus\:stroke-secondary\/70:focus{stroke:rgb(var(--secondary)/.7)}.focus\:stroke-secondary\/75:focus{stroke:rgb(var(--secondary)/.75)}.focus\:stroke-secondary\/80:focus{stroke:rgb(var(--secondary)/.8)}.focus\:stroke-secondary\/90:focus{stroke:rgb(var(--secondary)/.9)}.focus\:stroke-secondary\/95:focus{stroke:rgb(var(--secondary)/.95)}.focus\:stroke-slate-1\/0:focus{stroke:rgb(var(--slate-1)/0)}.focus\:stroke-slate-1\/10:focus{stroke:rgb(var(--slate-1)/.1)}.focus\:stroke-slate-1\/100:focus{stroke:rgb(var(--slate-1)/1)}.focus\:stroke-slate-1\/20:focus{stroke:rgb(var(--slate-1)/.2)}.focus\:stroke-slate-1\/25:focus{stroke:rgb(var(--slate-1)/.25)}.focus\:stroke-slate-1\/30:focus{stroke:rgb(var(--slate-1)/.3)}.focus\:stroke-slate-1\/40:focus{stroke:rgb(var(--slate-1)/.4)}.focus\:stroke-slate-1\/5:focus{stroke:rgb(var(--slate-1)/.05)}.focus\:stroke-slate-1\/50:focus{stroke:rgb(var(--slate-1)/.5)}.focus\:stroke-slate-1\/60:focus{stroke:rgb(var(--slate-1)/.6)}.focus\:stroke-slate-1\/70:focus{stroke:rgb(var(--slate-1)/.7)}.focus\:stroke-slate-1\/75:focus{stroke:rgb(var(--slate-1)/.75)}.focus\:stroke-slate-1\/80:focus{stroke:rgb(var(--slate-1)/.8)}.focus\:stroke-slate-1\/90:focus{stroke:rgb(var(--slate-1)/.9)}.focus\:stroke-slate-1\/95:focus{stroke:rgb(var(--slate-1)/.95)}.focus\:stroke-slate-10\/0:focus{stroke:rgb(var(--slate-10)/0)}.focus\:stroke-slate-10\/10:focus{stroke:rgb(var(--slate-10)/.1)}.focus\:stroke-slate-10\/100:focus{stroke:rgb(var(--slate-10)/1)}.focus\:stroke-slate-10\/20:focus{stroke:rgb(var(--slate-10)/.2)}.focus\:stroke-slate-10\/25:focus{stroke:rgb(var(--slate-10)/.25)}.focus\:stroke-slate-10\/30:focus{stroke:rgb(var(--slate-10)/.3)}.focus\:stroke-slate-10\/40:focus{stroke:rgb(var(--slate-10)/.4)}.focus\:stroke-slate-10\/5:focus{stroke:rgb(var(--slate-10)/.05)}.focus\:stroke-slate-10\/50:focus{stroke:rgb(var(--slate-10)/.5)}.focus\:stroke-slate-10\/60:focus{stroke:rgb(var(--slate-10)/.6)}.focus\:stroke-slate-10\/70:focus{stroke:rgb(var(--slate-10)/.7)}.focus\:stroke-slate-10\/75:focus{stroke:rgb(var(--slate-10)/.75)}.focus\:stroke-slate-10\/80:focus{stroke:rgb(var(--slate-10)/.8)}.focus\:stroke-slate-10\/90:focus{stroke:rgb(var(--slate-10)/.9)}.focus\:stroke-slate-10\/95:focus{stroke:rgb(var(--slate-10)/.95)}.focus\:stroke-slate-2\/0:focus{stroke:rgb(var(--slate-2)/0)}.focus\:stroke-slate-2\/10:focus{stroke:rgb(var(--slate-2)/.1)}.focus\:stroke-slate-2\/100:focus{stroke:rgb(var(--slate-2)/1)}.focus\:stroke-slate-2\/20:focus{stroke:rgb(var(--slate-2)/.2)}.focus\:stroke-slate-2\/25:focus{stroke:rgb(var(--slate-2)/.25)}.focus\:stroke-slate-2\/30:focus{stroke:rgb(var(--slate-2)/.3)}.focus\:stroke-slate-2\/40:focus{stroke:rgb(var(--slate-2)/.4)}.focus\:stroke-slate-2\/5:focus{stroke:rgb(var(--slate-2)/.05)}.focus\:stroke-slate-2\/50:focus{stroke:rgb(var(--slate-2)/.5)}.focus\:stroke-slate-2\/60:focus{stroke:rgb(var(--slate-2)/.6)}.focus\:stroke-slate-2\/70:focus{stroke:rgb(var(--slate-2)/.7)}.focus\:stroke-slate-2\/75:focus{stroke:rgb(var(--slate-2)/.75)}.focus\:stroke-slate-2\/80:focus{stroke:rgb(var(--slate-2)/.8)}.focus\:stroke-slate-2\/90:focus{stroke:rgb(var(--slate-2)/.9)}.focus\:stroke-slate-2\/95:focus{stroke:rgb(var(--slate-2)/.95)}.focus\:stroke-slate-3\/0:focus{stroke:rgb(var(--slate-3)/0)}.focus\:stroke-slate-3\/10:focus{stroke:rgb(var(--slate-3)/.1)}.focus\:stroke-slate-3\/100:focus{stroke:rgb(var(--slate-3)/1)}.focus\:stroke-slate-3\/20:focus{stroke:rgb(var(--slate-3)/.2)}.focus\:stroke-slate-3\/25:focus{stroke:rgb(var(--slate-3)/.25)}.focus\:stroke-slate-3\/30:focus{stroke:rgb(var(--slate-3)/.3)}.focus\:stroke-slate-3\/40:focus{stroke:rgb(var(--slate-3)/.4)}.focus\:stroke-slate-3\/5:focus{stroke:rgb(var(--slate-3)/.05)}.focus\:stroke-slate-3\/50:focus{stroke:rgb(var(--slate-3)/.5)}.focus\:stroke-slate-3\/60:focus{stroke:rgb(var(--slate-3)/.6)}.focus\:stroke-slate-3\/70:focus{stroke:rgb(var(--slate-3)/.7)}.focus\:stroke-slate-3\/75:focus{stroke:rgb(var(--slate-3)/.75)}.focus\:stroke-slate-3\/80:focus{stroke:rgb(var(--slate-3)/.8)}.focus\:stroke-slate-3\/90:focus{stroke:rgb(var(--slate-3)/.9)}.focus\:stroke-slate-3\/95:focus{stroke:rgb(var(--slate-3)/.95)}.focus\:stroke-slate-4\/0:focus{stroke:rgb(var(--slate-4)/0)}.focus\:stroke-slate-4\/10:focus{stroke:rgb(var(--slate-4)/.1)}.focus\:stroke-slate-4\/100:focus{stroke:rgb(var(--slate-4)/1)}.focus\:stroke-slate-4\/20:focus{stroke:rgb(var(--slate-4)/.2)}.focus\:stroke-slate-4\/25:focus{stroke:rgb(var(--slate-4)/.25)}.focus\:stroke-slate-4\/30:focus{stroke:rgb(var(--slate-4)/.3)}.focus\:stroke-slate-4\/40:focus{stroke:rgb(var(--slate-4)/.4)}.focus\:stroke-slate-4\/5:focus{stroke:rgb(var(--slate-4)/.05)}.focus\:stroke-slate-4\/50:focus{stroke:rgb(var(--slate-4)/.5)}.focus\:stroke-slate-4\/60:focus{stroke:rgb(var(--slate-4)/.6)}.focus\:stroke-slate-4\/70:focus{stroke:rgb(var(--slate-4)/.7)}.focus\:stroke-slate-4\/75:focus{stroke:rgb(var(--slate-4)/.75)}.focus\:stroke-slate-4\/80:focus{stroke:rgb(var(--slate-4)/.8)}.focus\:stroke-slate-4\/90:focus{stroke:rgb(var(--slate-4)/.9)}.focus\:stroke-slate-4\/95:focus{stroke:rgb(var(--slate-4)/.95)}.focus\:stroke-slate-5\/0:focus{stroke:rgb(var(--slate-5)/0)}.focus\:stroke-slate-5\/10:focus{stroke:rgb(var(--slate-5)/.1)}.focus\:stroke-slate-5\/100:focus{stroke:rgb(var(--slate-5)/1)}.focus\:stroke-slate-5\/20:focus{stroke:rgb(var(--slate-5)/.2)}.focus\:stroke-slate-5\/25:focus{stroke:rgb(var(--slate-5)/.25)}.focus\:stroke-slate-5\/30:focus{stroke:rgb(var(--slate-5)/.3)}.focus\:stroke-slate-5\/40:focus{stroke:rgb(var(--slate-5)/.4)}.focus\:stroke-slate-5\/5:focus{stroke:rgb(var(--slate-5)/.05)}.focus\:stroke-slate-5\/50:focus{stroke:rgb(var(--slate-5)/.5)}.focus\:stroke-slate-5\/60:focus{stroke:rgb(var(--slate-5)/.6)}.focus\:stroke-slate-5\/70:focus{stroke:rgb(var(--slate-5)/.7)}.focus\:stroke-slate-5\/75:focus{stroke:rgb(var(--slate-5)/.75)}.focus\:stroke-slate-5\/80:focus{stroke:rgb(var(--slate-5)/.8)}.focus\:stroke-slate-5\/90:focus{stroke:rgb(var(--slate-5)/.9)}.focus\:stroke-slate-5\/95:focus{stroke:rgb(var(--slate-5)/.95)}.focus\:stroke-slate-6\/0:focus{stroke:rgb(var(--slate-6)/0)}.focus\:stroke-slate-6\/10:focus{stroke:rgb(var(--slate-6)/.1)}.focus\:stroke-slate-6\/100:focus{stroke:rgb(var(--slate-6)/1)}.focus\:stroke-slate-6\/20:focus{stroke:rgb(var(--slate-6)/.2)}.focus\:stroke-slate-6\/25:focus{stroke:rgb(var(--slate-6)/.25)}.focus\:stroke-slate-6\/30:focus{stroke:rgb(var(--slate-6)/.3)}.focus\:stroke-slate-6\/40:focus{stroke:rgb(var(--slate-6)/.4)}.focus\:stroke-slate-6\/5:focus{stroke:rgb(var(--slate-6)/.05)}.focus\:stroke-slate-6\/50:focus{stroke:rgb(var(--slate-6)/.5)}.focus\:stroke-slate-6\/60:focus{stroke:rgb(var(--slate-6)/.6)}.focus\:stroke-slate-6\/70:focus{stroke:rgb(var(--slate-6)/.7)}.focus\:stroke-slate-6\/75:focus{stroke:rgb(var(--slate-6)/.75)}.focus\:stroke-slate-6\/80:focus{stroke:rgb(var(--slate-6)/.8)}.focus\:stroke-slate-6\/90:focus{stroke:rgb(var(--slate-6)/.9)}.focus\:stroke-slate-6\/95:focus{stroke:rgb(var(--slate-6)/.95)}.focus\:stroke-slate-7\/0:focus{stroke:rgb(var(--slate-7)/0)}.focus\:stroke-slate-7\/10:focus{stroke:rgb(var(--slate-7)/.1)}.focus\:stroke-slate-7\/100:focus{stroke:rgb(var(--slate-7)/1)}.focus\:stroke-slate-7\/20:focus{stroke:rgb(var(--slate-7)/.2)}.focus\:stroke-slate-7\/25:focus{stroke:rgb(var(--slate-7)/.25)}.focus\:stroke-slate-7\/30:focus{stroke:rgb(var(--slate-7)/.3)}.focus\:stroke-slate-7\/40:focus{stroke:rgb(var(--slate-7)/.4)}.focus\:stroke-slate-7\/5:focus{stroke:rgb(var(--slate-7)/.05)}.focus\:stroke-slate-7\/50:focus{stroke:rgb(var(--slate-7)/.5)}.focus\:stroke-slate-7\/60:focus{stroke:rgb(var(--slate-7)/.6)}.focus\:stroke-slate-7\/70:focus{stroke:rgb(var(--slate-7)/.7)}.focus\:stroke-slate-7\/75:focus{stroke:rgb(var(--slate-7)/.75)}.focus\:stroke-slate-7\/80:focus{stroke:rgb(var(--slate-7)/.8)}.focus\:stroke-slate-7\/90:focus{stroke:rgb(var(--slate-7)/.9)}.focus\:stroke-slate-7\/95:focus{stroke:rgb(var(--slate-7)/.95)}.focus\:stroke-slate-8\/0:focus{stroke:rgb(var(--slate-8)/0)}.focus\:stroke-slate-8\/10:focus{stroke:rgb(var(--slate-8)/.1)}.focus\:stroke-slate-8\/100:focus{stroke:rgb(var(--slate-8)/1)}.focus\:stroke-slate-8\/20:focus{stroke:rgb(var(--slate-8)/.2)}.focus\:stroke-slate-8\/25:focus{stroke:rgb(var(--slate-8)/.25)}.focus\:stroke-slate-8\/30:focus{stroke:rgb(var(--slate-8)/.3)}.focus\:stroke-slate-8\/40:focus{stroke:rgb(var(--slate-8)/.4)}.focus\:stroke-slate-8\/5:focus{stroke:rgb(var(--slate-8)/.05)}.focus\:stroke-slate-8\/50:focus{stroke:rgb(var(--slate-8)/.5)}.focus\:stroke-slate-8\/60:focus{stroke:rgb(var(--slate-8)/.6)}.focus\:stroke-slate-8\/70:focus{stroke:rgb(var(--slate-8)/.7)}.focus\:stroke-slate-8\/75:focus{stroke:rgb(var(--slate-8)/.75)}.focus\:stroke-slate-8\/80:focus{stroke:rgb(var(--slate-8)/.8)}.focus\:stroke-slate-8\/90:focus{stroke:rgb(var(--slate-8)/.9)}.focus\:stroke-slate-8\/95:focus{stroke:rgb(var(--slate-8)/.95)}.focus\:stroke-slate-9\/0:focus{stroke:rgb(var(--slate-9)/0)}.focus\:stroke-slate-9\/10:focus{stroke:rgb(var(--slate-9)/.1)}.focus\:stroke-slate-9\/100:focus{stroke:rgb(var(--slate-9)/1)}.focus\:stroke-slate-9\/20:focus{stroke:rgb(var(--slate-9)/.2)}.focus\:stroke-slate-9\/25:focus{stroke:rgb(var(--slate-9)/.25)}.focus\:stroke-slate-9\/30:focus{stroke:rgb(var(--slate-9)/.3)}.focus\:stroke-slate-9\/40:focus{stroke:rgb(var(--slate-9)/.4)}.focus\:stroke-slate-9\/5:focus{stroke:rgb(var(--slate-9)/.05)}.focus\:stroke-slate-9\/50:focus{stroke:rgb(var(--slate-9)/.5)}.focus\:stroke-slate-9\/60:focus{stroke:rgb(var(--slate-9)/.6)}.focus\:stroke-slate-9\/70:focus{stroke:rgb(var(--slate-9)/.7)}.focus\:stroke-slate-9\/75:focus{stroke:rgb(var(--slate-9)/.75)}.focus\:stroke-slate-9\/80:focus{stroke:rgb(var(--slate-9)/.8)}.focus\:stroke-slate-9\/90:focus{stroke:rgb(var(--slate-9)/.9)}.focus\:stroke-slate-9\/95:focus{stroke:rgb(var(--slate-9)/.95)}.focus\:stroke-success:focus{stroke:rgb(var(--success))}.focus\:stroke-success\/0:focus{stroke:rgb(var(--success)/0)}.focus\:stroke-success\/10:focus{stroke:rgb(var(--success)/.1)}.focus\:stroke-success\/100:focus{stroke:rgb(var(--success)/1)}.focus\:stroke-success\/20:focus{stroke:rgb(var(--success)/.2)}.focus\:stroke-success\/25:focus{stroke:rgb(var(--success)/.25)}.focus\:stroke-success\/30:focus{stroke:rgb(var(--success)/.3)}.focus\:stroke-success\/40:focus{stroke:rgb(var(--success)/.4)}.focus\:stroke-success\/5:focus{stroke:rgb(var(--success)/.05)}.focus\:stroke-success\/50:focus{stroke:rgb(var(--success)/.5)}.focus\:stroke-success\/60:focus{stroke:rgb(var(--success)/.6)}.focus\:stroke-success\/70:focus{stroke:rgb(var(--success)/.7)}.focus\:stroke-success\/75:focus{stroke:rgb(var(--success)/.75)}.focus\:stroke-success\/80:focus{stroke:rgb(var(--success)/.8)}.focus\:stroke-success\/90:focus{stroke:rgb(var(--success)/.9)}.focus\:stroke-success\/95:focus{stroke:rgb(var(--success)/.95)}.focus\:stroke-warning:focus{stroke:rgb(var(--warning))}.focus\:stroke-warning\/0:focus{stroke:rgb(var(--warning)/0)}.focus\:stroke-warning\/10:focus{stroke:rgb(var(--warning)/.1)}.focus\:stroke-warning\/100:focus{stroke:rgb(var(--warning)/1)}.focus\:stroke-warning\/20:focus{stroke:rgb(var(--warning)/.2)}.focus\:stroke-warning\/25:focus{stroke:rgb(var(--warning)/.25)}.focus\:stroke-warning\/30:focus{stroke:rgb(var(--warning)/.3)}.focus\:stroke-warning\/40:focus{stroke:rgb(var(--warning)/.4)}.focus\:stroke-warning\/5:focus{stroke:rgb(var(--warning)/.05)}.focus\:stroke-warning\/50:focus{stroke:rgb(var(--warning)/.5)}.focus\:stroke-warning\/60:focus{stroke:rgb(var(--warning)/.6)}.focus\:stroke-warning\/70:focus{stroke:rgb(var(--warning)/.7)}.focus\:stroke-warning\/75:focus{stroke:rgb(var(--warning)/.75)}.focus\:stroke-warning\/80:focus{stroke:rgb(var(--warning)/.8)}.focus\:stroke-warning\/90:focus{stroke:rgb(var(--warning)/.9)}.focus\:stroke-warning\/95:focus{stroke:rgb(var(--warning)/.95)}.focus\:stroke-white:focus{stroke:#fff}.focus\:stroke-white\/0:focus{stroke:hsla(0,0%,100%,0)}.focus\:stroke-white\/10:focus{stroke:hsla(0,0%,100%,.1)}.focus\:stroke-white\/100:focus{stroke:#fff}.focus\:stroke-white\/20:focus{stroke:hsla(0,0%,100%,.2)}.focus\:stroke-white\/25:focus{stroke:hsla(0,0%,100%,.25)}.focus\:stroke-white\/30:focus{stroke:hsla(0,0%,100%,.3)}.focus\:stroke-white\/40:focus{stroke:hsla(0,0%,100%,.4)}.focus\:stroke-white\/5:focus{stroke:hsla(0,0%,100%,.05)}.focus\:stroke-white\/50:focus{stroke:hsla(0,0%,100%,.5)}.focus\:stroke-white\/60:focus{stroke:hsla(0,0%,100%,.6)}.focus\:stroke-white\/70:focus{stroke:hsla(0,0%,100%,.7)}.focus\:stroke-white\/75:focus{stroke:hsla(0,0%,100%,.75)}.focus\:stroke-white\/80:focus{stroke:hsla(0,0%,100%,.8)}.focus\:stroke-white\/90:focus{stroke:hsla(0,0%,100%,.9)}.focus\:stroke-white\/95:focus{stroke:hsla(0,0%,100%,.95)}.focus\:stroke-whiteInverted:focus{stroke:rgb(var(--whiteInverted))}.focus\:stroke-whiteInverted\/0:focus{stroke:rgb(var(--whiteInverted)/0)}.focus\:stroke-whiteInverted\/10:focus{stroke:rgb(var(--whiteInverted)/.1)}.focus\:stroke-whiteInverted\/100:focus{stroke:rgb(var(--whiteInverted)/1)}.focus\:stroke-whiteInverted\/20:focus{stroke:rgb(var(--whiteInverted)/.2)}.focus\:stroke-whiteInverted\/25:focus{stroke:rgb(var(--whiteInverted)/.25)}.focus\:stroke-whiteInverted\/30:focus{stroke:rgb(var(--whiteInverted)/.3)}.focus\:stroke-whiteInverted\/40:focus{stroke:rgb(var(--whiteInverted)/.4)}.focus\:stroke-whiteInverted\/5:focus{stroke:rgb(var(--whiteInverted)/.05)}.focus\:stroke-whiteInverted\/50:focus{stroke:rgb(var(--whiteInverted)/.5)}.focus\:stroke-whiteInverted\/60:focus{stroke:rgb(var(--whiteInverted)/.6)}.focus\:stroke-whiteInverted\/70:focus{stroke:rgb(var(--whiteInverted)/.7)}.focus\:stroke-whiteInverted\/75:focus{stroke:rgb(var(--whiteInverted)/.75)}.focus\:stroke-whiteInverted\/80:focus{stroke:rgb(var(--whiteInverted)/.8)}.focus\:stroke-whiteInverted\/90:focus{stroke:rgb(var(--whiteInverted)/.9)}.focus\:stroke-whiteInverted\/95:focus{stroke:rgb(var(--whiteInverted)/.95)}.focus\:text-backgroundPrimary:focus{--tw-text-opacity:1;color:rgb(var(--backgroundPrimary)/var(--tw-text-opacity))}.focus\:text-backgroundPrimary\/0:focus{color:rgb(var(--backgroundPrimary)/0)}.focus\:text-backgroundPrimary\/10:focus{color:rgb(var(--backgroundPrimary)/.1)}.focus\:text-backgroundPrimary\/100:focus{color:rgb(var(--backgroundPrimary)/1)}.focus\:text-backgroundPrimary\/20:focus{color:rgb(var(--backgroundPrimary)/.2)}.focus\:text-backgroundPrimary\/25:focus{color:rgb(var(--backgroundPrimary)/.25)}.focus\:text-backgroundPrimary\/30:focus{color:rgb(var(--backgroundPrimary)/.3)}.focus\:text-backgroundPrimary\/40:focus{color:rgb(var(--backgroundPrimary)/.4)}.focus\:text-backgroundPrimary\/5:focus{color:rgb(var(--backgroundPrimary)/.05)}.focus\:text-backgroundPrimary\/50:focus{color:rgb(var(--backgroundPrimary)/.5)}.focus\:text-backgroundPrimary\/60:focus{color:rgb(var(--backgroundPrimary)/.6)}.focus\:text-backgroundPrimary\/70:focus{color:rgb(var(--backgroundPrimary)/.7)}.focus\:text-backgroundPrimary\/75:focus{color:rgb(var(--backgroundPrimary)/.75)}.focus\:text-backgroundPrimary\/80:focus{color:rgb(var(--backgroundPrimary)/.8)}.focus\:text-backgroundPrimary\/90:focus{color:rgb(var(--backgroundPrimary)/.9)}.focus\:text-backgroundPrimary\/95:focus{color:rgb(var(--backgroundPrimary)/.95)}.focus\:text-backgroundSecondary:focus{--tw-text-opacity:1;color:rgb(var(--backgroundSecondary)/var(--tw-text-opacity))}.focus\:text-backgroundSecondary\/0:focus{color:rgb(var(--backgroundSecondary)/0)}.focus\:text-backgroundSecondary\/10:focus{color:rgb(var(--backgroundSecondary)/.1)}.focus\:text-backgroundSecondary\/100:focus{color:rgb(var(--backgroundSecondary)/1)}.focus\:text-backgroundSecondary\/20:focus{color:rgb(var(--backgroundSecondary)/.2)}.focus\:text-backgroundSecondary\/25:focus{color:rgb(var(--backgroundSecondary)/.25)}.focus\:text-backgroundSecondary\/30:focus{color:rgb(var(--backgroundSecondary)/.3)}.focus\:text-backgroundSecondary\/40:focus{color:rgb(var(--backgroundSecondary)/.4)}.focus\:text-backgroundSecondary\/5:focus{color:rgb(var(--backgroundSecondary)/.05)}.focus\:text-backgroundSecondary\/50:focus{color:rgb(var(--backgroundSecondary)/.5)}.focus\:text-backgroundSecondary\/60:focus{color:rgb(var(--backgroundSecondary)/.6)}.focus\:text-backgroundSecondary\/70:focus{color:rgb(var(--backgroundSecondary)/.7)}.focus\:text-backgroundSecondary\/75:focus{color:rgb(var(--backgroundSecondary)/.75)}.focus\:text-backgroundSecondary\/80:focus{color:rgb(var(--backgroundSecondary)/.8)}.focus\:text-backgroundSecondary\/90:focus{color:rgb(var(--backgroundSecondary)/.9)}.focus\:text-backgroundSecondary\/95:focus{color:rgb(var(--backgroundSecondary)/.95)}.focus\:text-black:focus{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.focus\:text-black\/0:focus{color:transparent}.focus\:text-black\/10:focus{color:rgba(0,0,0,.1)}.focus\:text-black\/100:focus{color:#000}.focus\:text-black\/20:focus{color:rgba(0,0,0,.2)}.focus\:text-black\/25:focus{color:rgba(0,0,0,.25)}.focus\:text-black\/30:focus{color:rgba(0,0,0,.3)}.focus\:text-black\/40:focus{color:rgba(0,0,0,.4)}.focus\:text-black\/5:focus{color:rgba(0,0,0,.05)}.focus\:text-black\/50:focus{color:rgba(0,0,0,.5)}.focus\:text-black\/60:focus{color:rgba(0,0,0,.6)}.focus\:text-black\/70:focus{color:rgba(0,0,0,.7)}.focus\:text-black\/75:focus{color:rgba(0,0,0,.75)}.focus\:text-black\/80:focus{color:rgba(0,0,0,.8)}.focus\:text-black\/90:focus{color:rgba(0,0,0,.9)}.focus\:text-black\/95:focus{color:rgba(0,0,0,.95)}.focus\:text-blackInverted:focus{--tw-text-opacity:1;color:rgb(var(--blackInverted)/var(--tw-text-opacity))}.focus\:text-blackInverted\/0:focus{color:rgb(var(--blackInverted)/0)}.focus\:text-blackInverted\/10:focus{color:rgb(var(--blackInverted)/.1)}.focus\:text-blackInverted\/100:focus{color:rgb(var(--blackInverted)/1)}.focus\:text-blackInverted\/20:focus{color:rgb(var(--blackInverted)/.2)}.focus\:text-blackInverted\/25:focus{color:rgb(var(--blackInverted)/.25)}.focus\:text-blackInverted\/30:focus{color:rgb(var(--blackInverted)/.3)}.focus\:text-blackInverted\/40:focus{color:rgb(var(--blackInverted)/.4)}.focus\:text-blackInverted\/5:focus{color:rgb(var(--blackInverted)/.05)}.focus\:text-blackInverted\/50:focus{color:rgb(var(--blackInverted)/.5)}.focus\:text-blackInverted\/60:focus{color:rgb(var(--blackInverted)/.6)}.focus\:text-blackInverted\/70:focus{color:rgb(var(--blackInverted)/.7)}.focus\:text-blackInverted\/75:focus{color:rgb(var(--blackInverted)/.75)}.focus\:text-blackInverted\/80:focus{color:rgb(var(--blackInverted)/.8)}.focus\:text-blackInverted\/90:focus{color:rgb(var(--blackInverted)/.9)}.focus\:text-blackInverted\/95:focus{color:rgb(var(--blackInverted)/.95)}.focus\:text-blue-1\/0:focus{color:rgb(var(--blue-1)/0)}.focus\:text-blue-1\/10:focus{color:rgb(var(--blue-1)/.1)}.focus\:text-blue-1\/100:focus{color:rgb(var(--blue-1)/1)}.focus\:text-blue-1\/20:focus{color:rgb(var(--blue-1)/.2)}.focus\:text-blue-1\/25:focus{color:rgb(var(--blue-1)/.25)}.focus\:text-blue-1\/30:focus{color:rgb(var(--blue-1)/.3)}.focus\:text-blue-1\/40:focus{color:rgb(var(--blue-1)/.4)}.focus\:text-blue-1\/5:focus{color:rgb(var(--blue-1)/.05)}.focus\:text-blue-1\/50:focus{color:rgb(var(--blue-1)/.5)}.focus\:text-blue-1\/60:focus{color:rgb(var(--blue-1)/.6)}.focus\:text-blue-1\/70:focus{color:rgb(var(--blue-1)/.7)}.focus\:text-blue-1\/75:focus{color:rgb(var(--blue-1)/.75)}.focus\:text-blue-1\/80:focus{color:rgb(var(--blue-1)/.8)}.focus\:text-blue-1\/90:focus{color:rgb(var(--blue-1)/.9)}.focus\:text-blue-1\/95:focus{color:rgb(var(--blue-1)/.95)}.focus\:text-blue-10\/0:focus{color:rgb(var(--blue-10)/0)}.focus\:text-blue-10\/10:focus{color:rgb(var(--blue-10)/.1)}.focus\:text-blue-10\/100:focus{color:rgb(var(--blue-10)/1)}.focus\:text-blue-10\/20:focus{color:rgb(var(--blue-10)/.2)}.focus\:text-blue-10\/25:focus{color:rgb(var(--blue-10)/.25)}.focus\:text-blue-10\/30:focus{color:rgb(var(--blue-10)/.3)}.focus\:text-blue-10\/40:focus{color:rgb(var(--blue-10)/.4)}.focus\:text-blue-10\/5:focus{color:rgb(var(--blue-10)/.05)}.focus\:text-blue-10\/50:focus{color:rgb(var(--blue-10)/.5)}.focus\:text-blue-10\/60:focus{color:rgb(var(--blue-10)/.6)}.focus\:text-blue-10\/70:focus{color:rgb(var(--blue-10)/.7)}.focus\:text-blue-10\/75:focus{color:rgb(var(--blue-10)/.75)}.focus\:text-blue-10\/80:focus{color:rgb(var(--blue-10)/.8)}.focus\:text-blue-10\/90:focus{color:rgb(var(--blue-10)/.9)}.focus\:text-blue-10\/95:focus{color:rgb(var(--blue-10)/.95)}.focus\:text-blue-2\/0:focus{color:rgb(var(--blue-2)/0)}.focus\:text-blue-2\/10:focus{color:rgb(var(--blue-2)/.1)}.focus\:text-blue-2\/100:focus{color:rgb(var(--blue-2)/1)}.focus\:text-blue-2\/20:focus{color:rgb(var(--blue-2)/.2)}.focus\:text-blue-2\/25:focus{color:rgb(var(--blue-2)/.25)}.focus\:text-blue-2\/30:focus{color:rgb(var(--blue-2)/.3)}.focus\:text-blue-2\/40:focus{color:rgb(var(--blue-2)/.4)}.focus\:text-blue-2\/5:focus{color:rgb(var(--blue-2)/.05)}.focus\:text-blue-2\/50:focus{color:rgb(var(--blue-2)/.5)}.focus\:text-blue-2\/60:focus{color:rgb(var(--blue-2)/.6)}.focus\:text-blue-2\/70:focus{color:rgb(var(--blue-2)/.7)}.focus\:text-blue-2\/75:focus{color:rgb(var(--blue-2)/.75)}.focus\:text-blue-2\/80:focus{color:rgb(var(--blue-2)/.8)}.focus\:text-blue-2\/90:focus{color:rgb(var(--blue-2)/.9)}.focus\:text-blue-2\/95:focus{color:rgb(var(--blue-2)/.95)}.focus\:text-blue-3\/0:focus{color:rgb(var(--blue-3)/0)}.focus\:text-blue-3\/10:focus{color:rgb(var(--blue-3)/.1)}.focus\:text-blue-3\/100:focus{color:rgb(var(--blue-3)/1)}.focus\:text-blue-3\/20:focus{color:rgb(var(--blue-3)/.2)}.focus\:text-blue-3\/25:focus{color:rgb(var(--blue-3)/.25)}.focus\:text-blue-3\/30:focus{color:rgb(var(--blue-3)/.3)}.focus\:text-blue-3\/40:focus{color:rgb(var(--blue-3)/.4)}.focus\:text-blue-3\/5:focus{color:rgb(var(--blue-3)/.05)}.focus\:text-blue-3\/50:focus{color:rgb(var(--blue-3)/.5)}.focus\:text-blue-3\/60:focus{color:rgb(var(--blue-3)/.6)}.focus\:text-blue-3\/70:focus{color:rgb(var(--blue-3)/.7)}.focus\:text-blue-3\/75:focus{color:rgb(var(--blue-3)/.75)}.focus\:text-blue-3\/80:focus{color:rgb(var(--blue-3)/.8)}.focus\:text-blue-3\/90:focus{color:rgb(var(--blue-3)/.9)}.focus\:text-blue-3\/95:focus{color:rgb(var(--blue-3)/.95)}.focus\:text-blue-4\/0:focus{color:rgb(var(--blue-4)/0)}.focus\:text-blue-4\/10:focus{color:rgb(var(--blue-4)/.1)}.focus\:text-blue-4\/100:focus{color:rgb(var(--blue-4)/1)}.focus\:text-blue-4\/20:focus{color:rgb(var(--blue-4)/.2)}.focus\:text-blue-4\/25:focus{color:rgb(var(--blue-4)/.25)}.focus\:text-blue-4\/30:focus{color:rgb(var(--blue-4)/.3)}.focus\:text-blue-4\/40:focus{color:rgb(var(--blue-4)/.4)}.focus\:text-blue-4\/5:focus{color:rgb(var(--blue-4)/.05)}.focus\:text-blue-4\/50:focus{color:rgb(var(--blue-4)/.5)}.focus\:text-blue-4\/60:focus{color:rgb(var(--blue-4)/.6)}.focus\:text-blue-4\/70:focus{color:rgb(var(--blue-4)/.7)}.focus\:text-blue-4\/75:focus{color:rgb(var(--blue-4)/.75)}.focus\:text-blue-4\/80:focus{color:rgb(var(--blue-4)/.8)}.focus\:text-blue-4\/90:focus{color:rgb(var(--blue-4)/.9)}.focus\:text-blue-4\/95:focus{color:rgb(var(--blue-4)/.95)}.focus\:text-blue-5\/0:focus{color:rgb(var(--blue-5)/0)}.focus\:text-blue-5\/10:focus{color:rgb(var(--blue-5)/.1)}.focus\:text-blue-5\/100:focus{color:rgb(var(--blue-5)/1)}.focus\:text-blue-5\/20:focus{color:rgb(var(--blue-5)/.2)}.focus\:text-blue-5\/25:focus{color:rgb(var(--blue-5)/.25)}.focus\:text-blue-5\/30:focus{color:rgb(var(--blue-5)/.3)}.focus\:text-blue-5\/40:focus{color:rgb(var(--blue-5)/.4)}.focus\:text-blue-5\/5:focus{color:rgb(var(--blue-5)/.05)}.focus\:text-blue-5\/50:focus{color:rgb(var(--blue-5)/.5)}.focus\:text-blue-5\/60:focus{color:rgb(var(--blue-5)/.6)}.focus\:text-blue-5\/70:focus{color:rgb(var(--blue-5)/.7)}.focus\:text-blue-5\/75:focus{color:rgb(var(--blue-5)/.75)}.focus\:text-blue-5\/80:focus{color:rgb(var(--blue-5)/.8)}.focus\:text-blue-5\/90:focus{color:rgb(var(--blue-5)/.9)}.focus\:text-blue-5\/95:focus{color:rgb(var(--blue-5)/.95)}.focus\:text-blue-6\/0:focus{color:rgb(var(--blue-6)/0)}.focus\:text-blue-6\/10:focus{color:rgb(var(--blue-6)/.1)}.focus\:text-blue-6\/100:focus{color:rgb(var(--blue-6)/1)}.focus\:text-blue-6\/20:focus{color:rgb(var(--blue-6)/.2)}.focus\:text-blue-6\/25:focus{color:rgb(var(--blue-6)/.25)}.focus\:text-blue-6\/30:focus{color:rgb(var(--blue-6)/.3)}.focus\:text-blue-6\/40:focus{color:rgb(var(--blue-6)/.4)}.focus\:text-blue-6\/5:focus{color:rgb(var(--blue-6)/.05)}.focus\:text-blue-6\/50:focus{color:rgb(var(--blue-6)/.5)}.focus\:text-blue-6\/60:focus{color:rgb(var(--blue-6)/.6)}.focus\:text-blue-6\/70:focus{color:rgb(var(--blue-6)/.7)}.focus\:text-blue-6\/75:focus{color:rgb(var(--blue-6)/.75)}.focus\:text-blue-6\/80:focus{color:rgb(var(--blue-6)/.8)}.focus\:text-blue-6\/90:focus{color:rgb(var(--blue-6)/.9)}.focus\:text-blue-6\/95:focus{color:rgb(var(--blue-6)/.95)}.focus\:text-blue-7\/0:focus{color:rgb(var(--blue-7)/0)}.focus\:text-blue-7\/10:focus{color:rgb(var(--blue-7)/.1)}.focus\:text-blue-7\/100:focus{color:rgb(var(--blue-7)/1)}.focus\:text-blue-7\/20:focus{color:rgb(var(--blue-7)/.2)}.focus\:text-blue-7\/25:focus{color:rgb(var(--blue-7)/.25)}.focus\:text-blue-7\/30:focus{color:rgb(var(--blue-7)/.3)}.focus\:text-blue-7\/40:focus{color:rgb(var(--blue-7)/.4)}.focus\:text-blue-7\/5:focus{color:rgb(var(--blue-7)/.05)}.focus\:text-blue-7\/50:focus{color:rgb(var(--blue-7)/.5)}.focus\:text-blue-7\/60:focus{color:rgb(var(--blue-7)/.6)}.focus\:text-blue-7\/70:focus{color:rgb(var(--blue-7)/.7)}.focus\:text-blue-7\/75:focus{color:rgb(var(--blue-7)/.75)}.focus\:text-blue-7\/80:focus{color:rgb(var(--blue-7)/.8)}.focus\:text-blue-7\/90:focus{color:rgb(var(--blue-7)/.9)}.focus\:text-blue-7\/95:focus{color:rgb(var(--blue-7)/.95)}.focus\:text-blue-8\/0:focus{color:rgb(var(--blue-8)/0)}.focus\:text-blue-8\/10:focus{color:rgb(var(--blue-8)/.1)}.focus\:text-blue-8\/100:focus{color:rgb(var(--blue-8)/1)}.focus\:text-blue-8\/20:focus{color:rgb(var(--blue-8)/.2)}.focus\:text-blue-8\/25:focus{color:rgb(var(--blue-8)/.25)}.focus\:text-blue-8\/30:focus{color:rgb(var(--blue-8)/.3)}.focus\:text-blue-8\/40:focus{color:rgb(var(--blue-8)/.4)}.focus\:text-blue-8\/5:focus{color:rgb(var(--blue-8)/.05)}.focus\:text-blue-8\/50:focus{color:rgb(var(--blue-8)/.5)}.focus\:text-blue-8\/60:focus{color:rgb(var(--blue-8)/.6)}.focus\:text-blue-8\/70:focus{color:rgb(var(--blue-8)/.7)}.focus\:text-blue-8\/75:focus{color:rgb(var(--blue-8)/.75)}.focus\:text-blue-8\/80:focus{color:rgb(var(--blue-8)/.8)}.focus\:text-blue-8\/90:focus{color:rgb(var(--blue-8)/.9)}.focus\:text-blue-8\/95:focus{color:rgb(var(--blue-8)/.95)}.focus\:text-blue-9\/0:focus{color:rgb(var(--blue-9)/0)}.focus\:text-blue-9\/10:focus{color:rgb(var(--blue-9)/.1)}.focus\:text-blue-9\/100:focus{color:rgb(var(--blue-9)/1)}.focus\:text-blue-9\/20:focus{color:rgb(var(--blue-9)/.2)}.focus\:text-blue-9\/25:focus{color:rgb(var(--blue-9)/.25)}.focus\:text-blue-9\/30:focus{color:rgb(var(--blue-9)/.3)}.focus\:text-blue-9\/40:focus{color:rgb(var(--blue-9)/.4)}.focus\:text-blue-9\/5:focus{color:rgb(var(--blue-9)/.05)}.focus\:text-blue-9\/50:focus{color:rgb(var(--blue-9)/.5)}.focus\:text-blue-9\/60:focus{color:rgb(var(--blue-9)/.6)}.focus\:text-blue-9\/70:focus{color:rgb(var(--blue-9)/.7)}.focus\:text-blue-9\/75:focus{color:rgb(var(--blue-9)/.75)}.focus\:text-blue-9\/80:focus{color:rgb(var(--blue-9)/.8)}.focus\:text-blue-9\/90:focus{color:rgb(var(--blue-9)/.9)}.focus\:text-blue-9\/95:focus{color:rgb(var(--blue-9)/.95)}.focus\:text-border:focus{--tw-text-opacity:1;color:rgb(var(--border)/var(--tw-text-opacity))}.focus\:text-border\/0:focus{color:rgb(var(--border)/0)}.focus\:text-border\/10:focus{color:rgb(var(--border)/.1)}.focus\:text-border\/100:focus{color:rgb(var(--border)/1)}.focus\:text-border\/20:focus{color:rgb(var(--border)/.2)}.focus\:text-border\/25:focus{color:rgb(var(--border)/.25)}.focus\:text-border\/30:focus{color:rgb(var(--border)/.3)}.focus\:text-border\/40:focus{color:rgb(var(--border)/.4)}.focus\:text-border\/5:focus{color:rgb(var(--border)/.05)}.focus\:text-border\/50:focus{color:rgb(var(--border)/.5)}.focus\:text-border\/60:focus{color:rgb(var(--border)/.6)}.focus\:text-border\/70:focus{color:rgb(var(--border)/.7)}.focus\:text-border\/75:focus{color:rgb(var(--border)/.75)}.focus\:text-border\/80:focus{color:rgb(var(--border)/.8)}.focus\:text-border\/90:focus{color:rgb(var(--border)/.9)}.focus\:text-border\/95:focus{color:rgb(var(--border)/.95)}.focus\:text-content1:focus{--tw-text-opacity:1;color:rgb(var(--content1)/var(--tw-text-opacity))}.focus\:text-content1\/0:focus{color:rgb(var(--content1)/0)}.focus\:text-content1\/10:focus{color:rgb(var(--content1)/.1)}.focus\:text-content1\/100:focus{color:rgb(var(--content1)/1)}.focus\:text-content1\/20:focus{color:rgb(var(--content1)/.2)}.focus\:text-content1\/25:focus{color:rgb(var(--content1)/.25)}.focus\:text-content1\/30:focus{color:rgb(var(--content1)/.3)}.focus\:text-content1\/40:focus{color:rgb(var(--content1)/.4)}.focus\:text-content1\/5:focus{color:rgb(var(--content1)/.05)}.focus\:text-content1\/50:focus{color:rgb(var(--content1)/.5)}.focus\:text-content1\/60:focus{color:rgb(var(--content1)/.6)}.focus\:text-content1\/70:focus{color:rgb(var(--content1)/.7)}.focus\:text-content1\/75:focus{color:rgb(var(--content1)/.75)}.focus\:text-content1\/80:focus{color:rgb(var(--content1)/.8)}.focus\:text-content1\/90:focus{color:rgb(var(--content1)/.9)}.focus\:text-content1\/95:focus{color:rgb(var(--content1)/.95)}.focus\:text-content2:focus{--tw-text-opacity:1;color:rgb(var(--content2)/var(--tw-text-opacity))}.focus\:text-content2\/0:focus{color:rgb(var(--content2)/0)}.focus\:text-content2\/10:focus{color:rgb(var(--content2)/.1)}.focus\:text-content2\/100:focus{color:rgb(var(--content2)/1)}.focus\:text-content2\/20:focus{color:rgb(var(--content2)/.2)}.focus\:text-content2\/25:focus{color:rgb(var(--content2)/.25)}.focus\:text-content2\/30:focus{color:rgb(var(--content2)/.3)}.focus\:text-content2\/40:focus{color:rgb(var(--content2)/.4)}.focus\:text-content2\/5:focus{color:rgb(var(--content2)/.05)}.focus\:text-content2\/50:focus{color:rgb(var(--content2)/.5)}.focus\:text-content2\/60:focus{color:rgb(var(--content2)/.6)}.focus\:text-content2\/70:focus{color:rgb(var(--content2)/.7)}.focus\:text-content2\/75:focus{color:rgb(var(--content2)/.75)}.focus\:text-content2\/80:focus{color:rgb(var(--content2)/.8)}.focus\:text-content2\/90:focus{color:rgb(var(--content2)/.9)}.focus\:text-content2\/95:focus{color:rgb(var(--content2)/.95)}.focus\:text-content3:focus{--tw-text-opacity:1;color:rgb(var(--content3)/var(--tw-text-opacity))}.focus\:text-content3\/0:focus{color:rgb(var(--content3)/0)}.focus\:text-content3\/10:focus{color:rgb(var(--content3)/.1)}.focus\:text-content3\/100:focus{color:rgb(var(--content3)/1)}.focus\:text-content3\/20:focus{color:rgb(var(--content3)/.2)}.focus\:text-content3\/25:focus{color:rgb(var(--content3)/.25)}.focus\:text-content3\/30:focus{color:rgb(var(--content3)/.3)}.focus\:text-content3\/40:focus{color:rgb(var(--content3)/.4)}.focus\:text-content3\/5:focus{color:rgb(var(--content3)/.05)}.focus\:text-content3\/50:focus{color:rgb(var(--content3)/.5)}.focus\:text-content3\/60:focus{color:rgb(var(--content3)/.6)}.focus\:text-content3\/70:focus{color:rgb(var(--content3)/.7)}.focus\:text-content3\/75:focus{color:rgb(var(--content3)/.75)}.focus\:text-content3\/80:focus{color:rgb(var(--content3)/.8)}.focus\:text-content3\/90:focus{color:rgb(var(--content3)/.9)}.focus\:text-content3\/95:focus{color:rgb(var(--content3)/.95)}.focus\:text-cyan-1\/0:focus{color:rgb(var(--cyan-1)/0)}.focus\:text-cyan-1\/10:focus{color:rgb(var(--cyan-1)/.1)}.focus\:text-cyan-1\/100:focus{color:rgb(var(--cyan-1)/1)}.focus\:text-cyan-1\/20:focus{color:rgb(var(--cyan-1)/.2)}.focus\:text-cyan-1\/25:focus{color:rgb(var(--cyan-1)/.25)}.focus\:text-cyan-1\/30:focus{color:rgb(var(--cyan-1)/.3)}.focus\:text-cyan-1\/40:focus{color:rgb(var(--cyan-1)/.4)}.focus\:text-cyan-1\/5:focus{color:rgb(var(--cyan-1)/.05)}.focus\:text-cyan-1\/50:focus{color:rgb(var(--cyan-1)/.5)}.focus\:text-cyan-1\/60:focus{color:rgb(var(--cyan-1)/.6)}.focus\:text-cyan-1\/70:focus{color:rgb(var(--cyan-1)/.7)}.focus\:text-cyan-1\/75:focus{color:rgb(var(--cyan-1)/.75)}.focus\:text-cyan-1\/80:focus{color:rgb(var(--cyan-1)/.8)}.focus\:text-cyan-1\/90:focus{color:rgb(var(--cyan-1)/.9)}.focus\:text-cyan-1\/95:focus{color:rgb(var(--cyan-1)/.95)}.focus\:text-cyan-10\/0:focus{color:rgb(var(--cyan-10)/0)}.focus\:text-cyan-10\/10:focus{color:rgb(var(--cyan-10)/.1)}.focus\:text-cyan-10\/100:focus{color:rgb(var(--cyan-10)/1)}.focus\:text-cyan-10\/20:focus{color:rgb(var(--cyan-10)/.2)}.focus\:text-cyan-10\/25:focus{color:rgb(var(--cyan-10)/.25)}.focus\:text-cyan-10\/30:focus{color:rgb(var(--cyan-10)/.3)}.focus\:text-cyan-10\/40:focus{color:rgb(var(--cyan-10)/.4)}.focus\:text-cyan-10\/5:focus{color:rgb(var(--cyan-10)/.05)}.focus\:text-cyan-10\/50:focus{color:rgb(var(--cyan-10)/.5)}.focus\:text-cyan-10\/60:focus{color:rgb(var(--cyan-10)/.6)}.focus\:text-cyan-10\/70:focus{color:rgb(var(--cyan-10)/.7)}.focus\:text-cyan-10\/75:focus{color:rgb(var(--cyan-10)/.75)}.focus\:text-cyan-10\/80:focus{color:rgb(var(--cyan-10)/.8)}.focus\:text-cyan-10\/90:focus{color:rgb(var(--cyan-10)/.9)}.focus\:text-cyan-10\/95:focus{color:rgb(var(--cyan-10)/.95)}.focus\:text-cyan-2\/0:focus{color:rgb(var(--cyan-2)/0)}.focus\:text-cyan-2\/10:focus{color:rgb(var(--cyan-2)/.1)}.focus\:text-cyan-2\/100:focus{color:rgb(var(--cyan-2)/1)}.focus\:text-cyan-2\/20:focus{color:rgb(var(--cyan-2)/.2)}.focus\:text-cyan-2\/25:focus{color:rgb(var(--cyan-2)/.25)}.focus\:text-cyan-2\/30:focus{color:rgb(var(--cyan-2)/.3)}.focus\:text-cyan-2\/40:focus{color:rgb(var(--cyan-2)/.4)}.focus\:text-cyan-2\/5:focus{color:rgb(var(--cyan-2)/.05)}.focus\:text-cyan-2\/50:focus{color:rgb(var(--cyan-2)/.5)}.focus\:text-cyan-2\/60:focus{color:rgb(var(--cyan-2)/.6)}.focus\:text-cyan-2\/70:focus{color:rgb(var(--cyan-2)/.7)}.focus\:text-cyan-2\/75:focus{color:rgb(var(--cyan-2)/.75)}.focus\:text-cyan-2\/80:focus{color:rgb(var(--cyan-2)/.8)}.focus\:text-cyan-2\/90:focus{color:rgb(var(--cyan-2)/.9)}.focus\:text-cyan-2\/95:focus{color:rgb(var(--cyan-2)/.95)}.focus\:text-cyan-3\/0:focus{color:rgb(var(--cyan-3)/0)}.focus\:text-cyan-3\/10:focus{color:rgb(var(--cyan-3)/.1)}.focus\:text-cyan-3\/100:focus{color:rgb(var(--cyan-3)/1)}.focus\:text-cyan-3\/20:focus{color:rgb(var(--cyan-3)/.2)}.focus\:text-cyan-3\/25:focus{color:rgb(var(--cyan-3)/.25)}.focus\:text-cyan-3\/30:focus{color:rgb(var(--cyan-3)/.3)}.focus\:text-cyan-3\/40:focus{color:rgb(var(--cyan-3)/.4)}.focus\:text-cyan-3\/5:focus{color:rgb(var(--cyan-3)/.05)}.focus\:text-cyan-3\/50:focus{color:rgb(var(--cyan-3)/.5)}.focus\:text-cyan-3\/60:focus{color:rgb(var(--cyan-3)/.6)}.focus\:text-cyan-3\/70:focus{color:rgb(var(--cyan-3)/.7)}.focus\:text-cyan-3\/75:focus{color:rgb(var(--cyan-3)/.75)}.focus\:text-cyan-3\/80:focus{color:rgb(var(--cyan-3)/.8)}.focus\:text-cyan-3\/90:focus{color:rgb(var(--cyan-3)/.9)}.focus\:text-cyan-3\/95:focus{color:rgb(var(--cyan-3)/.95)}.focus\:text-cyan-4\/0:focus{color:rgb(var(--cyan-4)/0)}.focus\:text-cyan-4\/10:focus{color:rgb(var(--cyan-4)/.1)}.focus\:text-cyan-4\/100:focus{color:rgb(var(--cyan-4)/1)}.focus\:text-cyan-4\/20:focus{color:rgb(var(--cyan-4)/.2)}.focus\:text-cyan-4\/25:focus{color:rgb(var(--cyan-4)/.25)}.focus\:text-cyan-4\/30:focus{color:rgb(var(--cyan-4)/.3)}.focus\:text-cyan-4\/40:focus{color:rgb(var(--cyan-4)/.4)}.focus\:text-cyan-4\/5:focus{color:rgb(var(--cyan-4)/.05)}.focus\:text-cyan-4\/50:focus{color:rgb(var(--cyan-4)/.5)}.focus\:text-cyan-4\/60:focus{color:rgb(var(--cyan-4)/.6)}.focus\:text-cyan-4\/70:focus{color:rgb(var(--cyan-4)/.7)}.focus\:text-cyan-4\/75:focus{color:rgb(var(--cyan-4)/.75)}.focus\:text-cyan-4\/80:focus{color:rgb(var(--cyan-4)/.8)}.focus\:text-cyan-4\/90:focus{color:rgb(var(--cyan-4)/.9)}.focus\:text-cyan-4\/95:focus{color:rgb(var(--cyan-4)/.95)}.focus\:text-cyan-5\/0:focus{color:rgb(var(--cyan-5)/0)}.focus\:text-cyan-5\/10:focus{color:rgb(var(--cyan-5)/.1)}.focus\:text-cyan-5\/100:focus{color:rgb(var(--cyan-5)/1)}.focus\:text-cyan-5\/20:focus{color:rgb(var(--cyan-5)/.2)}.focus\:text-cyan-5\/25:focus{color:rgb(var(--cyan-5)/.25)}.focus\:text-cyan-5\/30:focus{color:rgb(var(--cyan-5)/.3)}.focus\:text-cyan-5\/40:focus{color:rgb(var(--cyan-5)/.4)}.focus\:text-cyan-5\/5:focus{color:rgb(var(--cyan-5)/.05)}.focus\:text-cyan-5\/50:focus{color:rgb(var(--cyan-5)/.5)}.focus\:text-cyan-5\/60:focus{color:rgb(var(--cyan-5)/.6)}.focus\:text-cyan-5\/70:focus{color:rgb(var(--cyan-5)/.7)}.focus\:text-cyan-5\/75:focus{color:rgb(var(--cyan-5)/.75)}.focus\:text-cyan-5\/80:focus{color:rgb(var(--cyan-5)/.8)}.focus\:text-cyan-5\/90:focus{color:rgb(var(--cyan-5)/.9)}.focus\:text-cyan-5\/95:focus{color:rgb(var(--cyan-5)/.95)}.focus\:text-cyan-6\/0:focus{color:rgb(var(--cyan-6)/0)}.focus\:text-cyan-6\/10:focus{color:rgb(var(--cyan-6)/.1)}.focus\:text-cyan-6\/100:focus{color:rgb(var(--cyan-6)/1)}.focus\:text-cyan-6\/20:focus{color:rgb(var(--cyan-6)/.2)}.focus\:text-cyan-6\/25:focus{color:rgb(var(--cyan-6)/.25)}.focus\:text-cyan-6\/30:focus{color:rgb(var(--cyan-6)/.3)}.focus\:text-cyan-6\/40:focus{color:rgb(var(--cyan-6)/.4)}.focus\:text-cyan-6\/5:focus{color:rgb(var(--cyan-6)/.05)}.focus\:text-cyan-6\/50:focus{color:rgb(var(--cyan-6)/.5)}.focus\:text-cyan-6\/60:focus{color:rgb(var(--cyan-6)/.6)}.focus\:text-cyan-6\/70:focus{color:rgb(var(--cyan-6)/.7)}.focus\:text-cyan-6\/75:focus{color:rgb(var(--cyan-6)/.75)}.focus\:text-cyan-6\/80:focus{color:rgb(var(--cyan-6)/.8)}.focus\:text-cyan-6\/90:focus{color:rgb(var(--cyan-6)/.9)}.focus\:text-cyan-6\/95:focus{color:rgb(var(--cyan-6)/.95)}.focus\:text-cyan-7\/0:focus{color:rgb(var(--cyan-7)/0)}.focus\:text-cyan-7\/10:focus{color:rgb(var(--cyan-7)/.1)}.focus\:text-cyan-7\/100:focus{color:rgb(var(--cyan-7)/1)}.focus\:text-cyan-7\/20:focus{color:rgb(var(--cyan-7)/.2)}.focus\:text-cyan-7\/25:focus{color:rgb(var(--cyan-7)/.25)}.focus\:text-cyan-7\/30:focus{color:rgb(var(--cyan-7)/.3)}.focus\:text-cyan-7\/40:focus{color:rgb(var(--cyan-7)/.4)}.focus\:text-cyan-7\/5:focus{color:rgb(var(--cyan-7)/.05)}.focus\:text-cyan-7\/50:focus{color:rgb(var(--cyan-7)/.5)}.focus\:text-cyan-7\/60:focus{color:rgb(var(--cyan-7)/.6)}.focus\:text-cyan-7\/70:focus{color:rgb(var(--cyan-7)/.7)}.focus\:text-cyan-7\/75:focus{color:rgb(var(--cyan-7)/.75)}.focus\:text-cyan-7\/80:focus{color:rgb(var(--cyan-7)/.8)}.focus\:text-cyan-7\/90:focus{color:rgb(var(--cyan-7)/.9)}.focus\:text-cyan-7\/95:focus{color:rgb(var(--cyan-7)/.95)}.focus\:text-cyan-8\/0:focus{color:rgb(var(--cyan-8)/0)}.focus\:text-cyan-8\/10:focus{color:rgb(var(--cyan-8)/.1)}.focus\:text-cyan-8\/100:focus{color:rgb(var(--cyan-8)/1)}.focus\:text-cyan-8\/20:focus{color:rgb(var(--cyan-8)/.2)}.focus\:text-cyan-8\/25:focus{color:rgb(var(--cyan-8)/.25)}.focus\:text-cyan-8\/30:focus{color:rgb(var(--cyan-8)/.3)}.focus\:text-cyan-8\/40:focus{color:rgb(var(--cyan-8)/.4)}.focus\:text-cyan-8\/5:focus{color:rgb(var(--cyan-8)/.05)}.focus\:text-cyan-8\/50:focus{color:rgb(var(--cyan-8)/.5)}.focus\:text-cyan-8\/60:focus{color:rgb(var(--cyan-8)/.6)}.focus\:text-cyan-8\/70:focus{color:rgb(var(--cyan-8)/.7)}.focus\:text-cyan-8\/75:focus{color:rgb(var(--cyan-8)/.75)}.focus\:text-cyan-8\/80:focus{color:rgb(var(--cyan-8)/.8)}.focus\:text-cyan-8\/90:focus{color:rgb(var(--cyan-8)/.9)}.focus\:text-cyan-8\/95:focus{color:rgb(var(--cyan-8)/.95)}.focus\:text-cyan-9\/0:focus{color:rgb(var(--cyan-9)/0)}.focus\:text-cyan-9\/10:focus{color:rgb(var(--cyan-9)/.1)}.focus\:text-cyan-9\/100:focus{color:rgb(var(--cyan-9)/1)}.focus\:text-cyan-9\/20:focus{color:rgb(var(--cyan-9)/.2)}.focus\:text-cyan-9\/25:focus{color:rgb(var(--cyan-9)/.25)}.focus\:text-cyan-9\/30:focus{color:rgb(var(--cyan-9)/.3)}.focus\:text-cyan-9\/40:focus{color:rgb(var(--cyan-9)/.4)}.focus\:text-cyan-9\/5:focus{color:rgb(var(--cyan-9)/.05)}.focus\:text-cyan-9\/50:focus{color:rgb(var(--cyan-9)/.5)}.focus\:text-cyan-9\/60:focus{color:rgb(var(--cyan-9)/.6)}.focus\:text-cyan-9\/70:focus{color:rgb(var(--cyan-9)/.7)}.focus\:text-cyan-9\/75:focus{color:rgb(var(--cyan-9)/.75)}.focus\:text-cyan-9\/80:focus{color:rgb(var(--cyan-9)/.8)}.focus\:text-cyan-9\/90:focus{color:rgb(var(--cyan-9)/.9)}.focus\:text-cyan-9\/95:focus{color:rgb(var(--cyan-9)/.95)}.focus\:text-error:focus{--tw-text-opacity:1;color:rgb(var(--error)/var(--tw-text-opacity))}.focus\:text-error\/0:focus{color:rgb(var(--error)/0)}.focus\:text-error\/10:focus{color:rgb(var(--error)/.1)}.focus\:text-error\/100:focus{color:rgb(var(--error)/1)}.focus\:text-error\/20:focus{color:rgb(var(--error)/.2)}.focus\:text-error\/25:focus{color:rgb(var(--error)/.25)}.focus\:text-error\/30:focus{color:rgb(var(--error)/.3)}.focus\:text-error\/40:focus{color:rgb(var(--error)/.4)}.focus\:text-error\/5:focus{color:rgb(var(--error)/.05)}.focus\:text-error\/50:focus{color:rgb(var(--error)/.5)}.focus\:text-error\/60:focus{color:rgb(var(--error)/.6)}.focus\:text-error\/70:focus{color:rgb(var(--error)/.7)}.focus\:text-error\/75:focus{color:rgb(var(--error)/.75)}.focus\:text-error\/80:focus{color:rgb(var(--error)/.8)}.focus\:text-error\/90:focus{color:rgb(var(--error)/.9)}.focus\:text-error\/95:focus{color:rgb(var(--error)/.95)}.focus\:text-gray-1\/0:focus{color:rgb(var(--gray-1)/0)}.focus\:text-gray-1\/10:focus{color:rgb(var(--gray-1)/.1)}.focus\:text-gray-1\/100:focus{color:rgb(var(--gray-1)/1)}.focus\:text-gray-1\/20:focus{color:rgb(var(--gray-1)/.2)}.focus\:text-gray-1\/25:focus{color:rgb(var(--gray-1)/.25)}.focus\:text-gray-1\/30:focus{color:rgb(var(--gray-1)/.3)}.focus\:text-gray-1\/40:focus{color:rgb(var(--gray-1)/.4)}.focus\:text-gray-1\/5:focus{color:rgb(var(--gray-1)/.05)}.focus\:text-gray-1\/50:focus{color:rgb(var(--gray-1)/.5)}.focus\:text-gray-1\/60:focus{color:rgb(var(--gray-1)/.6)}.focus\:text-gray-1\/70:focus{color:rgb(var(--gray-1)/.7)}.focus\:text-gray-1\/75:focus{color:rgb(var(--gray-1)/.75)}.focus\:text-gray-1\/80:focus{color:rgb(var(--gray-1)/.8)}.focus\:text-gray-1\/90:focus{color:rgb(var(--gray-1)/.9)}.focus\:text-gray-1\/95:focus{color:rgb(var(--gray-1)/.95)}.focus\:text-gray-10\/0:focus{color:rgb(var(--gray-10)/0)}.focus\:text-gray-10\/10:focus{color:rgb(var(--gray-10)/.1)}.focus\:text-gray-10\/100:focus{color:rgb(var(--gray-10)/1)}.focus\:text-gray-10\/20:focus{color:rgb(var(--gray-10)/.2)}.focus\:text-gray-10\/25:focus{color:rgb(var(--gray-10)/.25)}.focus\:text-gray-10\/30:focus{color:rgb(var(--gray-10)/.3)}.focus\:text-gray-10\/40:focus{color:rgb(var(--gray-10)/.4)}.focus\:text-gray-10\/5:focus{color:rgb(var(--gray-10)/.05)}.focus\:text-gray-10\/50:focus{color:rgb(var(--gray-10)/.5)}.focus\:text-gray-10\/60:focus{color:rgb(var(--gray-10)/.6)}.focus\:text-gray-10\/70:focus{color:rgb(var(--gray-10)/.7)}.focus\:text-gray-10\/75:focus{color:rgb(var(--gray-10)/.75)}.focus\:text-gray-10\/80:focus{color:rgb(var(--gray-10)/.8)}.focus\:text-gray-10\/90:focus{color:rgb(var(--gray-10)/.9)}.focus\:text-gray-10\/95:focus{color:rgb(var(--gray-10)/.95)}.focus\:text-gray-2\/0:focus{color:rgb(var(--gray-2)/0)}.focus\:text-gray-2\/10:focus{color:rgb(var(--gray-2)/.1)}.focus\:text-gray-2\/100:focus{color:rgb(var(--gray-2)/1)}.focus\:text-gray-2\/20:focus{color:rgb(var(--gray-2)/.2)}.focus\:text-gray-2\/25:focus{color:rgb(var(--gray-2)/.25)}.focus\:text-gray-2\/30:focus{color:rgb(var(--gray-2)/.3)}.focus\:text-gray-2\/40:focus{color:rgb(var(--gray-2)/.4)}.focus\:text-gray-2\/5:focus{color:rgb(var(--gray-2)/.05)}.focus\:text-gray-2\/50:focus{color:rgb(var(--gray-2)/.5)}.focus\:text-gray-2\/60:focus{color:rgb(var(--gray-2)/.6)}.focus\:text-gray-2\/70:focus{color:rgb(var(--gray-2)/.7)}.focus\:text-gray-2\/75:focus{color:rgb(var(--gray-2)/.75)}.focus\:text-gray-2\/80:focus{color:rgb(var(--gray-2)/.8)}.focus\:text-gray-2\/90:focus{color:rgb(var(--gray-2)/.9)}.focus\:text-gray-2\/95:focus{color:rgb(var(--gray-2)/.95)}.focus\:text-gray-3\/0:focus{color:rgb(var(--gray-3)/0)}.focus\:text-gray-3\/10:focus{color:rgb(var(--gray-3)/.1)}.focus\:text-gray-3\/100:focus{color:rgb(var(--gray-3)/1)}.focus\:text-gray-3\/20:focus{color:rgb(var(--gray-3)/.2)}.focus\:text-gray-3\/25:focus{color:rgb(var(--gray-3)/.25)}.focus\:text-gray-3\/30:focus{color:rgb(var(--gray-3)/.3)}.focus\:text-gray-3\/40:focus{color:rgb(var(--gray-3)/.4)}.focus\:text-gray-3\/5:focus{color:rgb(var(--gray-3)/.05)}.focus\:text-gray-3\/50:focus{color:rgb(var(--gray-3)/.5)}.focus\:text-gray-3\/60:focus{color:rgb(var(--gray-3)/.6)}.focus\:text-gray-3\/70:focus{color:rgb(var(--gray-3)/.7)}.focus\:text-gray-3\/75:focus{color:rgb(var(--gray-3)/.75)}.focus\:text-gray-3\/80:focus{color:rgb(var(--gray-3)/.8)}.focus\:text-gray-3\/90:focus{color:rgb(var(--gray-3)/.9)}.focus\:text-gray-3\/95:focus{color:rgb(var(--gray-3)/.95)}.focus\:text-gray-4\/0:focus{color:rgb(var(--gray-4)/0)}.focus\:text-gray-4\/10:focus{color:rgb(var(--gray-4)/.1)}.focus\:text-gray-4\/100:focus{color:rgb(var(--gray-4)/1)}.focus\:text-gray-4\/20:focus{color:rgb(var(--gray-4)/.2)}.focus\:text-gray-4\/25:focus{color:rgb(var(--gray-4)/.25)}.focus\:text-gray-4\/30:focus{color:rgb(var(--gray-4)/.3)}.focus\:text-gray-4\/40:focus{color:rgb(var(--gray-4)/.4)}.focus\:text-gray-4\/5:focus{color:rgb(var(--gray-4)/.05)}.focus\:text-gray-4\/50:focus{color:rgb(var(--gray-4)/.5)}.focus\:text-gray-4\/60:focus{color:rgb(var(--gray-4)/.6)}.focus\:text-gray-4\/70:focus{color:rgb(var(--gray-4)/.7)}.focus\:text-gray-4\/75:focus{color:rgb(var(--gray-4)/.75)}.focus\:text-gray-4\/80:focus{color:rgb(var(--gray-4)/.8)}.focus\:text-gray-4\/90:focus{color:rgb(var(--gray-4)/.9)}.focus\:text-gray-4\/95:focus{color:rgb(var(--gray-4)/.95)}.focus\:text-gray-5\/0:focus{color:rgb(var(--gray-5)/0)}.focus\:text-gray-5\/10:focus{color:rgb(var(--gray-5)/.1)}.focus\:text-gray-5\/100:focus{color:rgb(var(--gray-5)/1)}.focus\:text-gray-5\/20:focus{color:rgb(var(--gray-5)/.2)}.focus\:text-gray-5\/25:focus{color:rgb(var(--gray-5)/.25)}.focus\:text-gray-5\/30:focus{color:rgb(var(--gray-5)/.3)}.focus\:text-gray-5\/40:focus{color:rgb(var(--gray-5)/.4)}.focus\:text-gray-5\/5:focus{color:rgb(var(--gray-5)/.05)}.focus\:text-gray-5\/50:focus{color:rgb(var(--gray-5)/.5)}.focus\:text-gray-5\/60:focus{color:rgb(var(--gray-5)/.6)}.focus\:text-gray-5\/70:focus{color:rgb(var(--gray-5)/.7)}.focus\:text-gray-5\/75:focus{color:rgb(var(--gray-5)/.75)}.focus\:text-gray-5\/80:focus{color:rgb(var(--gray-5)/.8)}.focus\:text-gray-5\/90:focus{color:rgb(var(--gray-5)/.9)}.focus\:text-gray-5\/95:focus{color:rgb(var(--gray-5)/.95)}.focus\:text-gray-6\/0:focus{color:rgb(var(--gray-6)/0)}.focus\:text-gray-6\/10:focus{color:rgb(var(--gray-6)/.1)}.focus\:text-gray-6\/100:focus{color:rgb(var(--gray-6)/1)}.focus\:text-gray-6\/20:focus{color:rgb(var(--gray-6)/.2)}.focus\:text-gray-6\/25:focus{color:rgb(var(--gray-6)/.25)}.focus\:text-gray-6\/30:focus{color:rgb(var(--gray-6)/.3)}.focus\:text-gray-6\/40:focus{color:rgb(var(--gray-6)/.4)}.focus\:text-gray-6\/5:focus{color:rgb(var(--gray-6)/.05)}.focus\:text-gray-6\/50:focus{color:rgb(var(--gray-6)/.5)}.focus\:text-gray-6\/60:focus{color:rgb(var(--gray-6)/.6)}.focus\:text-gray-6\/70:focus{color:rgb(var(--gray-6)/.7)}.focus\:text-gray-6\/75:focus{color:rgb(var(--gray-6)/.75)}.focus\:text-gray-6\/80:focus{color:rgb(var(--gray-6)/.8)}.focus\:text-gray-6\/90:focus{color:rgb(var(--gray-6)/.9)}.focus\:text-gray-6\/95:focus{color:rgb(var(--gray-6)/.95)}.focus\:text-gray-7\/0:focus{color:rgb(var(--gray-7)/0)}.focus\:text-gray-7\/10:focus{color:rgb(var(--gray-7)/.1)}.focus\:text-gray-7\/100:focus{color:rgb(var(--gray-7)/1)}.focus\:text-gray-7\/20:focus{color:rgb(var(--gray-7)/.2)}.focus\:text-gray-7\/25:focus{color:rgb(var(--gray-7)/.25)}.focus\:text-gray-7\/30:focus{color:rgb(var(--gray-7)/.3)}.focus\:text-gray-7\/40:focus{color:rgb(var(--gray-7)/.4)}.focus\:text-gray-7\/5:focus{color:rgb(var(--gray-7)/.05)}.focus\:text-gray-7\/50:focus{color:rgb(var(--gray-7)/.5)}.focus\:text-gray-7\/60:focus{color:rgb(var(--gray-7)/.6)}.focus\:text-gray-7\/70:focus{color:rgb(var(--gray-7)/.7)}.focus\:text-gray-7\/75:focus{color:rgb(var(--gray-7)/.75)}.focus\:text-gray-7\/80:focus{color:rgb(var(--gray-7)/.8)}.focus\:text-gray-7\/90:focus{color:rgb(var(--gray-7)/.9)}.focus\:text-gray-7\/95:focus{color:rgb(var(--gray-7)/.95)}.focus\:text-gray-8\/0:focus{color:rgb(var(--gray-8)/0)}.focus\:text-gray-8\/10:focus{color:rgb(var(--gray-8)/.1)}.focus\:text-gray-8\/100:focus{color:rgb(var(--gray-8)/1)}.focus\:text-gray-8\/20:focus{color:rgb(var(--gray-8)/.2)}.focus\:text-gray-8\/25:focus{color:rgb(var(--gray-8)/.25)}.focus\:text-gray-8\/30:focus{color:rgb(var(--gray-8)/.3)}.focus\:text-gray-8\/40:focus{color:rgb(var(--gray-8)/.4)}.focus\:text-gray-8\/5:focus{color:rgb(var(--gray-8)/.05)}.focus\:text-gray-8\/50:focus{color:rgb(var(--gray-8)/.5)}.focus\:text-gray-8\/60:focus{color:rgb(var(--gray-8)/.6)}.focus\:text-gray-8\/70:focus{color:rgb(var(--gray-8)/.7)}.focus\:text-gray-8\/75:focus{color:rgb(var(--gray-8)/.75)}.focus\:text-gray-8\/80:focus{color:rgb(var(--gray-8)/.8)}.focus\:text-gray-8\/90:focus{color:rgb(var(--gray-8)/.9)}.focus\:text-gray-8\/95:focus{color:rgb(var(--gray-8)/.95)}.focus\:text-gray-9\/0:focus{color:rgb(var(--gray-9)/0)}.focus\:text-gray-9\/10:focus{color:rgb(var(--gray-9)/.1)}.focus\:text-gray-9\/100:focus{color:rgb(var(--gray-9)/1)}.focus\:text-gray-9\/20:focus{color:rgb(var(--gray-9)/.2)}.focus\:text-gray-9\/25:focus{color:rgb(var(--gray-9)/.25)}.focus\:text-gray-9\/30:focus{color:rgb(var(--gray-9)/.3)}.focus\:text-gray-9\/40:focus{color:rgb(var(--gray-9)/.4)}.focus\:text-gray-9\/5:focus{color:rgb(var(--gray-9)/.05)}.focus\:text-gray-9\/50:focus{color:rgb(var(--gray-9)/.5)}.focus\:text-gray-9\/60:focus{color:rgb(var(--gray-9)/.6)}.focus\:text-gray-9\/70:focus{color:rgb(var(--gray-9)/.7)}.focus\:text-gray-9\/75:focus{color:rgb(var(--gray-9)/.75)}.focus\:text-gray-9\/80:focus{color:rgb(var(--gray-9)/.8)}.focus\:text-gray-9\/90:focus{color:rgb(var(--gray-9)/.9)}.focus\:text-gray-9\/95:focus{color:rgb(var(--gray-9)/.95)}.focus\:text-green-1\/0:focus{color:rgb(var(--green-1)/0)}.focus\:text-green-1\/10:focus{color:rgb(var(--green-1)/.1)}.focus\:text-green-1\/100:focus{color:rgb(var(--green-1)/1)}.focus\:text-green-1\/20:focus{color:rgb(var(--green-1)/.2)}.focus\:text-green-1\/25:focus{color:rgb(var(--green-1)/.25)}.focus\:text-green-1\/30:focus{color:rgb(var(--green-1)/.3)}.focus\:text-green-1\/40:focus{color:rgb(var(--green-1)/.4)}.focus\:text-green-1\/5:focus{color:rgb(var(--green-1)/.05)}.focus\:text-green-1\/50:focus{color:rgb(var(--green-1)/.5)}.focus\:text-green-1\/60:focus{color:rgb(var(--green-1)/.6)}.focus\:text-green-1\/70:focus{color:rgb(var(--green-1)/.7)}.focus\:text-green-1\/75:focus{color:rgb(var(--green-1)/.75)}.focus\:text-green-1\/80:focus{color:rgb(var(--green-1)/.8)}.focus\:text-green-1\/90:focus{color:rgb(var(--green-1)/.9)}.focus\:text-green-1\/95:focus{color:rgb(var(--green-1)/.95)}.focus\:text-green-10\/0:focus{color:rgb(var(--green-10)/0)}.focus\:text-green-10\/10:focus{color:rgb(var(--green-10)/.1)}.focus\:text-green-10\/100:focus{color:rgb(var(--green-10)/1)}.focus\:text-green-10\/20:focus{color:rgb(var(--green-10)/.2)}.focus\:text-green-10\/25:focus{color:rgb(var(--green-10)/.25)}.focus\:text-green-10\/30:focus{color:rgb(var(--green-10)/.3)}.focus\:text-green-10\/40:focus{color:rgb(var(--green-10)/.4)}.focus\:text-green-10\/5:focus{color:rgb(var(--green-10)/.05)}.focus\:text-green-10\/50:focus{color:rgb(var(--green-10)/.5)}.focus\:text-green-10\/60:focus{color:rgb(var(--green-10)/.6)}.focus\:text-green-10\/70:focus{color:rgb(var(--green-10)/.7)}.focus\:text-green-10\/75:focus{color:rgb(var(--green-10)/.75)}.focus\:text-green-10\/80:focus{color:rgb(var(--green-10)/.8)}.focus\:text-green-10\/90:focus{color:rgb(var(--green-10)/.9)}.focus\:text-green-10\/95:focus{color:rgb(var(--green-10)/.95)}.focus\:text-green-2\/0:focus{color:rgb(var(--green-2)/0)}.focus\:text-green-2\/10:focus{color:rgb(var(--green-2)/.1)}.focus\:text-green-2\/100:focus{color:rgb(var(--green-2)/1)}.focus\:text-green-2\/20:focus{color:rgb(var(--green-2)/.2)}.focus\:text-green-2\/25:focus{color:rgb(var(--green-2)/.25)}.focus\:text-green-2\/30:focus{color:rgb(var(--green-2)/.3)}.focus\:text-green-2\/40:focus{color:rgb(var(--green-2)/.4)}.focus\:text-green-2\/5:focus{color:rgb(var(--green-2)/.05)}.focus\:text-green-2\/50:focus{color:rgb(var(--green-2)/.5)}.focus\:text-green-2\/60:focus{color:rgb(var(--green-2)/.6)}.focus\:text-green-2\/70:focus{color:rgb(var(--green-2)/.7)}.focus\:text-green-2\/75:focus{color:rgb(var(--green-2)/.75)}.focus\:text-green-2\/80:focus{color:rgb(var(--green-2)/.8)}.focus\:text-green-2\/90:focus{color:rgb(var(--green-2)/.9)}.focus\:text-green-2\/95:focus{color:rgb(var(--green-2)/.95)}.focus\:text-green-3\/0:focus{color:rgb(var(--green-3)/0)}.focus\:text-green-3\/10:focus{color:rgb(var(--green-3)/.1)}.focus\:text-green-3\/100:focus{color:rgb(var(--green-3)/1)}.focus\:text-green-3\/20:focus{color:rgb(var(--green-3)/.2)}.focus\:text-green-3\/25:focus{color:rgb(var(--green-3)/.25)}.focus\:text-green-3\/30:focus{color:rgb(var(--green-3)/.3)}.focus\:text-green-3\/40:focus{color:rgb(var(--green-3)/.4)}.focus\:text-green-3\/5:focus{color:rgb(var(--green-3)/.05)}.focus\:text-green-3\/50:focus{color:rgb(var(--green-3)/.5)}.focus\:text-green-3\/60:focus{color:rgb(var(--green-3)/.6)}.focus\:text-green-3\/70:focus{color:rgb(var(--green-3)/.7)}.focus\:text-green-3\/75:focus{color:rgb(var(--green-3)/.75)}.focus\:text-green-3\/80:focus{color:rgb(var(--green-3)/.8)}.focus\:text-green-3\/90:focus{color:rgb(var(--green-3)/.9)}.focus\:text-green-3\/95:focus{color:rgb(var(--green-3)/.95)}.focus\:text-green-4\/0:focus{color:rgb(var(--green-4)/0)}.focus\:text-green-4\/10:focus{color:rgb(var(--green-4)/.1)}.focus\:text-green-4\/100:focus{color:rgb(var(--green-4)/1)}.focus\:text-green-4\/20:focus{color:rgb(var(--green-4)/.2)}.focus\:text-green-4\/25:focus{color:rgb(var(--green-4)/.25)}.focus\:text-green-4\/30:focus{color:rgb(var(--green-4)/.3)}.focus\:text-green-4\/40:focus{color:rgb(var(--green-4)/.4)}.focus\:text-green-4\/5:focus{color:rgb(var(--green-4)/.05)}.focus\:text-green-4\/50:focus{color:rgb(var(--green-4)/.5)}.focus\:text-green-4\/60:focus{color:rgb(var(--green-4)/.6)}.focus\:text-green-4\/70:focus{color:rgb(var(--green-4)/.7)}.focus\:text-green-4\/75:focus{color:rgb(var(--green-4)/.75)}.focus\:text-green-4\/80:focus{color:rgb(var(--green-4)/.8)}.focus\:text-green-4\/90:focus{color:rgb(var(--green-4)/.9)}.focus\:text-green-4\/95:focus{color:rgb(var(--green-4)/.95)}.focus\:text-green-5\/0:focus{color:rgb(var(--green-5)/0)}.focus\:text-green-5\/10:focus{color:rgb(var(--green-5)/.1)}.focus\:text-green-5\/100:focus{color:rgb(var(--green-5)/1)}.focus\:text-green-5\/20:focus{color:rgb(var(--green-5)/.2)}.focus\:text-green-5\/25:focus{color:rgb(var(--green-5)/.25)}.focus\:text-green-5\/30:focus{color:rgb(var(--green-5)/.3)}.focus\:text-green-5\/40:focus{color:rgb(var(--green-5)/.4)}.focus\:text-green-5\/5:focus{color:rgb(var(--green-5)/.05)}.focus\:text-green-5\/50:focus{color:rgb(var(--green-5)/.5)}.focus\:text-green-5\/60:focus{color:rgb(var(--green-5)/.6)}.focus\:text-green-5\/70:focus{color:rgb(var(--green-5)/.7)}.focus\:text-green-5\/75:focus{color:rgb(var(--green-5)/.75)}.focus\:text-green-5\/80:focus{color:rgb(var(--green-5)/.8)}.focus\:text-green-5\/90:focus{color:rgb(var(--green-5)/.9)}.focus\:text-green-5\/95:focus{color:rgb(var(--green-5)/.95)}.focus\:text-green-6\/0:focus{color:rgb(var(--green-6)/0)}.focus\:text-green-6\/10:focus{color:rgb(var(--green-6)/.1)}.focus\:text-green-6\/100:focus{color:rgb(var(--green-6)/1)}.focus\:text-green-6\/20:focus{color:rgb(var(--green-6)/.2)}.focus\:text-green-6\/25:focus{color:rgb(var(--green-6)/.25)}.focus\:text-green-6\/30:focus{color:rgb(var(--green-6)/.3)}.focus\:text-green-6\/40:focus{color:rgb(var(--green-6)/.4)}.focus\:text-green-6\/5:focus{color:rgb(var(--green-6)/.05)}.focus\:text-green-6\/50:focus{color:rgb(var(--green-6)/.5)}.focus\:text-green-6\/60:focus{color:rgb(var(--green-6)/.6)}.focus\:text-green-6\/70:focus{color:rgb(var(--green-6)/.7)}.focus\:text-green-6\/75:focus{color:rgb(var(--green-6)/.75)}.focus\:text-green-6\/80:focus{color:rgb(var(--green-6)/.8)}.focus\:text-green-6\/90:focus{color:rgb(var(--green-6)/.9)}.focus\:text-green-6\/95:focus{color:rgb(var(--green-6)/.95)}.focus\:text-green-7\/0:focus{color:rgb(var(--green-7)/0)}.focus\:text-green-7\/10:focus{color:rgb(var(--green-7)/.1)}.focus\:text-green-7\/100:focus{color:rgb(var(--green-7)/1)}.focus\:text-green-7\/20:focus{color:rgb(var(--green-7)/.2)}.focus\:text-green-7\/25:focus{color:rgb(var(--green-7)/.25)}.focus\:text-green-7\/30:focus{color:rgb(var(--green-7)/.3)}.focus\:text-green-7\/40:focus{color:rgb(var(--green-7)/.4)}.focus\:text-green-7\/5:focus{color:rgb(var(--green-7)/.05)}.focus\:text-green-7\/50:focus{color:rgb(var(--green-7)/.5)}.focus\:text-green-7\/60:focus{color:rgb(var(--green-7)/.6)}.focus\:text-green-7\/70:focus{color:rgb(var(--green-7)/.7)}.focus\:text-green-7\/75:focus{color:rgb(var(--green-7)/.75)}.focus\:text-green-7\/80:focus{color:rgb(var(--green-7)/.8)}.focus\:text-green-7\/90:focus{color:rgb(var(--green-7)/.9)}.focus\:text-green-7\/95:focus{color:rgb(var(--green-7)/.95)}.focus\:text-green-8\/0:focus{color:rgb(var(--green-8)/0)}.focus\:text-green-8\/10:focus{color:rgb(var(--green-8)/.1)}.focus\:text-green-8\/100:focus{color:rgb(var(--green-8)/1)}.focus\:text-green-8\/20:focus{color:rgb(var(--green-8)/.2)}.focus\:text-green-8\/25:focus{color:rgb(var(--green-8)/.25)}.focus\:text-green-8\/30:focus{color:rgb(var(--green-8)/.3)}.focus\:text-green-8\/40:focus{color:rgb(var(--green-8)/.4)}.focus\:text-green-8\/5:focus{color:rgb(var(--green-8)/.05)}.focus\:text-green-8\/50:focus{color:rgb(var(--green-8)/.5)}.focus\:text-green-8\/60:focus{color:rgb(var(--green-8)/.6)}.focus\:text-green-8\/70:focus{color:rgb(var(--green-8)/.7)}.focus\:text-green-8\/75:focus{color:rgb(var(--green-8)/.75)}.focus\:text-green-8\/80:focus{color:rgb(var(--green-8)/.8)}.focus\:text-green-8\/90:focus{color:rgb(var(--green-8)/.9)}.focus\:text-green-8\/95:focus{color:rgb(var(--green-8)/.95)}.focus\:text-green-9\/0:focus{color:rgb(var(--green-9)/0)}.focus\:text-green-9\/10:focus{color:rgb(var(--green-9)/.1)}.focus\:text-green-9\/100:focus{color:rgb(var(--green-9)/1)}.focus\:text-green-9\/20:focus{color:rgb(var(--green-9)/.2)}.focus\:text-green-9\/25:focus{color:rgb(var(--green-9)/.25)}.focus\:text-green-9\/30:focus{color:rgb(var(--green-9)/.3)}.focus\:text-green-9\/40:focus{color:rgb(var(--green-9)/.4)}.focus\:text-green-9\/5:focus{color:rgb(var(--green-9)/.05)}.focus\:text-green-9\/50:focus{color:rgb(var(--green-9)/.5)}.focus\:text-green-9\/60:focus{color:rgb(var(--green-9)/.6)}.focus\:text-green-9\/70:focus{color:rgb(var(--green-9)/.7)}.focus\:text-green-9\/75:focus{color:rgb(var(--green-9)/.75)}.focus\:text-green-9\/80:focus{color:rgb(var(--green-9)/.8)}.focus\:text-green-9\/90:focus{color:rgb(var(--green-9)/.9)}.focus\:text-green-9\/95:focus{color:rgb(var(--green-9)/.95)}.focus\:text-pink-1\/0:focus{color:rgb(var(--pink-1)/0)}.focus\:text-pink-1\/10:focus{color:rgb(var(--pink-1)/.1)}.focus\:text-pink-1\/100:focus{color:rgb(var(--pink-1)/1)}.focus\:text-pink-1\/20:focus{color:rgb(var(--pink-1)/.2)}.focus\:text-pink-1\/25:focus{color:rgb(var(--pink-1)/.25)}.focus\:text-pink-1\/30:focus{color:rgb(var(--pink-1)/.3)}.focus\:text-pink-1\/40:focus{color:rgb(var(--pink-1)/.4)}.focus\:text-pink-1\/5:focus{color:rgb(var(--pink-1)/.05)}.focus\:text-pink-1\/50:focus{color:rgb(var(--pink-1)/.5)}.focus\:text-pink-1\/60:focus{color:rgb(var(--pink-1)/.6)}.focus\:text-pink-1\/70:focus{color:rgb(var(--pink-1)/.7)}.focus\:text-pink-1\/75:focus{color:rgb(var(--pink-1)/.75)}.focus\:text-pink-1\/80:focus{color:rgb(var(--pink-1)/.8)}.focus\:text-pink-1\/90:focus{color:rgb(var(--pink-1)/.9)}.focus\:text-pink-1\/95:focus{color:rgb(var(--pink-1)/.95)}.focus\:text-pink-10\/0:focus{color:rgb(var(--pink-10)/0)}.focus\:text-pink-10\/10:focus{color:rgb(var(--pink-10)/.1)}.focus\:text-pink-10\/100:focus{color:rgb(var(--pink-10)/1)}.focus\:text-pink-10\/20:focus{color:rgb(var(--pink-10)/.2)}.focus\:text-pink-10\/25:focus{color:rgb(var(--pink-10)/.25)}.focus\:text-pink-10\/30:focus{color:rgb(var(--pink-10)/.3)}.focus\:text-pink-10\/40:focus{color:rgb(var(--pink-10)/.4)}.focus\:text-pink-10\/5:focus{color:rgb(var(--pink-10)/.05)}.focus\:text-pink-10\/50:focus{color:rgb(var(--pink-10)/.5)}.focus\:text-pink-10\/60:focus{color:rgb(var(--pink-10)/.6)}.focus\:text-pink-10\/70:focus{color:rgb(var(--pink-10)/.7)}.focus\:text-pink-10\/75:focus{color:rgb(var(--pink-10)/.75)}.focus\:text-pink-10\/80:focus{color:rgb(var(--pink-10)/.8)}.focus\:text-pink-10\/90:focus{color:rgb(var(--pink-10)/.9)}.focus\:text-pink-10\/95:focus{color:rgb(var(--pink-10)/.95)}.focus\:text-pink-2\/0:focus{color:rgb(var(--pink-2)/0)}.focus\:text-pink-2\/10:focus{color:rgb(var(--pink-2)/.1)}.focus\:text-pink-2\/100:focus{color:rgb(var(--pink-2)/1)}.focus\:text-pink-2\/20:focus{color:rgb(var(--pink-2)/.2)}.focus\:text-pink-2\/25:focus{color:rgb(var(--pink-2)/.25)}.focus\:text-pink-2\/30:focus{color:rgb(var(--pink-2)/.3)}.focus\:text-pink-2\/40:focus{color:rgb(var(--pink-2)/.4)}.focus\:text-pink-2\/5:focus{color:rgb(var(--pink-2)/.05)}.focus\:text-pink-2\/50:focus{color:rgb(var(--pink-2)/.5)}.focus\:text-pink-2\/60:focus{color:rgb(var(--pink-2)/.6)}.focus\:text-pink-2\/70:focus{color:rgb(var(--pink-2)/.7)}.focus\:text-pink-2\/75:focus{color:rgb(var(--pink-2)/.75)}.focus\:text-pink-2\/80:focus{color:rgb(var(--pink-2)/.8)}.focus\:text-pink-2\/90:focus{color:rgb(var(--pink-2)/.9)}.focus\:text-pink-2\/95:focus{color:rgb(var(--pink-2)/.95)}.focus\:text-pink-3\/0:focus{color:rgb(var(--pink-3)/0)}.focus\:text-pink-3\/10:focus{color:rgb(var(--pink-3)/.1)}.focus\:text-pink-3\/100:focus{color:rgb(var(--pink-3)/1)}.focus\:text-pink-3\/20:focus{color:rgb(var(--pink-3)/.2)}.focus\:text-pink-3\/25:focus{color:rgb(var(--pink-3)/.25)}.focus\:text-pink-3\/30:focus{color:rgb(var(--pink-3)/.3)}.focus\:text-pink-3\/40:focus{color:rgb(var(--pink-3)/.4)}.focus\:text-pink-3\/5:focus{color:rgb(var(--pink-3)/.05)}.focus\:text-pink-3\/50:focus{color:rgb(var(--pink-3)/.5)}.focus\:text-pink-3\/60:focus{color:rgb(var(--pink-3)/.6)}.focus\:text-pink-3\/70:focus{color:rgb(var(--pink-3)/.7)}.focus\:text-pink-3\/75:focus{color:rgb(var(--pink-3)/.75)}.focus\:text-pink-3\/80:focus{color:rgb(var(--pink-3)/.8)}.focus\:text-pink-3\/90:focus{color:rgb(var(--pink-3)/.9)}.focus\:text-pink-3\/95:focus{color:rgb(var(--pink-3)/.95)}.focus\:text-pink-4\/0:focus{color:rgb(var(--pink-4)/0)}.focus\:text-pink-4\/10:focus{color:rgb(var(--pink-4)/.1)}.focus\:text-pink-4\/100:focus{color:rgb(var(--pink-4)/1)}.focus\:text-pink-4\/20:focus{color:rgb(var(--pink-4)/.2)}.focus\:text-pink-4\/25:focus{color:rgb(var(--pink-4)/.25)}.focus\:text-pink-4\/30:focus{color:rgb(var(--pink-4)/.3)}.focus\:text-pink-4\/40:focus{color:rgb(var(--pink-4)/.4)}.focus\:text-pink-4\/5:focus{color:rgb(var(--pink-4)/.05)}.focus\:text-pink-4\/50:focus{color:rgb(var(--pink-4)/.5)}.focus\:text-pink-4\/60:focus{color:rgb(var(--pink-4)/.6)}.focus\:text-pink-4\/70:focus{color:rgb(var(--pink-4)/.7)}.focus\:text-pink-4\/75:focus{color:rgb(var(--pink-4)/.75)}.focus\:text-pink-4\/80:focus{color:rgb(var(--pink-4)/.8)}.focus\:text-pink-4\/90:focus{color:rgb(var(--pink-4)/.9)}.focus\:text-pink-4\/95:focus{color:rgb(var(--pink-4)/.95)}.focus\:text-pink-5\/0:focus{color:rgb(var(--pink-5)/0)}.focus\:text-pink-5\/10:focus{color:rgb(var(--pink-5)/.1)}.focus\:text-pink-5\/100:focus{color:rgb(var(--pink-5)/1)}.focus\:text-pink-5\/20:focus{color:rgb(var(--pink-5)/.2)}.focus\:text-pink-5\/25:focus{color:rgb(var(--pink-5)/.25)}.focus\:text-pink-5\/30:focus{color:rgb(var(--pink-5)/.3)}.focus\:text-pink-5\/40:focus{color:rgb(var(--pink-5)/.4)}.focus\:text-pink-5\/5:focus{color:rgb(var(--pink-5)/.05)}.focus\:text-pink-5\/50:focus{color:rgb(var(--pink-5)/.5)}.focus\:text-pink-5\/60:focus{color:rgb(var(--pink-5)/.6)}.focus\:text-pink-5\/70:focus{color:rgb(var(--pink-5)/.7)}.focus\:text-pink-5\/75:focus{color:rgb(var(--pink-5)/.75)}.focus\:text-pink-5\/80:focus{color:rgb(var(--pink-5)/.8)}.focus\:text-pink-5\/90:focus{color:rgb(var(--pink-5)/.9)}.focus\:text-pink-5\/95:focus{color:rgb(var(--pink-5)/.95)}.focus\:text-pink-6\/0:focus{color:rgb(var(--pink-6)/0)}.focus\:text-pink-6\/10:focus{color:rgb(var(--pink-6)/.1)}.focus\:text-pink-6\/100:focus{color:rgb(var(--pink-6)/1)}.focus\:text-pink-6\/20:focus{color:rgb(var(--pink-6)/.2)}.focus\:text-pink-6\/25:focus{color:rgb(var(--pink-6)/.25)}.focus\:text-pink-6\/30:focus{color:rgb(var(--pink-6)/.3)}.focus\:text-pink-6\/40:focus{color:rgb(var(--pink-6)/.4)}.focus\:text-pink-6\/5:focus{color:rgb(var(--pink-6)/.05)}.focus\:text-pink-6\/50:focus{color:rgb(var(--pink-6)/.5)}.focus\:text-pink-6\/60:focus{color:rgb(var(--pink-6)/.6)}.focus\:text-pink-6\/70:focus{color:rgb(var(--pink-6)/.7)}.focus\:text-pink-6\/75:focus{color:rgb(var(--pink-6)/.75)}.focus\:text-pink-6\/80:focus{color:rgb(var(--pink-6)/.8)}.focus\:text-pink-6\/90:focus{color:rgb(var(--pink-6)/.9)}.focus\:text-pink-6\/95:focus{color:rgb(var(--pink-6)/.95)}.focus\:text-pink-7\/0:focus{color:rgb(var(--pink-7)/0)}.focus\:text-pink-7\/10:focus{color:rgb(var(--pink-7)/.1)}.focus\:text-pink-7\/100:focus{color:rgb(var(--pink-7)/1)}.focus\:text-pink-7\/20:focus{color:rgb(var(--pink-7)/.2)}.focus\:text-pink-7\/25:focus{color:rgb(var(--pink-7)/.25)}.focus\:text-pink-7\/30:focus{color:rgb(var(--pink-7)/.3)}.focus\:text-pink-7\/40:focus{color:rgb(var(--pink-7)/.4)}.focus\:text-pink-7\/5:focus{color:rgb(var(--pink-7)/.05)}.focus\:text-pink-7\/50:focus{color:rgb(var(--pink-7)/.5)}.focus\:text-pink-7\/60:focus{color:rgb(var(--pink-7)/.6)}.focus\:text-pink-7\/70:focus{color:rgb(var(--pink-7)/.7)}.focus\:text-pink-7\/75:focus{color:rgb(var(--pink-7)/.75)}.focus\:text-pink-7\/80:focus{color:rgb(var(--pink-7)/.8)}.focus\:text-pink-7\/90:focus{color:rgb(var(--pink-7)/.9)}.focus\:text-pink-7\/95:focus{color:rgb(var(--pink-7)/.95)}.focus\:text-pink-8\/0:focus{color:rgb(var(--pink-8)/0)}.focus\:text-pink-8\/10:focus{color:rgb(var(--pink-8)/.1)}.focus\:text-pink-8\/100:focus{color:rgb(var(--pink-8)/1)}.focus\:text-pink-8\/20:focus{color:rgb(var(--pink-8)/.2)}.focus\:text-pink-8\/25:focus{color:rgb(var(--pink-8)/.25)}.focus\:text-pink-8\/30:focus{color:rgb(var(--pink-8)/.3)}.focus\:text-pink-8\/40:focus{color:rgb(var(--pink-8)/.4)}.focus\:text-pink-8\/5:focus{color:rgb(var(--pink-8)/.05)}.focus\:text-pink-8\/50:focus{color:rgb(var(--pink-8)/.5)}.focus\:text-pink-8\/60:focus{color:rgb(var(--pink-8)/.6)}.focus\:text-pink-8\/70:focus{color:rgb(var(--pink-8)/.7)}.focus\:text-pink-8\/75:focus{color:rgb(var(--pink-8)/.75)}.focus\:text-pink-8\/80:focus{color:rgb(var(--pink-8)/.8)}.focus\:text-pink-8\/90:focus{color:rgb(var(--pink-8)/.9)}.focus\:text-pink-8\/95:focus{color:rgb(var(--pink-8)/.95)}.focus\:text-pink-9\/0:focus{color:rgb(var(--pink-9)/0)}.focus\:text-pink-9\/10:focus{color:rgb(var(--pink-9)/.1)}.focus\:text-pink-9\/100:focus{color:rgb(var(--pink-9)/1)}.focus\:text-pink-9\/20:focus{color:rgb(var(--pink-9)/.2)}.focus\:text-pink-9\/25:focus{color:rgb(var(--pink-9)/.25)}.focus\:text-pink-9\/30:focus{color:rgb(var(--pink-9)/.3)}.focus\:text-pink-9\/40:focus{color:rgb(var(--pink-9)/.4)}.focus\:text-pink-9\/5:focus{color:rgb(var(--pink-9)/.05)}.focus\:text-pink-9\/50:focus{color:rgb(var(--pink-9)/.5)}.focus\:text-pink-9\/60:focus{color:rgb(var(--pink-9)/.6)}.focus\:text-pink-9\/70:focus{color:rgb(var(--pink-9)/.7)}.focus\:text-pink-9\/75:focus{color:rgb(var(--pink-9)/.75)}.focus\:text-pink-9\/80:focus{color:rgb(var(--pink-9)/.8)}.focus\:text-pink-9\/90:focus{color:rgb(var(--pink-9)/.9)}.focus\:text-pink-9\/95:focus{color:rgb(var(--pink-9)/.95)}.focus\:text-primary:focus{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity))}.focus\:text-primary\/0:focus{color:rgb(var(--primary)/0)}.focus\:text-primary\/10:focus{color:rgb(var(--primary)/.1)}.focus\:text-primary\/100:focus{color:rgb(var(--primary)/1)}.focus\:text-primary\/20:focus{color:rgb(var(--primary)/.2)}.focus\:text-primary\/25:focus{color:rgb(var(--primary)/.25)}.focus\:text-primary\/30:focus{color:rgb(var(--primary)/.3)}.focus\:text-primary\/40:focus{color:rgb(var(--primary)/.4)}.focus\:text-primary\/5:focus{color:rgb(var(--primary)/.05)}.focus\:text-primary\/50:focus{color:rgb(var(--primary)/.5)}.focus\:text-primary\/60:focus{color:rgb(var(--primary)/.6)}.focus\:text-primary\/70:focus{color:rgb(var(--primary)/.7)}.focus\:text-primary\/75:focus{color:rgb(var(--primary)/.75)}.focus\:text-primary\/80:focus{color:rgb(var(--primary)/.8)}.focus\:text-primary\/90:focus{color:rgb(var(--primary)/.9)}.focus\:text-primary\/95:focus{color:rgb(var(--primary)/.95)}.focus\:text-purple-1\/0:focus{color:rgb(var(--purple-1)/0)}.focus\:text-purple-1\/10:focus{color:rgb(var(--purple-1)/.1)}.focus\:text-purple-1\/100:focus{color:rgb(var(--purple-1)/1)}.focus\:text-purple-1\/20:focus{color:rgb(var(--purple-1)/.2)}.focus\:text-purple-1\/25:focus{color:rgb(var(--purple-1)/.25)}.focus\:text-purple-1\/30:focus{color:rgb(var(--purple-1)/.3)}.focus\:text-purple-1\/40:focus{color:rgb(var(--purple-1)/.4)}.focus\:text-purple-1\/5:focus{color:rgb(var(--purple-1)/.05)}.focus\:text-purple-1\/50:focus{color:rgb(var(--purple-1)/.5)}.focus\:text-purple-1\/60:focus{color:rgb(var(--purple-1)/.6)}.focus\:text-purple-1\/70:focus{color:rgb(var(--purple-1)/.7)}.focus\:text-purple-1\/75:focus{color:rgb(var(--purple-1)/.75)}.focus\:text-purple-1\/80:focus{color:rgb(var(--purple-1)/.8)}.focus\:text-purple-1\/90:focus{color:rgb(var(--purple-1)/.9)}.focus\:text-purple-1\/95:focus{color:rgb(var(--purple-1)/.95)}.focus\:text-purple-10\/0:focus{color:rgb(var(--purple-10)/0)}.focus\:text-purple-10\/10:focus{color:rgb(var(--purple-10)/.1)}.focus\:text-purple-10\/100:focus{color:rgb(var(--purple-10)/1)}.focus\:text-purple-10\/20:focus{color:rgb(var(--purple-10)/.2)}.focus\:text-purple-10\/25:focus{color:rgb(var(--purple-10)/.25)}.focus\:text-purple-10\/30:focus{color:rgb(var(--purple-10)/.3)}.focus\:text-purple-10\/40:focus{color:rgb(var(--purple-10)/.4)}.focus\:text-purple-10\/5:focus{color:rgb(var(--purple-10)/.05)}.focus\:text-purple-10\/50:focus{color:rgb(var(--purple-10)/.5)}.focus\:text-purple-10\/60:focus{color:rgb(var(--purple-10)/.6)}.focus\:text-purple-10\/70:focus{color:rgb(var(--purple-10)/.7)}.focus\:text-purple-10\/75:focus{color:rgb(var(--purple-10)/.75)}.focus\:text-purple-10\/80:focus{color:rgb(var(--purple-10)/.8)}.focus\:text-purple-10\/90:focus{color:rgb(var(--purple-10)/.9)}.focus\:text-purple-10\/95:focus{color:rgb(var(--purple-10)/.95)}.focus\:text-purple-2\/0:focus{color:rgb(var(--purple-2)/0)}.focus\:text-purple-2\/10:focus{color:rgb(var(--purple-2)/.1)}.focus\:text-purple-2\/100:focus{color:rgb(var(--purple-2)/1)}.focus\:text-purple-2\/20:focus{color:rgb(var(--purple-2)/.2)}.focus\:text-purple-2\/25:focus{color:rgb(var(--purple-2)/.25)}.focus\:text-purple-2\/30:focus{color:rgb(var(--purple-2)/.3)}.focus\:text-purple-2\/40:focus{color:rgb(var(--purple-2)/.4)}.focus\:text-purple-2\/5:focus{color:rgb(var(--purple-2)/.05)}.focus\:text-purple-2\/50:focus{color:rgb(var(--purple-2)/.5)}.focus\:text-purple-2\/60:focus{color:rgb(var(--purple-2)/.6)}.focus\:text-purple-2\/70:focus{color:rgb(var(--purple-2)/.7)}.focus\:text-purple-2\/75:focus{color:rgb(var(--purple-2)/.75)}.focus\:text-purple-2\/80:focus{color:rgb(var(--purple-2)/.8)}.focus\:text-purple-2\/90:focus{color:rgb(var(--purple-2)/.9)}.focus\:text-purple-2\/95:focus{color:rgb(var(--purple-2)/.95)}.focus\:text-purple-3\/0:focus{color:rgb(var(--purple-3)/0)}.focus\:text-purple-3\/10:focus{color:rgb(var(--purple-3)/.1)}.focus\:text-purple-3\/100:focus{color:rgb(var(--purple-3)/1)}.focus\:text-purple-3\/20:focus{color:rgb(var(--purple-3)/.2)}.focus\:text-purple-3\/25:focus{color:rgb(var(--purple-3)/.25)}.focus\:text-purple-3\/30:focus{color:rgb(var(--purple-3)/.3)}.focus\:text-purple-3\/40:focus{color:rgb(var(--purple-3)/.4)}.focus\:text-purple-3\/5:focus{color:rgb(var(--purple-3)/.05)}.focus\:text-purple-3\/50:focus{color:rgb(var(--purple-3)/.5)}.focus\:text-purple-3\/60:focus{color:rgb(var(--purple-3)/.6)}.focus\:text-purple-3\/70:focus{color:rgb(var(--purple-3)/.7)}.focus\:text-purple-3\/75:focus{color:rgb(var(--purple-3)/.75)}.focus\:text-purple-3\/80:focus{color:rgb(var(--purple-3)/.8)}.focus\:text-purple-3\/90:focus{color:rgb(var(--purple-3)/.9)}.focus\:text-purple-3\/95:focus{color:rgb(var(--purple-3)/.95)}.focus\:text-purple-4\/0:focus{color:rgb(var(--purple-4)/0)}.focus\:text-purple-4\/10:focus{color:rgb(var(--purple-4)/.1)}.focus\:text-purple-4\/100:focus{color:rgb(var(--purple-4)/1)}.focus\:text-purple-4\/20:focus{color:rgb(var(--purple-4)/.2)}.focus\:text-purple-4\/25:focus{color:rgb(var(--purple-4)/.25)}.focus\:text-purple-4\/30:focus{color:rgb(var(--purple-4)/.3)}.focus\:text-purple-4\/40:focus{color:rgb(var(--purple-4)/.4)}.focus\:text-purple-4\/5:focus{color:rgb(var(--purple-4)/.05)}.focus\:text-purple-4\/50:focus{color:rgb(var(--purple-4)/.5)}.focus\:text-purple-4\/60:focus{color:rgb(var(--purple-4)/.6)}.focus\:text-purple-4\/70:focus{color:rgb(var(--purple-4)/.7)}.focus\:text-purple-4\/75:focus{color:rgb(var(--purple-4)/.75)}.focus\:text-purple-4\/80:focus{color:rgb(var(--purple-4)/.8)}.focus\:text-purple-4\/90:focus{color:rgb(var(--purple-4)/.9)}.focus\:text-purple-4\/95:focus{color:rgb(var(--purple-4)/.95)}.focus\:text-purple-5\/0:focus{color:rgb(var(--purple-5)/0)}.focus\:text-purple-5\/10:focus{color:rgb(var(--purple-5)/.1)}.focus\:text-purple-5\/100:focus{color:rgb(var(--purple-5)/1)}.focus\:text-purple-5\/20:focus{color:rgb(var(--purple-5)/.2)}.focus\:text-purple-5\/25:focus{color:rgb(var(--purple-5)/.25)}.focus\:text-purple-5\/30:focus{color:rgb(var(--purple-5)/.3)}.focus\:text-purple-5\/40:focus{color:rgb(var(--purple-5)/.4)}.focus\:text-purple-5\/5:focus{color:rgb(var(--purple-5)/.05)}.focus\:text-purple-5\/50:focus{color:rgb(var(--purple-5)/.5)}.focus\:text-purple-5\/60:focus{color:rgb(var(--purple-5)/.6)}.focus\:text-purple-5\/70:focus{color:rgb(var(--purple-5)/.7)}.focus\:text-purple-5\/75:focus{color:rgb(var(--purple-5)/.75)}.focus\:text-purple-5\/80:focus{color:rgb(var(--purple-5)/.8)}.focus\:text-purple-5\/90:focus{color:rgb(var(--purple-5)/.9)}.focus\:text-purple-5\/95:focus{color:rgb(var(--purple-5)/.95)}.focus\:text-purple-6\/0:focus{color:rgb(var(--purple-6)/0)}.focus\:text-purple-6\/10:focus{color:rgb(var(--purple-6)/.1)}.focus\:text-purple-6\/100:focus{color:rgb(var(--purple-6)/1)}.focus\:text-purple-6\/20:focus{color:rgb(var(--purple-6)/.2)}.focus\:text-purple-6\/25:focus{color:rgb(var(--purple-6)/.25)}.focus\:text-purple-6\/30:focus{color:rgb(var(--purple-6)/.3)}.focus\:text-purple-6\/40:focus{color:rgb(var(--purple-6)/.4)}.focus\:text-purple-6\/5:focus{color:rgb(var(--purple-6)/.05)}.focus\:text-purple-6\/50:focus{color:rgb(var(--purple-6)/.5)}.focus\:text-purple-6\/60:focus{color:rgb(var(--purple-6)/.6)}.focus\:text-purple-6\/70:focus{color:rgb(var(--purple-6)/.7)}.focus\:text-purple-6\/75:focus{color:rgb(var(--purple-6)/.75)}.focus\:text-purple-6\/80:focus{color:rgb(var(--purple-6)/.8)}.focus\:text-purple-6\/90:focus{color:rgb(var(--purple-6)/.9)}.focus\:text-purple-6\/95:focus{color:rgb(var(--purple-6)/.95)}.focus\:text-purple-7\/0:focus{color:rgb(var(--purple-7)/0)}.focus\:text-purple-7\/10:focus{color:rgb(var(--purple-7)/.1)}.focus\:text-purple-7\/100:focus{color:rgb(var(--purple-7)/1)}.focus\:text-purple-7\/20:focus{color:rgb(var(--purple-7)/.2)}.focus\:text-purple-7\/25:focus{color:rgb(var(--purple-7)/.25)}.focus\:text-purple-7\/30:focus{color:rgb(var(--purple-7)/.3)}.focus\:text-purple-7\/40:focus{color:rgb(var(--purple-7)/.4)}.focus\:text-purple-7\/5:focus{color:rgb(var(--purple-7)/.05)}.focus\:text-purple-7\/50:focus{color:rgb(var(--purple-7)/.5)}.focus\:text-purple-7\/60:focus{color:rgb(var(--purple-7)/.6)}.focus\:text-purple-7\/70:focus{color:rgb(var(--purple-7)/.7)}.focus\:text-purple-7\/75:focus{color:rgb(var(--purple-7)/.75)}.focus\:text-purple-7\/80:focus{color:rgb(var(--purple-7)/.8)}.focus\:text-purple-7\/90:focus{color:rgb(var(--purple-7)/.9)}.focus\:text-purple-7\/95:focus{color:rgb(var(--purple-7)/.95)}.focus\:text-purple-8\/0:focus{color:rgb(var(--purple-8)/0)}.focus\:text-purple-8\/10:focus{color:rgb(var(--purple-8)/.1)}.focus\:text-purple-8\/100:focus{color:rgb(var(--purple-8)/1)}.focus\:text-purple-8\/20:focus{color:rgb(var(--purple-8)/.2)}.focus\:text-purple-8\/25:focus{color:rgb(var(--purple-8)/.25)}.focus\:text-purple-8\/30:focus{color:rgb(var(--purple-8)/.3)}.focus\:text-purple-8\/40:focus{color:rgb(var(--purple-8)/.4)}.focus\:text-purple-8\/5:focus{color:rgb(var(--purple-8)/.05)}.focus\:text-purple-8\/50:focus{color:rgb(var(--purple-8)/.5)}.focus\:text-purple-8\/60:focus{color:rgb(var(--purple-8)/.6)}.focus\:text-purple-8\/70:focus{color:rgb(var(--purple-8)/.7)}.focus\:text-purple-8\/75:focus{color:rgb(var(--purple-8)/.75)}.focus\:text-purple-8\/80:focus{color:rgb(var(--purple-8)/.8)}.focus\:text-purple-8\/90:focus{color:rgb(var(--purple-8)/.9)}.focus\:text-purple-8\/95:focus{color:rgb(var(--purple-8)/.95)}.focus\:text-purple-9\/0:focus{color:rgb(var(--purple-9)/0)}.focus\:text-purple-9\/10:focus{color:rgb(var(--purple-9)/.1)}.focus\:text-purple-9\/100:focus{color:rgb(var(--purple-9)/1)}.focus\:text-purple-9\/20:focus{color:rgb(var(--purple-9)/.2)}.focus\:text-purple-9\/25:focus{color:rgb(var(--purple-9)/.25)}.focus\:text-purple-9\/30:focus{color:rgb(var(--purple-9)/.3)}.focus\:text-purple-9\/40:focus{color:rgb(var(--purple-9)/.4)}.focus\:text-purple-9\/5:focus{color:rgb(var(--purple-9)/.05)}.focus\:text-purple-9\/50:focus{color:rgb(var(--purple-9)/.5)}.focus\:text-purple-9\/60:focus{color:rgb(var(--purple-9)/.6)}.focus\:text-purple-9\/70:focus{color:rgb(var(--purple-9)/.7)}.focus\:text-purple-9\/75:focus{color:rgb(var(--purple-9)/.75)}.focus\:text-purple-9\/80:focus{color:rgb(var(--purple-9)/.8)}.focus\:text-purple-9\/90:focus{color:rgb(var(--purple-9)/.9)}.focus\:text-purple-9\/95:focus{color:rgb(var(--purple-9)/.95)}.focus\:text-red-1\/0:focus{color:rgb(var(--red-1)/0)}.focus\:text-red-1\/10:focus{color:rgb(var(--red-1)/.1)}.focus\:text-red-1\/100:focus{color:rgb(var(--red-1)/1)}.focus\:text-red-1\/20:focus{color:rgb(var(--red-1)/.2)}.focus\:text-red-1\/25:focus{color:rgb(var(--red-1)/.25)}.focus\:text-red-1\/30:focus{color:rgb(var(--red-1)/.3)}.focus\:text-red-1\/40:focus{color:rgb(var(--red-1)/.4)}.focus\:text-red-1\/5:focus{color:rgb(var(--red-1)/.05)}.focus\:text-red-1\/50:focus{color:rgb(var(--red-1)/.5)}.focus\:text-red-1\/60:focus{color:rgb(var(--red-1)/.6)}.focus\:text-red-1\/70:focus{color:rgb(var(--red-1)/.7)}.focus\:text-red-1\/75:focus{color:rgb(var(--red-1)/.75)}.focus\:text-red-1\/80:focus{color:rgb(var(--red-1)/.8)}.focus\:text-red-1\/90:focus{color:rgb(var(--red-1)/.9)}.focus\:text-red-1\/95:focus{color:rgb(var(--red-1)/.95)}.focus\:text-red-10\/0:focus{color:rgb(var(--red-10)/0)}.focus\:text-red-10\/10:focus{color:rgb(var(--red-10)/.1)}.focus\:text-red-10\/100:focus{color:rgb(var(--red-10)/1)}.focus\:text-red-10\/20:focus{color:rgb(var(--red-10)/.2)}.focus\:text-red-10\/25:focus{color:rgb(var(--red-10)/.25)}.focus\:text-red-10\/30:focus{color:rgb(var(--red-10)/.3)}.focus\:text-red-10\/40:focus{color:rgb(var(--red-10)/.4)}.focus\:text-red-10\/5:focus{color:rgb(var(--red-10)/.05)}.focus\:text-red-10\/50:focus{color:rgb(var(--red-10)/.5)}.focus\:text-red-10\/60:focus{color:rgb(var(--red-10)/.6)}.focus\:text-red-10\/70:focus{color:rgb(var(--red-10)/.7)}.focus\:text-red-10\/75:focus{color:rgb(var(--red-10)/.75)}.focus\:text-red-10\/80:focus{color:rgb(var(--red-10)/.8)}.focus\:text-red-10\/90:focus{color:rgb(var(--red-10)/.9)}.focus\:text-red-10\/95:focus{color:rgb(var(--red-10)/.95)}.focus\:text-red-2\/0:focus{color:rgb(var(--red-2)/0)}.focus\:text-red-2\/10:focus{color:rgb(var(--red-2)/.1)}.focus\:text-red-2\/100:focus{color:rgb(var(--red-2)/1)}.focus\:text-red-2\/20:focus{color:rgb(var(--red-2)/.2)}.focus\:text-red-2\/25:focus{color:rgb(var(--red-2)/.25)}.focus\:text-red-2\/30:focus{color:rgb(var(--red-2)/.3)}.focus\:text-red-2\/40:focus{color:rgb(var(--red-2)/.4)}.focus\:text-red-2\/5:focus{color:rgb(var(--red-2)/.05)}.focus\:text-red-2\/50:focus{color:rgb(var(--red-2)/.5)}.focus\:text-red-2\/60:focus{color:rgb(var(--red-2)/.6)}.focus\:text-red-2\/70:focus{color:rgb(var(--red-2)/.7)}.focus\:text-red-2\/75:focus{color:rgb(var(--red-2)/.75)}.focus\:text-red-2\/80:focus{color:rgb(var(--red-2)/.8)}.focus\:text-red-2\/90:focus{color:rgb(var(--red-2)/.9)}.focus\:text-red-2\/95:focus{color:rgb(var(--red-2)/.95)}.focus\:text-red-3\/0:focus{color:rgb(var(--red-3)/0)}.focus\:text-red-3\/10:focus{color:rgb(var(--red-3)/.1)}.focus\:text-red-3\/100:focus{color:rgb(var(--red-3)/1)}.focus\:text-red-3\/20:focus{color:rgb(var(--red-3)/.2)}.focus\:text-red-3\/25:focus{color:rgb(var(--red-3)/.25)}.focus\:text-red-3\/30:focus{color:rgb(var(--red-3)/.3)}.focus\:text-red-3\/40:focus{color:rgb(var(--red-3)/.4)}.focus\:text-red-3\/5:focus{color:rgb(var(--red-3)/.05)}.focus\:text-red-3\/50:focus{color:rgb(var(--red-3)/.5)}.focus\:text-red-3\/60:focus{color:rgb(var(--red-3)/.6)}.focus\:text-red-3\/70:focus{color:rgb(var(--red-3)/.7)}.focus\:text-red-3\/75:focus{color:rgb(var(--red-3)/.75)}.focus\:text-red-3\/80:focus{color:rgb(var(--red-3)/.8)}.focus\:text-red-3\/90:focus{color:rgb(var(--red-3)/.9)}.focus\:text-red-3\/95:focus{color:rgb(var(--red-3)/.95)}.focus\:text-red-4\/0:focus{color:rgb(var(--red-4)/0)}.focus\:text-red-4\/10:focus{color:rgb(var(--red-4)/.1)}.focus\:text-red-4\/100:focus{color:rgb(var(--red-4)/1)}.focus\:text-red-4\/20:focus{color:rgb(var(--red-4)/.2)}.focus\:text-red-4\/25:focus{color:rgb(var(--red-4)/.25)}.focus\:text-red-4\/30:focus{color:rgb(var(--red-4)/.3)}.focus\:text-red-4\/40:focus{color:rgb(var(--red-4)/.4)}.focus\:text-red-4\/5:focus{color:rgb(var(--red-4)/.05)}.focus\:text-red-4\/50:focus{color:rgb(var(--red-4)/.5)}.focus\:text-red-4\/60:focus{color:rgb(var(--red-4)/.6)}.focus\:text-red-4\/70:focus{color:rgb(var(--red-4)/.7)}.focus\:text-red-4\/75:focus{color:rgb(var(--red-4)/.75)}.focus\:text-red-4\/80:focus{color:rgb(var(--red-4)/.8)}.focus\:text-red-4\/90:focus{color:rgb(var(--red-4)/.9)}.focus\:text-red-4\/95:focus{color:rgb(var(--red-4)/.95)}.focus\:text-red-5\/0:focus{color:rgb(var(--red-5)/0)}.focus\:text-red-5\/10:focus{color:rgb(var(--red-5)/.1)}.focus\:text-red-5\/100:focus{color:rgb(var(--red-5)/1)}.focus\:text-red-5\/20:focus{color:rgb(var(--red-5)/.2)}.focus\:text-red-5\/25:focus{color:rgb(var(--red-5)/.25)}.focus\:text-red-5\/30:focus{color:rgb(var(--red-5)/.3)}.focus\:text-red-5\/40:focus{color:rgb(var(--red-5)/.4)}.focus\:text-red-5\/5:focus{color:rgb(var(--red-5)/.05)}.focus\:text-red-5\/50:focus{color:rgb(var(--red-5)/.5)}.focus\:text-red-5\/60:focus{color:rgb(var(--red-5)/.6)}.focus\:text-red-5\/70:focus{color:rgb(var(--red-5)/.7)}.focus\:text-red-5\/75:focus{color:rgb(var(--red-5)/.75)}.focus\:text-red-5\/80:focus{color:rgb(var(--red-5)/.8)}.focus\:text-red-5\/90:focus{color:rgb(var(--red-5)/.9)}.focus\:text-red-5\/95:focus{color:rgb(var(--red-5)/.95)}.focus\:text-red-6\/0:focus{color:rgb(var(--red-6)/0)}.focus\:text-red-6\/10:focus{color:rgb(var(--red-6)/.1)}.focus\:text-red-6\/100:focus{color:rgb(var(--red-6)/1)}.focus\:text-red-6\/20:focus{color:rgb(var(--red-6)/.2)}.focus\:text-red-6\/25:focus{color:rgb(var(--red-6)/.25)}.focus\:text-red-6\/30:focus{color:rgb(var(--red-6)/.3)}.focus\:text-red-6\/40:focus{color:rgb(var(--red-6)/.4)}.focus\:text-red-6\/5:focus{color:rgb(var(--red-6)/.05)}.focus\:text-red-6\/50:focus{color:rgb(var(--red-6)/.5)}.focus\:text-red-6\/60:focus{color:rgb(var(--red-6)/.6)}.focus\:text-red-6\/70:focus{color:rgb(var(--red-6)/.7)}.focus\:text-red-6\/75:focus{color:rgb(var(--red-6)/.75)}.focus\:text-red-6\/80:focus{color:rgb(var(--red-6)/.8)}.focus\:text-red-6\/90:focus{color:rgb(var(--red-6)/.9)}.focus\:text-red-6\/95:focus{color:rgb(var(--red-6)/.95)}.focus\:text-red-7\/0:focus{color:rgb(var(--red-7)/0)}.focus\:text-red-7\/10:focus{color:rgb(var(--red-7)/.1)}.focus\:text-red-7\/100:focus{color:rgb(var(--red-7)/1)}.focus\:text-red-7\/20:focus{color:rgb(var(--red-7)/.2)}.focus\:text-red-7\/25:focus{color:rgb(var(--red-7)/.25)}.focus\:text-red-7\/30:focus{color:rgb(var(--red-7)/.3)}.focus\:text-red-7\/40:focus{color:rgb(var(--red-7)/.4)}.focus\:text-red-7\/5:focus{color:rgb(var(--red-7)/.05)}.focus\:text-red-7\/50:focus{color:rgb(var(--red-7)/.5)}.focus\:text-red-7\/60:focus{color:rgb(var(--red-7)/.6)}.focus\:text-red-7\/70:focus{color:rgb(var(--red-7)/.7)}.focus\:text-red-7\/75:focus{color:rgb(var(--red-7)/.75)}.focus\:text-red-7\/80:focus{color:rgb(var(--red-7)/.8)}.focus\:text-red-7\/90:focus{color:rgb(var(--red-7)/.9)}.focus\:text-red-7\/95:focus{color:rgb(var(--red-7)/.95)}.focus\:text-red-8\/0:focus{color:rgb(var(--red-8)/0)}.focus\:text-red-8\/10:focus{color:rgb(var(--red-8)/.1)}.focus\:text-red-8\/100:focus{color:rgb(var(--red-8)/1)}.focus\:text-red-8\/20:focus{color:rgb(var(--red-8)/.2)}.focus\:text-red-8\/25:focus{color:rgb(var(--red-8)/.25)}.focus\:text-red-8\/30:focus{color:rgb(var(--red-8)/.3)}.focus\:text-red-8\/40:focus{color:rgb(var(--red-8)/.4)}.focus\:text-red-8\/5:focus{color:rgb(var(--red-8)/.05)}.focus\:text-red-8\/50:focus{color:rgb(var(--red-8)/.5)}.focus\:text-red-8\/60:focus{color:rgb(var(--red-8)/.6)}.focus\:text-red-8\/70:focus{color:rgb(var(--red-8)/.7)}.focus\:text-red-8\/75:focus{color:rgb(var(--red-8)/.75)}.focus\:text-red-8\/80:focus{color:rgb(var(--red-8)/.8)}.focus\:text-red-8\/90:focus{color:rgb(var(--red-8)/.9)}.focus\:text-red-8\/95:focus{color:rgb(var(--red-8)/.95)}.focus\:text-red-9\/0:focus{color:rgb(var(--red-9)/0)}.focus\:text-red-9\/10:focus{color:rgb(var(--red-9)/.1)}.focus\:text-red-9\/100:focus{color:rgb(var(--red-9)/1)}.focus\:text-red-9\/20:focus{color:rgb(var(--red-9)/.2)}.focus\:text-red-9\/25:focus{color:rgb(var(--red-9)/.25)}.focus\:text-red-9\/30:focus{color:rgb(var(--red-9)/.3)}.focus\:text-red-9\/40:focus{color:rgb(var(--red-9)/.4)}.focus\:text-red-9\/5:focus{color:rgb(var(--red-9)/.05)}.focus\:text-red-9\/50:focus{color:rgb(var(--red-9)/.5)}.focus\:text-red-9\/60:focus{color:rgb(var(--red-9)/.6)}.focus\:text-red-9\/70:focus{color:rgb(var(--red-9)/.7)}.focus\:text-red-9\/75:focus{color:rgb(var(--red-9)/.75)}.focus\:text-red-9\/80:focus{color:rgb(var(--red-9)/.8)}.focus\:text-red-9\/90:focus{color:rgb(var(--red-9)/.9)}.focus\:text-red-9\/95:focus{color:rgb(var(--red-9)/.95)}.focus\:text-secondary:focus{--tw-text-opacity:1;color:rgb(var(--secondary)/var(--tw-text-opacity))}.focus\:text-secondary\/0:focus{color:rgb(var(--secondary)/0)}.focus\:text-secondary\/10:focus{color:rgb(var(--secondary)/.1)}.focus\:text-secondary\/100:focus{color:rgb(var(--secondary)/1)}.focus\:text-secondary\/20:focus{color:rgb(var(--secondary)/.2)}.focus\:text-secondary\/25:focus{color:rgb(var(--secondary)/.25)}.focus\:text-secondary\/30:focus{color:rgb(var(--secondary)/.3)}.focus\:text-secondary\/40:focus{color:rgb(var(--secondary)/.4)}.focus\:text-secondary\/5:focus{color:rgb(var(--secondary)/.05)}.focus\:text-secondary\/50:focus{color:rgb(var(--secondary)/.5)}.focus\:text-secondary\/60:focus{color:rgb(var(--secondary)/.6)}.focus\:text-secondary\/70:focus{color:rgb(var(--secondary)/.7)}.focus\:text-secondary\/75:focus{color:rgb(var(--secondary)/.75)}.focus\:text-secondary\/80:focus{color:rgb(var(--secondary)/.8)}.focus\:text-secondary\/90:focus{color:rgb(var(--secondary)/.9)}.focus\:text-secondary\/95:focus{color:rgb(var(--secondary)/.95)}.focus\:text-slate-1\/0:focus{color:rgb(var(--slate-1)/0)}.focus\:text-slate-1\/10:focus{color:rgb(var(--slate-1)/.1)}.focus\:text-slate-1\/100:focus{color:rgb(var(--slate-1)/1)}.focus\:text-slate-1\/20:focus{color:rgb(var(--slate-1)/.2)}.focus\:text-slate-1\/25:focus{color:rgb(var(--slate-1)/.25)}.focus\:text-slate-1\/30:focus{color:rgb(var(--slate-1)/.3)}.focus\:text-slate-1\/40:focus{color:rgb(var(--slate-1)/.4)}.focus\:text-slate-1\/5:focus{color:rgb(var(--slate-1)/.05)}.focus\:text-slate-1\/50:focus{color:rgb(var(--slate-1)/.5)}.focus\:text-slate-1\/60:focus{color:rgb(var(--slate-1)/.6)}.focus\:text-slate-1\/70:focus{color:rgb(var(--slate-1)/.7)}.focus\:text-slate-1\/75:focus{color:rgb(var(--slate-1)/.75)}.focus\:text-slate-1\/80:focus{color:rgb(var(--slate-1)/.8)}.focus\:text-slate-1\/90:focus{color:rgb(var(--slate-1)/.9)}.focus\:text-slate-1\/95:focus{color:rgb(var(--slate-1)/.95)}.focus\:text-slate-10\/0:focus{color:rgb(var(--slate-10)/0)}.focus\:text-slate-10\/10:focus{color:rgb(var(--slate-10)/.1)}.focus\:text-slate-10\/100:focus{color:rgb(var(--slate-10)/1)}.focus\:text-slate-10\/20:focus{color:rgb(var(--slate-10)/.2)}.focus\:text-slate-10\/25:focus{color:rgb(var(--slate-10)/.25)}.focus\:text-slate-10\/30:focus{color:rgb(var(--slate-10)/.3)}.focus\:text-slate-10\/40:focus{color:rgb(var(--slate-10)/.4)}.focus\:text-slate-10\/5:focus{color:rgb(var(--slate-10)/.05)}.focus\:text-slate-10\/50:focus{color:rgb(var(--slate-10)/.5)}.focus\:text-slate-10\/60:focus{color:rgb(var(--slate-10)/.6)}.focus\:text-slate-10\/70:focus{color:rgb(var(--slate-10)/.7)}.focus\:text-slate-10\/75:focus{color:rgb(var(--slate-10)/.75)}.focus\:text-slate-10\/80:focus{color:rgb(var(--slate-10)/.8)}.focus\:text-slate-10\/90:focus{color:rgb(var(--slate-10)/.9)}.focus\:text-slate-10\/95:focus{color:rgb(var(--slate-10)/.95)}.focus\:text-slate-2\/0:focus{color:rgb(var(--slate-2)/0)}.focus\:text-slate-2\/10:focus{color:rgb(var(--slate-2)/.1)}.focus\:text-slate-2\/100:focus{color:rgb(var(--slate-2)/1)}.focus\:text-slate-2\/20:focus{color:rgb(var(--slate-2)/.2)}.focus\:text-slate-2\/25:focus{color:rgb(var(--slate-2)/.25)}.focus\:text-slate-2\/30:focus{color:rgb(var(--slate-2)/.3)}.focus\:text-slate-2\/40:focus{color:rgb(var(--slate-2)/.4)}.focus\:text-slate-2\/5:focus{color:rgb(var(--slate-2)/.05)}.focus\:text-slate-2\/50:focus{color:rgb(var(--slate-2)/.5)}.focus\:text-slate-2\/60:focus{color:rgb(var(--slate-2)/.6)}.focus\:text-slate-2\/70:focus{color:rgb(var(--slate-2)/.7)}.focus\:text-slate-2\/75:focus{color:rgb(var(--slate-2)/.75)}.focus\:text-slate-2\/80:focus{color:rgb(var(--slate-2)/.8)}.focus\:text-slate-2\/90:focus{color:rgb(var(--slate-2)/.9)}.focus\:text-slate-2\/95:focus{color:rgb(var(--slate-2)/.95)}.focus\:text-slate-3\/0:focus{color:rgb(var(--slate-3)/0)}.focus\:text-slate-3\/10:focus{color:rgb(var(--slate-3)/.1)}.focus\:text-slate-3\/100:focus{color:rgb(var(--slate-3)/1)}.focus\:text-slate-3\/20:focus{color:rgb(var(--slate-3)/.2)}.focus\:text-slate-3\/25:focus{color:rgb(var(--slate-3)/.25)}.focus\:text-slate-3\/30:focus{color:rgb(var(--slate-3)/.3)}.focus\:text-slate-3\/40:focus{color:rgb(var(--slate-3)/.4)}.focus\:text-slate-3\/5:focus{color:rgb(var(--slate-3)/.05)}.focus\:text-slate-3\/50:focus{color:rgb(var(--slate-3)/.5)}.focus\:text-slate-3\/60:focus{color:rgb(var(--slate-3)/.6)}.focus\:text-slate-3\/70:focus{color:rgb(var(--slate-3)/.7)}.focus\:text-slate-3\/75:focus{color:rgb(var(--slate-3)/.75)}.focus\:text-slate-3\/80:focus{color:rgb(var(--slate-3)/.8)}.focus\:text-slate-3\/90:focus{color:rgb(var(--slate-3)/.9)}.focus\:text-slate-3\/95:focus{color:rgb(var(--slate-3)/.95)}.focus\:text-slate-4\/0:focus{color:rgb(var(--slate-4)/0)}.focus\:text-slate-4\/10:focus{color:rgb(var(--slate-4)/.1)}.focus\:text-slate-4\/100:focus{color:rgb(var(--slate-4)/1)}.focus\:text-slate-4\/20:focus{color:rgb(var(--slate-4)/.2)}.focus\:text-slate-4\/25:focus{color:rgb(var(--slate-4)/.25)}.focus\:text-slate-4\/30:focus{color:rgb(var(--slate-4)/.3)}.focus\:text-slate-4\/40:focus{color:rgb(var(--slate-4)/.4)}.focus\:text-slate-4\/5:focus{color:rgb(var(--slate-4)/.05)}.focus\:text-slate-4\/50:focus{color:rgb(var(--slate-4)/.5)}.focus\:text-slate-4\/60:focus{color:rgb(var(--slate-4)/.6)}.focus\:text-slate-4\/70:focus{color:rgb(var(--slate-4)/.7)}.focus\:text-slate-4\/75:focus{color:rgb(var(--slate-4)/.75)}.focus\:text-slate-4\/80:focus{color:rgb(var(--slate-4)/.8)}.focus\:text-slate-4\/90:focus{color:rgb(var(--slate-4)/.9)}.focus\:text-slate-4\/95:focus{color:rgb(var(--slate-4)/.95)}.focus\:text-slate-5\/0:focus{color:rgb(var(--slate-5)/0)}.focus\:text-slate-5\/10:focus{color:rgb(var(--slate-5)/.1)}.focus\:text-slate-5\/100:focus{color:rgb(var(--slate-5)/1)}.focus\:text-slate-5\/20:focus{color:rgb(var(--slate-5)/.2)}.focus\:text-slate-5\/25:focus{color:rgb(var(--slate-5)/.25)}.focus\:text-slate-5\/30:focus{color:rgb(var(--slate-5)/.3)}.focus\:text-slate-5\/40:focus{color:rgb(var(--slate-5)/.4)}.focus\:text-slate-5\/5:focus{color:rgb(var(--slate-5)/.05)}.focus\:text-slate-5\/50:focus{color:rgb(var(--slate-5)/.5)}.focus\:text-slate-5\/60:focus{color:rgb(var(--slate-5)/.6)}.focus\:text-slate-5\/70:focus{color:rgb(var(--slate-5)/.7)}.focus\:text-slate-5\/75:focus{color:rgb(var(--slate-5)/.75)}.focus\:text-slate-5\/80:focus{color:rgb(var(--slate-5)/.8)}.focus\:text-slate-5\/90:focus{color:rgb(var(--slate-5)/.9)}.focus\:text-slate-5\/95:focus{color:rgb(var(--slate-5)/.95)}.focus\:text-slate-6\/0:focus{color:rgb(var(--slate-6)/0)}.focus\:text-slate-6\/10:focus{color:rgb(var(--slate-6)/.1)}.focus\:text-slate-6\/100:focus{color:rgb(var(--slate-6)/1)}.focus\:text-slate-6\/20:focus{color:rgb(var(--slate-6)/.2)}.focus\:text-slate-6\/25:focus{color:rgb(var(--slate-6)/.25)}.focus\:text-slate-6\/30:focus{color:rgb(var(--slate-6)/.3)}.focus\:text-slate-6\/40:focus{color:rgb(var(--slate-6)/.4)}.focus\:text-slate-6\/5:focus{color:rgb(var(--slate-6)/.05)}.focus\:text-slate-6\/50:focus{color:rgb(var(--slate-6)/.5)}.focus\:text-slate-6\/60:focus{color:rgb(var(--slate-6)/.6)}.focus\:text-slate-6\/70:focus{color:rgb(var(--slate-6)/.7)}.focus\:text-slate-6\/75:focus{color:rgb(var(--slate-6)/.75)}.focus\:text-slate-6\/80:focus{color:rgb(var(--slate-6)/.8)}.focus\:text-slate-6\/90:focus{color:rgb(var(--slate-6)/.9)}.focus\:text-slate-6\/95:focus{color:rgb(var(--slate-6)/.95)}.focus\:text-slate-7\/0:focus{color:rgb(var(--slate-7)/0)}.focus\:text-slate-7\/10:focus{color:rgb(var(--slate-7)/.1)}.focus\:text-slate-7\/100:focus{color:rgb(var(--slate-7)/1)}.focus\:text-slate-7\/20:focus{color:rgb(var(--slate-7)/.2)}.focus\:text-slate-7\/25:focus{color:rgb(var(--slate-7)/.25)}.focus\:text-slate-7\/30:focus{color:rgb(var(--slate-7)/.3)}.focus\:text-slate-7\/40:focus{color:rgb(var(--slate-7)/.4)}.focus\:text-slate-7\/5:focus{color:rgb(var(--slate-7)/.05)}.focus\:text-slate-7\/50:focus{color:rgb(var(--slate-7)/.5)}.focus\:text-slate-7\/60:focus{color:rgb(var(--slate-7)/.6)}.focus\:text-slate-7\/70:focus{color:rgb(var(--slate-7)/.7)}.focus\:text-slate-7\/75:focus{color:rgb(var(--slate-7)/.75)}.focus\:text-slate-7\/80:focus{color:rgb(var(--slate-7)/.8)}.focus\:text-slate-7\/90:focus{color:rgb(var(--slate-7)/.9)}.focus\:text-slate-7\/95:focus{color:rgb(var(--slate-7)/.95)}.focus\:text-slate-8\/0:focus{color:rgb(var(--slate-8)/0)}.focus\:text-slate-8\/10:focus{color:rgb(var(--slate-8)/.1)}.focus\:text-slate-8\/100:focus{color:rgb(var(--slate-8)/1)}.focus\:text-slate-8\/20:focus{color:rgb(var(--slate-8)/.2)}.focus\:text-slate-8\/25:focus{color:rgb(var(--slate-8)/.25)}.focus\:text-slate-8\/30:focus{color:rgb(var(--slate-8)/.3)}.focus\:text-slate-8\/40:focus{color:rgb(var(--slate-8)/.4)}.focus\:text-slate-8\/5:focus{color:rgb(var(--slate-8)/.05)}.focus\:text-slate-8\/50:focus{color:rgb(var(--slate-8)/.5)}.focus\:text-slate-8\/60:focus{color:rgb(var(--slate-8)/.6)}.focus\:text-slate-8\/70:focus{color:rgb(var(--slate-8)/.7)}.focus\:text-slate-8\/75:focus{color:rgb(var(--slate-8)/.75)}.focus\:text-slate-8\/80:focus{color:rgb(var(--slate-8)/.8)}.focus\:text-slate-8\/90:focus{color:rgb(var(--slate-8)/.9)}.focus\:text-slate-8\/95:focus{color:rgb(var(--slate-8)/.95)}.focus\:text-slate-9\/0:focus{color:rgb(var(--slate-9)/0)}.focus\:text-slate-9\/10:focus{color:rgb(var(--slate-9)/.1)}.focus\:text-slate-9\/100:focus{color:rgb(var(--slate-9)/1)}.focus\:text-slate-9\/20:focus{color:rgb(var(--slate-9)/.2)}.focus\:text-slate-9\/25:focus{color:rgb(var(--slate-9)/.25)}.focus\:text-slate-9\/30:focus{color:rgb(var(--slate-9)/.3)}.focus\:text-slate-9\/40:focus{color:rgb(var(--slate-9)/.4)}.focus\:text-slate-9\/5:focus{color:rgb(var(--slate-9)/.05)}.focus\:text-slate-9\/50:focus{color:rgb(var(--slate-9)/.5)}.focus\:text-slate-9\/60:focus{color:rgb(var(--slate-9)/.6)}.focus\:text-slate-9\/70:focus{color:rgb(var(--slate-9)/.7)}.focus\:text-slate-9\/75:focus{color:rgb(var(--slate-9)/.75)}.focus\:text-slate-9\/80:focus{color:rgb(var(--slate-9)/.8)}.focus\:text-slate-9\/90:focus{color:rgb(var(--slate-9)/.9)}.focus\:text-slate-9\/95:focus{color:rgb(var(--slate-9)/.95)}.focus\:text-success:focus{--tw-text-opacity:1;color:rgb(var(--success)/var(--tw-text-opacity))}.focus\:text-success\/0:focus{color:rgb(var(--success)/0)}.focus\:text-success\/10:focus{color:rgb(var(--success)/.1)}.focus\:text-success\/100:focus{color:rgb(var(--success)/1)}.focus\:text-success\/20:focus{color:rgb(var(--success)/.2)}.focus\:text-success\/25:focus{color:rgb(var(--success)/.25)}.focus\:text-success\/30:focus{color:rgb(var(--success)/.3)}.focus\:text-success\/40:focus{color:rgb(var(--success)/.4)}.focus\:text-success\/5:focus{color:rgb(var(--success)/.05)}.focus\:text-success\/50:focus{color:rgb(var(--success)/.5)}.focus\:text-success\/60:focus{color:rgb(var(--success)/.6)}.focus\:text-success\/70:focus{color:rgb(var(--success)/.7)}.focus\:text-success\/75:focus{color:rgb(var(--success)/.75)}.focus\:text-success\/80:focus{color:rgb(var(--success)/.8)}.focus\:text-success\/90:focus{color:rgb(var(--success)/.9)}.focus\:text-success\/95:focus{color:rgb(var(--success)/.95)}.focus\:text-warning:focus{--tw-text-opacity:1;color:rgb(var(--warning)/var(--tw-text-opacity))}.focus\:text-warning\/0:focus{color:rgb(var(--warning)/0)}.focus\:text-warning\/10:focus{color:rgb(var(--warning)/.1)}.focus\:text-warning\/100:focus{color:rgb(var(--warning)/1)}.focus\:text-warning\/20:focus{color:rgb(var(--warning)/.2)}.focus\:text-warning\/25:focus{color:rgb(var(--warning)/.25)}.focus\:text-warning\/30:focus{color:rgb(var(--warning)/.3)}.focus\:text-warning\/40:focus{color:rgb(var(--warning)/.4)}.focus\:text-warning\/5:focus{color:rgb(var(--warning)/.05)}.focus\:text-warning\/50:focus{color:rgb(var(--warning)/.5)}.focus\:text-warning\/60:focus{color:rgb(var(--warning)/.6)}.focus\:text-warning\/70:focus{color:rgb(var(--warning)/.7)}.focus\:text-warning\/75:focus{color:rgb(var(--warning)/.75)}.focus\:text-warning\/80:focus{color:rgb(var(--warning)/.8)}.focus\:text-warning\/90:focus{color:rgb(var(--warning)/.9)}.focus\:text-warning\/95:focus{color:rgb(var(--warning)/.95)}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:text-white\/0:focus{color:hsla(0,0%,100%,0)}.focus\:text-white\/10:focus{color:hsla(0,0%,100%,.1)}.focus\:text-white\/100:focus{color:#fff}.focus\:text-white\/20:focus{color:hsla(0,0%,100%,.2)}.focus\:text-white\/25:focus{color:hsla(0,0%,100%,.25)}.focus\:text-white\/30:focus{color:hsla(0,0%,100%,.3)}.focus\:text-white\/40:focus{color:hsla(0,0%,100%,.4)}.focus\:text-white\/5:focus{color:hsla(0,0%,100%,.05)}.focus\:text-white\/50:focus{color:hsla(0,0%,100%,.5)}.focus\:text-white\/60:focus{color:hsla(0,0%,100%,.6)}.focus\:text-white\/70:focus{color:hsla(0,0%,100%,.7)}.focus\:text-white\/75:focus{color:hsla(0,0%,100%,.75)}.focus\:text-white\/80:focus{color:hsla(0,0%,100%,.8)}.focus\:text-white\/90:focus{color:hsla(0,0%,100%,.9)}.focus\:text-white\/95:focus{color:hsla(0,0%,100%,.95)}.focus\:text-whiteInverted:focus{--tw-text-opacity:1;color:rgb(var(--whiteInverted)/var(--tw-text-opacity))}.focus\:text-whiteInverted\/0:focus{color:rgb(var(--whiteInverted)/0)}.focus\:text-whiteInverted\/10:focus{color:rgb(var(--whiteInverted)/.1)}.focus\:text-whiteInverted\/100:focus{color:rgb(var(--whiteInverted)/1)}.focus\:text-whiteInverted\/20:focus{color:rgb(var(--whiteInverted)/.2)}.focus\:text-whiteInverted\/25:focus{color:rgb(var(--whiteInverted)/.25)}.focus\:text-whiteInverted\/30:focus{color:rgb(var(--whiteInverted)/.3)}.focus\:text-whiteInverted\/40:focus{color:rgb(var(--whiteInverted)/.4)}.focus\:text-whiteInverted\/5:focus{color:rgb(var(--whiteInverted)/.05)}.focus\:text-whiteInverted\/50:focus{color:rgb(var(--whiteInverted)/.5)}.focus\:text-whiteInverted\/60:focus{color:rgb(var(--whiteInverted)/.6)}.focus\:text-whiteInverted\/70:focus{color:rgb(var(--whiteInverted)/.7)}.focus\:text-whiteInverted\/75:focus{color:rgb(var(--whiteInverted)/.75)}.focus\:text-whiteInverted\/80:focus{color:rgb(var(--whiteInverted)/.8)}.focus\:text-whiteInverted\/90:focus{color:rgb(var(--whiteInverted)/.9)}.focus\:text-whiteInverted\/95:focus{color:rgb(var(--whiteInverted)/.95)}.focus\:outline-backgroundPrimary:focus{outline-color:rgb(var(--backgroundPrimary))}.focus\:outline-backgroundPrimary\/0:focus{outline-color:rgb(var(--backgroundPrimary)/0)}.focus\:outline-backgroundPrimary\/10:focus{outline-color:rgb(var(--backgroundPrimary)/.1)}.focus\:outline-backgroundPrimary\/100:focus{outline-color:rgb(var(--backgroundPrimary)/1)}.focus\:outline-backgroundPrimary\/20:focus{outline-color:rgb(var(--backgroundPrimary)/.2)}.focus\:outline-backgroundPrimary\/25:focus{outline-color:rgb(var(--backgroundPrimary)/.25)}.focus\:outline-backgroundPrimary\/30:focus{outline-color:rgb(var(--backgroundPrimary)/.3)}.focus\:outline-backgroundPrimary\/40:focus{outline-color:rgb(var(--backgroundPrimary)/.4)}.focus\:outline-backgroundPrimary\/5:focus{outline-color:rgb(var(--backgroundPrimary)/.05)}.focus\:outline-backgroundPrimary\/50:focus{outline-color:rgb(var(--backgroundPrimary)/.5)}.focus\:outline-backgroundPrimary\/60:focus{outline-color:rgb(var(--backgroundPrimary)/.6)}.focus\:outline-backgroundPrimary\/70:focus{outline-color:rgb(var(--backgroundPrimary)/.7)}.focus\:outline-backgroundPrimary\/75:focus{outline-color:rgb(var(--backgroundPrimary)/.75)}.focus\:outline-backgroundPrimary\/80:focus{outline-color:rgb(var(--backgroundPrimary)/.8)}.focus\:outline-backgroundPrimary\/90:focus{outline-color:rgb(var(--backgroundPrimary)/.9)}.focus\:outline-backgroundPrimary\/95:focus{outline-color:rgb(var(--backgroundPrimary)/.95)}.focus\:outline-backgroundSecondary:focus{outline-color:rgb(var(--backgroundSecondary))}.focus\:outline-backgroundSecondary\/0:focus{outline-color:rgb(var(--backgroundSecondary)/0)}.focus\:outline-backgroundSecondary\/10:focus{outline-color:rgb(var(--backgroundSecondary)/.1)}.focus\:outline-backgroundSecondary\/100:focus{outline-color:rgb(var(--backgroundSecondary)/1)}.focus\:outline-backgroundSecondary\/20:focus{outline-color:rgb(var(--backgroundSecondary)/.2)}.focus\:outline-backgroundSecondary\/25:focus{outline-color:rgb(var(--backgroundSecondary)/.25)}.focus\:outline-backgroundSecondary\/30:focus{outline-color:rgb(var(--backgroundSecondary)/.3)}.focus\:outline-backgroundSecondary\/40:focus{outline-color:rgb(var(--backgroundSecondary)/.4)}.focus\:outline-backgroundSecondary\/5:focus{outline-color:rgb(var(--backgroundSecondary)/.05)}.focus\:outline-backgroundSecondary\/50:focus{outline-color:rgb(var(--backgroundSecondary)/.5)}.focus\:outline-backgroundSecondary\/60:focus{outline-color:rgb(var(--backgroundSecondary)/.6)}.focus\:outline-backgroundSecondary\/70:focus{outline-color:rgb(var(--backgroundSecondary)/.7)}.focus\:outline-backgroundSecondary\/75:focus{outline-color:rgb(var(--backgroundSecondary)/.75)}.focus\:outline-backgroundSecondary\/80:focus{outline-color:rgb(var(--backgroundSecondary)/.8)}.focus\:outline-backgroundSecondary\/90:focus{outline-color:rgb(var(--backgroundSecondary)/.9)}.focus\:outline-backgroundSecondary\/95:focus{outline-color:rgb(var(--backgroundSecondary)/.95)}.focus\:outline-black:focus{outline-color:#000}.focus\:outline-black\/0:focus{outline-color:transparent}.focus\:outline-black\/10:focus{outline-color:rgba(0,0,0,.1)}.focus\:outline-black\/100:focus{outline-color:#000}.focus\:outline-black\/20:focus{outline-color:rgba(0,0,0,.2)}.focus\:outline-black\/25:focus{outline-color:rgba(0,0,0,.25)}.focus\:outline-black\/30:focus{outline-color:rgba(0,0,0,.3)}.focus\:outline-black\/40:focus{outline-color:rgba(0,0,0,.4)}.focus\:outline-black\/5:focus{outline-color:rgba(0,0,0,.05)}.focus\:outline-black\/50:focus{outline-color:rgba(0,0,0,.5)}.focus\:outline-black\/60:focus{outline-color:rgba(0,0,0,.6)}.focus\:outline-black\/70:focus{outline-color:rgba(0,0,0,.7)}.focus\:outline-black\/75:focus{outline-color:rgba(0,0,0,.75)}.focus\:outline-black\/80:focus{outline-color:rgba(0,0,0,.8)}.focus\:outline-black\/90:focus{outline-color:rgba(0,0,0,.9)}.focus\:outline-black\/95:focus{outline-color:rgba(0,0,0,.95)}.focus\:outline-blackInverted:focus{outline-color:rgb(var(--blackInverted))}.focus\:outline-blackInverted\/0:focus{outline-color:rgb(var(--blackInverted)/0)}.focus\:outline-blackInverted\/10:focus{outline-color:rgb(var(--blackInverted)/.1)}.focus\:outline-blackInverted\/100:focus{outline-color:rgb(var(--blackInverted)/1)}.focus\:outline-blackInverted\/20:focus{outline-color:rgb(var(--blackInverted)/.2)}.focus\:outline-blackInverted\/25:focus{outline-color:rgb(var(--blackInverted)/.25)}.focus\:outline-blackInverted\/30:focus{outline-color:rgb(var(--blackInverted)/.3)}.focus\:outline-blackInverted\/40:focus{outline-color:rgb(var(--blackInverted)/.4)}.focus\:outline-blackInverted\/5:focus{outline-color:rgb(var(--blackInverted)/.05)}.focus\:outline-blackInverted\/50:focus{outline-color:rgb(var(--blackInverted)/.5)}.focus\:outline-blackInverted\/60:focus{outline-color:rgb(var(--blackInverted)/.6)}.focus\:outline-blackInverted\/70:focus{outline-color:rgb(var(--blackInverted)/.7)}.focus\:outline-blackInverted\/75:focus{outline-color:rgb(var(--blackInverted)/.75)}.focus\:outline-blackInverted\/80:focus{outline-color:rgb(var(--blackInverted)/.8)}.focus\:outline-blackInverted\/90:focus{outline-color:rgb(var(--blackInverted)/.9)}.focus\:outline-blackInverted\/95:focus{outline-color:rgb(var(--blackInverted)/.95)}.focus\:outline-blue-1\/0:focus{outline-color:rgb(var(--blue-1)/0)}.focus\:outline-blue-1\/10:focus{outline-color:rgb(var(--blue-1)/.1)}.focus\:outline-blue-1\/100:focus{outline-color:rgb(var(--blue-1)/1)}.focus\:outline-blue-1\/20:focus{outline-color:rgb(var(--blue-1)/.2)}.focus\:outline-blue-1\/25:focus{outline-color:rgb(var(--blue-1)/.25)}.focus\:outline-blue-1\/30:focus{outline-color:rgb(var(--blue-1)/.3)}.focus\:outline-blue-1\/40:focus{outline-color:rgb(var(--blue-1)/.4)}.focus\:outline-blue-1\/5:focus{outline-color:rgb(var(--blue-1)/.05)}.focus\:outline-blue-1\/50:focus{outline-color:rgb(var(--blue-1)/.5)}.focus\:outline-blue-1\/60:focus{outline-color:rgb(var(--blue-1)/.6)}.focus\:outline-blue-1\/70:focus{outline-color:rgb(var(--blue-1)/.7)}.focus\:outline-blue-1\/75:focus{outline-color:rgb(var(--blue-1)/.75)}.focus\:outline-blue-1\/80:focus{outline-color:rgb(var(--blue-1)/.8)}.focus\:outline-blue-1\/90:focus{outline-color:rgb(var(--blue-1)/.9)}.focus\:outline-blue-1\/95:focus{outline-color:rgb(var(--blue-1)/.95)}.focus\:outline-blue-10\/0:focus{outline-color:rgb(var(--blue-10)/0)}.focus\:outline-blue-10\/10:focus{outline-color:rgb(var(--blue-10)/.1)}.focus\:outline-blue-10\/100:focus{outline-color:rgb(var(--blue-10)/1)}.focus\:outline-blue-10\/20:focus{outline-color:rgb(var(--blue-10)/.2)}.focus\:outline-blue-10\/25:focus{outline-color:rgb(var(--blue-10)/.25)}.focus\:outline-blue-10\/30:focus{outline-color:rgb(var(--blue-10)/.3)}.focus\:outline-blue-10\/40:focus{outline-color:rgb(var(--blue-10)/.4)}.focus\:outline-blue-10\/5:focus{outline-color:rgb(var(--blue-10)/.05)}.focus\:outline-blue-10\/50:focus{outline-color:rgb(var(--blue-10)/.5)}.focus\:outline-blue-10\/60:focus{outline-color:rgb(var(--blue-10)/.6)}.focus\:outline-blue-10\/70:focus{outline-color:rgb(var(--blue-10)/.7)}.focus\:outline-blue-10\/75:focus{outline-color:rgb(var(--blue-10)/.75)}.focus\:outline-blue-10\/80:focus{outline-color:rgb(var(--blue-10)/.8)}.focus\:outline-blue-10\/90:focus{outline-color:rgb(var(--blue-10)/.9)}.focus\:outline-blue-10\/95:focus{outline-color:rgb(var(--blue-10)/.95)}.focus\:outline-blue-2\/0:focus{outline-color:rgb(var(--blue-2)/0)}.focus\:outline-blue-2\/10:focus{outline-color:rgb(var(--blue-2)/.1)}.focus\:outline-blue-2\/100:focus{outline-color:rgb(var(--blue-2)/1)}.focus\:outline-blue-2\/20:focus{outline-color:rgb(var(--blue-2)/.2)}.focus\:outline-blue-2\/25:focus{outline-color:rgb(var(--blue-2)/.25)}.focus\:outline-blue-2\/30:focus{outline-color:rgb(var(--blue-2)/.3)}.focus\:outline-blue-2\/40:focus{outline-color:rgb(var(--blue-2)/.4)}.focus\:outline-blue-2\/5:focus{outline-color:rgb(var(--blue-2)/.05)}.focus\:outline-blue-2\/50:focus{outline-color:rgb(var(--blue-2)/.5)}.focus\:outline-blue-2\/60:focus{outline-color:rgb(var(--blue-2)/.6)}.focus\:outline-blue-2\/70:focus{outline-color:rgb(var(--blue-2)/.7)}.focus\:outline-blue-2\/75:focus{outline-color:rgb(var(--blue-2)/.75)}.focus\:outline-blue-2\/80:focus{outline-color:rgb(var(--blue-2)/.8)}.focus\:outline-blue-2\/90:focus{outline-color:rgb(var(--blue-2)/.9)}.focus\:outline-blue-2\/95:focus{outline-color:rgb(var(--blue-2)/.95)}.focus\:outline-blue-3\/0:focus{outline-color:rgb(var(--blue-3)/0)}.focus\:outline-blue-3\/10:focus{outline-color:rgb(var(--blue-3)/.1)}.focus\:outline-blue-3\/100:focus{outline-color:rgb(var(--blue-3)/1)}.focus\:outline-blue-3\/20:focus{outline-color:rgb(var(--blue-3)/.2)}.focus\:outline-blue-3\/25:focus{outline-color:rgb(var(--blue-3)/.25)}.focus\:outline-blue-3\/30:focus{outline-color:rgb(var(--blue-3)/.3)}.focus\:outline-blue-3\/40:focus{outline-color:rgb(var(--blue-3)/.4)}.focus\:outline-blue-3\/5:focus{outline-color:rgb(var(--blue-3)/.05)}.focus\:outline-blue-3\/50:focus{outline-color:rgb(var(--blue-3)/.5)}.focus\:outline-blue-3\/60:focus{outline-color:rgb(var(--blue-3)/.6)}.focus\:outline-blue-3\/70:focus{outline-color:rgb(var(--blue-3)/.7)}.focus\:outline-blue-3\/75:focus{outline-color:rgb(var(--blue-3)/.75)}.focus\:outline-blue-3\/80:focus{outline-color:rgb(var(--blue-3)/.8)}.focus\:outline-blue-3\/90:focus{outline-color:rgb(var(--blue-3)/.9)}.focus\:outline-blue-3\/95:focus{outline-color:rgb(var(--blue-3)/.95)}.focus\:outline-blue-4\/0:focus{outline-color:rgb(var(--blue-4)/0)}.focus\:outline-blue-4\/10:focus{outline-color:rgb(var(--blue-4)/.1)}.focus\:outline-blue-4\/100:focus{outline-color:rgb(var(--blue-4)/1)}.focus\:outline-blue-4\/20:focus{outline-color:rgb(var(--blue-4)/.2)}.focus\:outline-blue-4\/25:focus{outline-color:rgb(var(--blue-4)/.25)}.focus\:outline-blue-4\/30:focus{outline-color:rgb(var(--blue-4)/.3)}.focus\:outline-blue-4\/40:focus{outline-color:rgb(var(--blue-4)/.4)}.focus\:outline-blue-4\/5:focus{outline-color:rgb(var(--blue-4)/.05)}.focus\:outline-blue-4\/50:focus{outline-color:rgb(var(--blue-4)/.5)}.focus\:outline-blue-4\/60:focus{outline-color:rgb(var(--blue-4)/.6)}.focus\:outline-blue-4\/70:focus{outline-color:rgb(var(--blue-4)/.7)}.focus\:outline-blue-4\/75:focus{outline-color:rgb(var(--blue-4)/.75)}.focus\:outline-blue-4\/80:focus{outline-color:rgb(var(--blue-4)/.8)}.focus\:outline-blue-4\/90:focus{outline-color:rgb(var(--blue-4)/.9)}.focus\:outline-blue-4\/95:focus{outline-color:rgb(var(--blue-4)/.95)}.focus\:outline-blue-5\/0:focus{outline-color:rgb(var(--blue-5)/0)}.focus\:outline-blue-5\/10:focus{outline-color:rgb(var(--blue-5)/.1)}.focus\:outline-blue-5\/100:focus{outline-color:rgb(var(--blue-5)/1)}.focus\:outline-blue-5\/20:focus{outline-color:rgb(var(--blue-5)/.2)}.focus\:outline-blue-5\/25:focus{outline-color:rgb(var(--blue-5)/.25)}.focus\:outline-blue-5\/30:focus{outline-color:rgb(var(--blue-5)/.3)}.focus\:outline-blue-5\/40:focus{outline-color:rgb(var(--blue-5)/.4)}.focus\:outline-blue-5\/5:focus{outline-color:rgb(var(--blue-5)/.05)}.focus\:outline-blue-5\/50:focus{outline-color:rgb(var(--blue-5)/.5)}.focus\:outline-blue-5\/60:focus{outline-color:rgb(var(--blue-5)/.6)}.focus\:outline-blue-5\/70:focus{outline-color:rgb(var(--blue-5)/.7)}.focus\:outline-blue-5\/75:focus{outline-color:rgb(var(--blue-5)/.75)}.focus\:outline-blue-5\/80:focus{outline-color:rgb(var(--blue-5)/.8)}.focus\:outline-blue-5\/90:focus{outline-color:rgb(var(--blue-5)/.9)}.focus\:outline-blue-5\/95:focus{outline-color:rgb(var(--blue-5)/.95)}.focus\:outline-blue-6\/0:focus{outline-color:rgb(var(--blue-6)/0)}.focus\:outline-blue-6\/10:focus{outline-color:rgb(var(--blue-6)/.1)}.focus\:outline-blue-6\/100:focus{outline-color:rgb(var(--blue-6)/1)}.focus\:outline-blue-6\/20:focus{outline-color:rgb(var(--blue-6)/.2)}.focus\:outline-blue-6\/25:focus{outline-color:rgb(var(--blue-6)/.25)}.focus\:outline-blue-6\/30:focus{outline-color:rgb(var(--blue-6)/.3)}.focus\:outline-blue-6\/40:focus{outline-color:rgb(var(--blue-6)/.4)}.focus\:outline-blue-6\/5:focus{outline-color:rgb(var(--blue-6)/.05)}.focus\:outline-blue-6\/50:focus{outline-color:rgb(var(--blue-6)/.5)}.focus\:outline-blue-6\/60:focus{outline-color:rgb(var(--blue-6)/.6)}.focus\:outline-blue-6\/70:focus{outline-color:rgb(var(--blue-6)/.7)}.focus\:outline-blue-6\/75:focus{outline-color:rgb(var(--blue-6)/.75)}.focus\:outline-blue-6\/80:focus{outline-color:rgb(var(--blue-6)/.8)}.focus\:outline-blue-6\/90:focus{outline-color:rgb(var(--blue-6)/.9)}.focus\:outline-blue-6\/95:focus{outline-color:rgb(var(--blue-6)/.95)}.focus\:outline-blue-7\/0:focus{outline-color:rgb(var(--blue-7)/0)}.focus\:outline-blue-7\/10:focus{outline-color:rgb(var(--blue-7)/.1)}.focus\:outline-blue-7\/100:focus{outline-color:rgb(var(--blue-7)/1)}.focus\:outline-blue-7\/20:focus{outline-color:rgb(var(--blue-7)/.2)}.focus\:outline-blue-7\/25:focus{outline-color:rgb(var(--blue-7)/.25)}.focus\:outline-blue-7\/30:focus{outline-color:rgb(var(--blue-7)/.3)}.focus\:outline-blue-7\/40:focus{outline-color:rgb(var(--blue-7)/.4)}.focus\:outline-blue-7\/5:focus{outline-color:rgb(var(--blue-7)/.05)}.focus\:outline-blue-7\/50:focus{outline-color:rgb(var(--blue-7)/.5)}.focus\:outline-blue-7\/60:focus{outline-color:rgb(var(--blue-7)/.6)}.focus\:outline-blue-7\/70:focus{outline-color:rgb(var(--blue-7)/.7)}.focus\:outline-blue-7\/75:focus{outline-color:rgb(var(--blue-7)/.75)}.focus\:outline-blue-7\/80:focus{outline-color:rgb(var(--blue-7)/.8)}.focus\:outline-blue-7\/90:focus{outline-color:rgb(var(--blue-7)/.9)}.focus\:outline-blue-7\/95:focus{outline-color:rgb(var(--blue-7)/.95)}.focus\:outline-blue-8\/0:focus{outline-color:rgb(var(--blue-8)/0)}.focus\:outline-blue-8\/10:focus{outline-color:rgb(var(--blue-8)/.1)}.focus\:outline-blue-8\/100:focus{outline-color:rgb(var(--blue-8)/1)}.focus\:outline-blue-8\/20:focus{outline-color:rgb(var(--blue-8)/.2)}.focus\:outline-blue-8\/25:focus{outline-color:rgb(var(--blue-8)/.25)}.focus\:outline-blue-8\/30:focus{outline-color:rgb(var(--blue-8)/.3)}.focus\:outline-blue-8\/40:focus{outline-color:rgb(var(--blue-8)/.4)}.focus\:outline-blue-8\/5:focus{outline-color:rgb(var(--blue-8)/.05)}.focus\:outline-blue-8\/50:focus{outline-color:rgb(var(--blue-8)/.5)}.focus\:outline-blue-8\/60:focus{outline-color:rgb(var(--blue-8)/.6)}.focus\:outline-blue-8\/70:focus{outline-color:rgb(var(--blue-8)/.7)}.focus\:outline-blue-8\/75:focus{outline-color:rgb(var(--blue-8)/.75)}.focus\:outline-blue-8\/80:focus{outline-color:rgb(var(--blue-8)/.8)}.focus\:outline-blue-8\/90:focus{outline-color:rgb(var(--blue-8)/.9)}.focus\:outline-blue-8\/95:focus{outline-color:rgb(var(--blue-8)/.95)}.focus\:outline-blue-9\/0:focus{outline-color:rgb(var(--blue-9)/0)}.focus\:outline-blue-9\/10:focus{outline-color:rgb(var(--blue-9)/.1)}.focus\:outline-blue-9\/100:focus{outline-color:rgb(var(--blue-9)/1)}.focus\:outline-blue-9\/20:focus{outline-color:rgb(var(--blue-9)/.2)}.focus\:outline-blue-9\/25:focus{outline-color:rgb(var(--blue-9)/.25)}.focus\:outline-blue-9\/30:focus{outline-color:rgb(var(--blue-9)/.3)}.focus\:outline-blue-9\/40:focus{outline-color:rgb(var(--blue-9)/.4)}.focus\:outline-blue-9\/5:focus{outline-color:rgb(var(--blue-9)/.05)}.focus\:outline-blue-9\/50:focus{outline-color:rgb(var(--blue-9)/.5)}.focus\:outline-blue-9\/60:focus{outline-color:rgb(var(--blue-9)/.6)}.focus\:outline-blue-9\/70:focus{outline-color:rgb(var(--blue-9)/.7)}.focus\:outline-blue-9\/75:focus{outline-color:rgb(var(--blue-9)/.75)}.focus\:outline-blue-9\/80:focus{outline-color:rgb(var(--blue-9)/.8)}.focus\:outline-blue-9\/90:focus{outline-color:rgb(var(--blue-9)/.9)}.focus\:outline-blue-9\/95:focus{outline-color:rgb(var(--blue-9)/.95)}.focus\:outline-border:focus{outline-color:rgb(var(--border))}.focus\:outline-border\/0:focus{outline-color:rgb(var(--border)/0)}.focus\:outline-border\/10:focus{outline-color:rgb(var(--border)/.1)}.focus\:outline-border\/100:focus{outline-color:rgb(var(--border)/1)}.focus\:outline-border\/20:focus{outline-color:rgb(var(--border)/.2)}.focus\:outline-border\/25:focus{outline-color:rgb(var(--border)/.25)}.focus\:outline-border\/30:focus{outline-color:rgb(var(--border)/.3)}.focus\:outline-border\/40:focus{outline-color:rgb(var(--border)/.4)}.focus\:outline-border\/5:focus{outline-color:rgb(var(--border)/.05)}.focus\:outline-border\/50:focus{outline-color:rgb(var(--border)/.5)}.focus\:outline-border\/60:focus{outline-color:rgb(var(--border)/.6)}.focus\:outline-border\/70:focus{outline-color:rgb(var(--border)/.7)}.focus\:outline-border\/75:focus{outline-color:rgb(var(--border)/.75)}.focus\:outline-border\/80:focus{outline-color:rgb(var(--border)/.8)}.focus\:outline-border\/90:focus{outline-color:rgb(var(--border)/.9)}.focus\:outline-border\/95:focus{outline-color:rgb(var(--border)/.95)}.focus\:outline-content1:focus{outline-color:rgb(var(--content1))}.focus\:outline-content1\/0:focus{outline-color:rgb(var(--content1)/0)}.focus\:outline-content1\/10:focus{outline-color:rgb(var(--content1)/.1)}.focus\:outline-content1\/100:focus{outline-color:rgb(var(--content1)/1)}.focus\:outline-content1\/20:focus{outline-color:rgb(var(--content1)/.2)}.focus\:outline-content1\/25:focus{outline-color:rgb(var(--content1)/.25)}.focus\:outline-content1\/30:focus{outline-color:rgb(var(--content1)/.3)}.focus\:outline-content1\/40:focus{outline-color:rgb(var(--content1)/.4)}.focus\:outline-content1\/5:focus{outline-color:rgb(var(--content1)/.05)}.focus\:outline-content1\/50:focus{outline-color:rgb(var(--content1)/.5)}.focus\:outline-content1\/60:focus{outline-color:rgb(var(--content1)/.6)}.focus\:outline-content1\/70:focus{outline-color:rgb(var(--content1)/.7)}.focus\:outline-content1\/75:focus{outline-color:rgb(var(--content1)/.75)}.focus\:outline-content1\/80:focus{outline-color:rgb(var(--content1)/.8)}.focus\:outline-content1\/90:focus{outline-color:rgb(var(--content1)/.9)}.focus\:outline-content1\/95:focus{outline-color:rgb(var(--content1)/.95)}.focus\:outline-content2:focus{outline-color:rgb(var(--content2))}.focus\:outline-content2\/0:focus{outline-color:rgb(var(--content2)/0)}.focus\:outline-content2\/10:focus{outline-color:rgb(var(--content2)/.1)}.focus\:outline-content2\/100:focus{outline-color:rgb(var(--content2)/1)}.focus\:outline-content2\/20:focus{outline-color:rgb(var(--content2)/.2)}.focus\:outline-content2\/25:focus{outline-color:rgb(var(--content2)/.25)}.focus\:outline-content2\/30:focus{outline-color:rgb(var(--content2)/.3)}.focus\:outline-content2\/40:focus{outline-color:rgb(var(--content2)/.4)}.focus\:outline-content2\/5:focus{outline-color:rgb(var(--content2)/.05)}.focus\:outline-content2\/50:focus{outline-color:rgb(var(--content2)/.5)}.focus\:outline-content2\/60:focus{outline-color:rgb(var(--content2)/.6)}.focus\:outline-content2\/70:focus{outline-color:rgb(var(--content2)/.7)}.focus\:outline-content2\/75:focus{outline-color:rgb(var(--content2)/.75)}.focus\:outline-content2\/80:focus{outline-color:rgb(var(--content2)/.8)}.focus\:outline-content2\/90:focus{outline-color:rgb(var(--content2)/.9)}.focus\:outline-content2\/95:focus{outline-color:rgb(var(--content2)/.95)}.focus\:outline-content3:focus{outline-color:rgb(var(--content3))}.focus\:outline-content3\/0:focus{outline-color:rgb(var(--content3)/0)}.focus\:outline-content3\/10:focus{outline-color:rgb(var(--content3)/.1)}.focus\:outline-content3\/100:focus{outline-color:rgb(var(--content3)/1)}.focus\:outline-content3\/20:focus{outline-color:rgb(var(--content3)/.2)}.focus\:outline-content3\/25:focus{outline-color:rgb(var(--content3)/.25)}.focus\:outline-content3\/30:focus{outline-color:rgb(var(--content3)/.3)}.focus\:outline-content3\/40:focus{outline-color:rgb(var(--content3)/.4)}.focus\:outline-content3\/5:focus{outline-color:rgb(var(--content3)/.05)}.focus\:outline-content3\/50:focus{outline-color:rgb(var(--content3)/.5)}.focus\:outline-content3\/60:focus{outline-color:rgb(var(--content3)/.6)}.focus\:outline-content3\/70:focus{outline-color:rgb(var(--content3)/.7)}.focus\:outline-content3\/75:focus{outline-color:rgb(var(--content3)/.75)}.focus\:outline-content3\/80:focus{outline-color:rgb(var(--content3)/.8)}.focus\:outline-content3\/90:focus{outline-color:rgb(var(--content3)/.9)}.focus\:outline-content3\/95:focus{outline-color:rgb(var(--content3)/.95)}.focus\:outline-cyan-1\/0:focus{outline-color:rgb(var(--cyan-1)/0)}.focus\:outline-cyan-1\/10:focus{outline-color:rgb(var(--cyan-1)/.1)}.focus\:outline-cyan-1\/100:focus{outline-color:rgb(var(--cyan-1)/1)}.focus\:outline-cyan-1\/20:focus{outline-color:rgb(var(--cyan-1)/.2)}.focus\:outline-cyan-1\/25:focus{outline-color:rgb(var(--cyan-1)/.25)}.focus\:outline-cyan-1\/30:focus{outline-color:rgb(var(--cyan-1)/.3)}.focus\:outline-cyan-1\/40:focus{outline-color:rgb(var(--cyan-1)/.4)}.focus\:outline-cyan-1\/5:focus{outline-color:rgb(var(--cyan-1)/.05)}.focus\:outline-cyan-1\/50:focus{outline-color:rgb(var(--cyan-1)/.5)}.focus\:outline-cyan-1\/60:focus{outline-color:rgb(var(--cyan-1)/.6)}.focus\:outline-cyan-1\/70:focus{outline-color:rgb(var(--cyan-1)/.7)}.focus\:outline-cyan-1\/75:focus{outline-color:rgb(var(--cyan-1)/.75)}.focus\:outline-cyan-1\/80:focus{outline-color:rgb(var(--cyan-1)/.8)}.focus\:outline-cyan-1\/90:focus{outline-color:rgb(var(--cyan-1)/.9)}.focus\:outline-cyan-1\/95:focus{outline-color:rgb(var(--cyan-1)/.95)}.focus\:outline-cyan-10\/0:focus{outline-color:rgb(var(--cyan-10)/0)}.focus\:outline-cyan-10\/10:focus{outline-color:rgb(var(--cyan-10)/.1)}.focus\:outline-cyan-10\/100:focus{outline-color:rgb(var(--cyan-10)/1)}.focus\:outline-cyan-10\/20:focus{outline-color:rgb(var(--cyan-10)/.2)}.focus\:outline-cyan-10\/25:focus{outline-color:rgb(var(--cyan-10)/.25)}.focus\:outline-cyan-10\/30:focus{outline-color:rgb(var(--cyan-10)/.3)}.focus\:outline-cyan-10\/40:focus{outline-color:rgb(var(--cyan-10)/.4)}.focus\:outline-cyan-10\/5:focus{outline-color:rgb(var(--cyan-10)/.05)}.focus\:outline-cyan-10\/50:focus{outline-color:rgb(var(--cyan-10)/.5)}.focus\:outline-cyan-10\/60:focus{outline-color:rgb(var(--cyan-10)/.6)}.focus\:outline-cyan-10\/70:focus{outline-color:rgb(var(--cyan-10)/.7)}.focus\:outline-cyan-10\/75:focus{outline-color:rgb(var(--cyan-10)/.75)}.focus\:outline-cyan-10\/80:focus{outline-color:rgb(var(--cyan-10)/.8)}.focus\:outline-cyan-10\/90:focus{outline-color:rgb(var(--cyan-10)/.9)}.focus\:outline-cyan-10\/95:focus{outline-color:rgb(var(--cyan-10)/.95)}.focus\:outline-cyan-2\/0:focus{outline-color:rgb(var(--cyan-2)/0)}.focus\:outline-cyan-2\/10:focus{outline-color:rgb(var(--cyan-2)/.1)}.focus\:outline-cyan-2\/100:focus{outline-color:rgb(var(--cyan-2)/1)}.focus\:outline-cyan-2\/20:focus{outline-color:rgb(var(--cyan-2)/.2)}.focus\:outline-cyan-2\/25:focus{outline-color:rgb(var(--cyan-2)/.25)}.focus\:outline-cyan-2\/30:focus{outline-color:rgb(var(--cyan-2)/.3)}.focus\:outline-cyan-2\/40:focus{outline-color:rgb(var(--cyan-2)/.4)}.focus\:outline-cyan-2\/5:focus{outline-color:rgb(var(--cyan-2)/.05)}.focus\:outline-cyan-2\/50:focus{outline-color:rgb(var(--cyan-2)/.5)}.focus\:outline-cyan-2\/60:focus{outline-color:rgb(var(--cyan-2)/.6)}.focus\:outline-cyan-2\/70:focus{outline-color:rgb(var(--cyan-2)/.7)}.focus\:outline-cyan-2\/75:focus{outline-color:rgb(var(--cyan-2)/.75)}.focus\:outline-cyan-2\/80:focus{outline-color:rgb(var(--cyan-2)/.8)}.focus\:outline-cyan-2\/90:focus{outline-color:rgb(var(--cyan-2)/.9)}.focus\:outline-cyan-2\/95:focus{outline-color:rgb(var(--cyan-2)/.95)}.focus\:outline-cyan-3\/0:focus{outline-color:rgb(var(--cyan-3)/0)}.focus\:outline-cyan-3\/10:focus{outline-color:rgb(var(--cyan-3)/.1)}.focus\:outline-cyan-3\/100:focus{outline-color:rgb(var(--cyan-3)/1)}.focus\:outline-cyan-3\/20:focus{outline-color:rgb(var(--cyan-3)/.2)}.focus\:outline-cyan-3\/25:focus{outline-color:rgb(var(--cyan-3)/.25)}.focus\:outline-cyan-3\/30:focus{outline-color:rgb(var(--cyan-3)/.3)}.focus\:outline-cyan-3\/40:focus{outline-color:rgb(var(--cyan-3)/.4)}.focus\:outline-cyan-3\/5:focus{outline-color:rgb(var(--cyan-3)/.05)}.focus\:outline-cyan-3\/50:focus{outline-color:rgb(var(--cyan-3)/.5)}.focus\:outline-cyan-3\/60:focus{outline-color:rgb(var(--cyan-3)/.6)}.focus\:outline-cyan-3\/70:focus{outline-color:rgb(var(--cyan-3)/.7)}.focus\:outline-cyan-3\/75:focus{outline-color:rgb(var(--cyan-3)/.75)}.focus\:outline-cyan-3\/80:focus{outline-color:rgb(var(--cyan-3)/.8)}.focus\:outline-cyan-3\/90:focus{outline-color:rgb(var(--cyan-3)/.9)}.focus\:outline-cyan-3\/95:focus{outline-color:rgb(var(--cyan-3)/.95)}.focus\:outline-cyan-4\/0:focus{outline-color:rgb(var(--cyan-4)/0)}.focus\:outline-cyan-4\/10:focus{outline-color:rgb(var(--cyan-4)/.1)}.focus\:outline-cyan-4\/100:focus{outline-color:rgb(var(--cyan-4)/1)}.focus\:outline-cyan-4\/20:focus{outline-color:rgb(var(--cyan-4)/.2)}.focus\:outline-cyan-4\/25:focus{outline-color:rgb(var(--cyan-4)/.25)}.focus\:outline-cyan-4\/30:focus{outline-color:rgb(var(--cyan-4)/.3)}.focus\:outline-cyan-4\/40:focus{outline-color:rgb(var(--cyan-4)/.4)}.focus\:outline-cyan-4\/5:focus{outline-color:rgb(var(--cyan-4)/.05)}.focus\:outline-cyan-4\/50:focus{outline-color:rgb(var(--cyan-4)/.5)}.focus\:outline-cyan-4\/60:focus{outline-color:rgb(var(--cyan-4)/.6)}.focus\:outline-cyan-4\/70:focus{outline-color:rgb(var(--cyan-4)/.7)}.focus\:outline-cyan-4\/75:focus{outline-color:rgb(var(--cyan-4)/.75)}.focus\:outline-cyan-4\/80:focus{outline-color:rgb(var(--cyan-4)/.8)}.focus\:outline-cyan-4\/90:focus{outline-color:rgb(var(--cyan-4)/.9)}.focus\:outline-cyan-4\/95:focus{outline-color:rgb(var(--cyan-4)/.95)}.focus\:outline-cyan-5\/0:focus{outline-color:rgb(var(--cyan-5)/0)}.focus\:outline-cyan-5\/10:focus{outline-color:rgb(var(--cyan-5)/.1)}.focus\:outline-cyan-5\/100:focus{outline-color:rgb(var(--cyan-5)/1)}.focus\:outline-cyan-5\/20:focus{outline-color:rgb(var(--cyan-5)/.2)}.focus\:outline-cyan-5\/25:focus{outline-color:rgb(var(--cyan-5)/.25)}.focus\:outline-cyan-5\/30:focus{outline-color:rgb(var(--cyan-5)/.3)}.focus\:outline-cyan-5\/40:focus{outline-color:rgb(var(--cyan-5)/.4)}.focus\:outline-cyan-5\/5:focus{outline-color:rgb(var(--cyan-5)/.05)}.focus\:outline-cyan-5\/50:focus{outline-color:rgb(var(--cyan-5)/.5)}.focus\:outline-cyan-5\/60:focus{outline-color:rgb(var(--cyan-5)/.6)}.focus\:outline-cyan-5\/70:focus{outline-color:rgb(var(--cyan-5)/.7)}.focus\:outline-cyan-5\/75:focus{outline-color:rgb(var(--cyan-5)/.75)}.focus\:outline-cyan-5\/80:focus{outline-color:rgb(var(--cyan-5)/.8)}.focus\:outline-cyan-5\/90:focus{outline-color:rgb(var(--cyan-5)/.9)}.focus\:outline-cyan-5\/95:focus{outline-color:rgb(var(--cyan-5)/.95)}.focus\:outline-cyan-6\/0:focus{outline-color:rgb(var(--cyan-6)/0)}.focus\:outline-cyan-6\/10:focus{outline-color:rgb(var(--cyan-6)/.1)}.focus\:outline-cyan-6\/100:focus{outline-color:rgb(var(--cyan-6)/1)}.focus\:outline-cyan-6\/20:focus{outline-color:rgb(var(--cyan-6)/.2)}.focus\:outline-cyan-6\/25:focus{outline-color:rgb(var(--cyan-6)/.25)}.focus\:outline-cyan-6\/30:focus{outline-color:rgb(var(--cyan-6)/.3)}.focus\:outline-cyan-6\/40:focus{outline-color:rgb(var(--cyan-6)/.4)}.focus\:outline-cyan-6\/5:focus{outline-color:rgb(var(--cyan-6)/.05)}.focus\:outline-cyan-6\/50:focus{outline-color:rgb(var(--cyan-6)/.5)}.focus\:outline-cyan-6\/60:focus{outline-color:rgb(var(--cyan-6)/.6)}.focus\:outline-cyan-6\/70:focus{outline-color:rgb(var(--cyan-6)/.7)}.focus\:outline-cyan-6\/75:focus{outline-color:rgb(var(--cyan-6)/.75)}.focus\:outline-cyan-6\/80:focus{outline-color:rgb(var(--cyan-6)/.8)}.focus\:outline-cyan-6\/90:focus{outline-color:rgb(var(--cyan-6)/.9)}.focus\:outline-cyan-6\/95:focus{outline-color:rgb(var(--cyan-6)/.95)}.focus\:outline-cyan-7\/0:focus{outline-color:rgb(var(--cyan-7)/0)}.focus\:outline-cyan-7\/10:focus{outline-color:rgb(var(--cyan-7)/.1)}.focus\:outline-cyan-7\/100:focus{outline-color:rgb(var(--cyan-7)/1)}.focus\:outline-cyan-7\/20:focus{outline-color:rgb(var(--cyan-7)/.2)}.focus\:outline-cyan-7\/25:focus{outline-color:rgb(var(--cyan-7)/.25)}.focus\:outline-cyan-7\/30:focus{outline-color:rgb(var(--cyan-7)/.3)}.focus\:outline-cyan-7\/40:focus{outline-color:rgb(var(--cyan-7)/.4)}.focus\:outline-cyan-7\/5:focus{outline-color:rgb(var(--cyan-7)/.05)}.focus\:outline-cyan-7\/50:focus{outline-color:rgb(var(--cyan-7)/.5)}.focus\:outline-cyan-7\/60:focus{outline-color:rgb(var(--cyan-7)/.6)}.focus\:outline-cyan-7\/70:focus{outline-color:rgb(var(--cyan-7)/.7)}.focus\:outline-cyan-7\/75:focus{outline-color:rgb(var(--cyan-7)/.75)}.focus\:outline-cyan-7\/80:focus{outline-color:rgb(var(--cyan-7)/.8)}.focus\:outline-cyan-7\/90:focus{outline-color:rgb(var(--cyan-7)/.9)}.focus\:outline-cyan-7\/95:focus{outline-color:rgb(var(--cyan-7)/.95)}.focus\:outline-cyan-8\/0:focus{outline-color:rgb(var(--cyan-8)/0)}.focus\:outline-cyan-8\/10:focus{outline-color:rgb(var(--cyan-8)/.1)}.focus\:outline-cyan-8\/100:focus{outline-color:rgb(var(--cyan-8)/1)}.focus\:outline-cyan-8\/20:focus{outline-color:rgb(var(--cyan-8)/.2)}.focus\:outline-cyan-8\/25:focus{outline-color:rgb(var(--cyan-8)/.25)}.focus\:outline-cyan-8\/30:focus{outline-color:rgb(var(--cyan-8)/.3)}.focus\:outline-cyan-8\/40:focus{outline-color:rgb(var(--cyan-8)/.4)}.focus\:outline-cyan-8\/5:focus{outline-color:rgb(var(--cyan-8)/.05)}.focus\:outline-cyan-8\/50:focus{outline-color:rgb(var(--cyan-8)/.5)}.focus\:outline-cyan-8\/60:focus{outline-color:rgb(var(--cyan-8)/.6)}.focus\:outline-cyan-8\/70:focus{outline-color:rgb(var(--cyan-8)/.7)}.focus\:outline-cyan-8\/75:focus{outline-color:rgb(var(--cyan-8)/.75)}.focus\:outline-cyan-8\/80:focus{outline-color:rgb(var(--cyan-8)/.8)}.focus\:outline-cyan-8\/90:focus{outline-color:rgb(var(--cyan-8)/.9)}.focus\:outline-cyan-8\/95:focus{outline-color:rgb(var(--cyan-8)/.95)}.focus\:outline-cyan-9\/0:focus{outline-color:rgb(var(--cyan-9)/0)}.focus\:outline-cyan-9\/10:focus{outline-color:rgb(var(--cyan-9)/.1)}.focus\:outline-cyan-9\/100:focus{outline-color:rgb(var(--cyan-9)/1)}.focus\:outline-cyan-9\/20:focus{outline-color:rgb(var(--cyan-9)/.2)}.focus\:outline-cyan-9\/25:focus{outline-color:rgb(var(--cyan-9)/.25)}.focus\:outline-cyan-9\/30:focus{outline-color:rgb(var(--cyan-9)/.3)}.focus\:outline-cyan-9\/40:focus{outline-color:rgb(var(--cyan-9)/.4)}.focus\:outline-cyan-9\/5:focus{outline-color:rgb(var(--cyan-9)/.05)}.focus\:outline-cyan-9\/50:focus{outline-color:rgb(var(--cyan-9)/.5)}.focus\:outline-cyan-9\/60:focus{outline-color:rgb(var(--cyan-9)/.6)}.focus\:outline-cyan-9\/70:focus{outline-color:rgb(var(--cyan-9)/.7)}.focus\:outline-cyan-9\/75:focus{outline-color:rgb(var(--cyan-9)/.75)}.focus\:outline-cyan-9\/80:focus{outline-color:rgb(var(--cyan-9)/.8)}.focus\:outline-cyan-9\/90:focus{outline-color:rgb(var(--cyan-9)/.9)}.focus\:outline-cyan-9\/95:focus{outline-color:rgb(var(--cyan-9)/.95)}.focus\:outline-error:focus{outline-color:rgb(var(--error))}.focus\:outline-error\/0:focus{outline-color:rgb(var(--error)/0)}.focus\:outline-error\/10:focus{outline-color:rgb(var(--error)/.1)}.focus\:outline-error\/100:focus{outline-color:rgb(var(--error)/1)}.focus\:outline-error\/20:focus{outline-color:rgb(var(--error)/.2)}.focus\:outline-error\/25:focus{outline-color:rgb(var(--error)/.25)}.focus\:outline-error\/30:focus{outline-color:rgb(var(--error)/.3)}.focus\:outline-error\/40:focus{outline-color:rgb(var(--error)/.4)}.focus\:outline-error\/5:focus{outline-color:rgb(var(--error)/.05)}.focus\:outline-error\/50:focus{outline-color:rgb(var(--error)/.5)}.focus\:outline-error\/60:focus{outline-color:rgb(var(--error)/.6)}.focus\:outline-error\/70:focus{outline-color:rgb(var(--error)/.7)}.focus\:outline-error\/75:focus{outline-color:rgb(var(--error)/.75)}.focus\:outline-error\/80:focus{outline-color:rgb(var(--error)/.8)}.focus\:outline-error\/90:focus{outline-color:rgb(var(--error)/.9)}.focus\:outline-error\/95:focus{outline-color:rgb(var(--error)/.95)}.focus\:outline-gray-1\/0:focus{outline-color:rgb(var(--gray-1)/0)}.focus\:outline-gray-1\/10:focus{outline-color:rgb(var(--gray-1)/.1)}.focus\:outline-gray-1\/100:focus{outline-color:rgb(var(--gray-1)/1)}.focus\:outline-gray-1\/20:focus{outline-color:rgb(var(--gray-1)/.2)}.focus\:outline-gray-1\/25:focus{outline-color:rgb(var(--gray-1)/.25)}.focus\:outline-gray-1\/30:focus{outline-color:rgb(var(--gray-1)/.3)}.focus\:outline-gray-1\/40:focus{outline-color:rgb(var(--gray-1)/.4)}.focus\:outline-gray-1\/5:focus{outline-color:rgb(var(--gray-1)/.05)}.focus\:outline-gray-1\/50:focus{outline-color:rgb(var(--gray-1)/.5)}.focus\:outline-gray-1\/60:focus{outline-color:rgb(var(--gray-1)/.6)}.focus\:outline-gray-1\/70:focus{outline-color:rgb(var(--gray-1)/.7)}.focus\:outline-gray-1\/75:focus{outline-color:rgb(var(--gray-1)/.75)}.focus\:outline-gray-1\/80:focus{outline-color:rgb(var(--gray-1)/.8)}.focus\:outline-gray-1\/90:focus{outline-color:rgb(var(--gray-1)/.9)}.focus\:outline-gray-1\/95:focus{outline-color:rgb(var(--gray-1)/.95)}.focus\:outline-gray-10\/0:focus{outline-color:rgb(var(--gray-10)/0)}.focus\:outline-gray-10\/10:focus{outline-color:rgb(var(--gray-10)/.1)}.focus\:outline-gray-10\/100:focus{outline-color:rgb(var(--gray-10)/1)}.focus\:outline-gray-10\/20:focus{outline-color:rgb(var(--gray-10)/.2)}.focus\:outline-gray-10\/25:focus{outline-color:rgb(var(--gray-10)/.25)}.focus\:outline-gray-10\/30:focus{outline-color:rgb(var(--gray-10)/.3)}.focus\:outline-gray-10\/40:focus{outline-color:rgb(var(--gray-10)/.4)}.focus\:outline-gray-10\/5:focus{outline-color:rgb(var(--gray-10)/.05)}.focus\:outline-gray-10\/50:focus{outline-color:rgb(var(--gray-10)/.5)}.focus\:outline-gray-10\/60:focus{outline-color:rgb(var(--gray-10)/.6)}.focus\:outline-gray-10\/70:focus{outline-color:rgb(var(--gray-10)/.7)}.focus\:outline-gray-10\/75:focus{outline-color:rgb(var(--gray-10)/.75)}.focus\:outline-gray-10\/80:focus{outline-color:rgb(var(--gray-10)/.8)}.focus\:outline-gray-10\/90:focus{outline-color:rgb(var(--gray-10)/.9)}.focus\:outline-gray-10\/95:focus{outline-color:rgb(var(--gray-10)/.95)}.focus\:outline-gray-2\/0:focus{outline-color:rgb(var(--gray-2)/0)}.focus\:outline-gray-2\/10:focus{outline-color:rgb(var(--gray-2)/.1)}.focus\:outline-gray-2\/100:focus{outline-color:rgb(var(--gray-2)/1)}.focus\:outline-gray-2\/20:focus{outline-color:rgb(var(--gray-2)/.2)}.focus\:outline-gray-2\/25:focus{outline-color:rgb(var(--gray-2)/.25)}.focus\:outline-gray-2\/30:focus{outline-color:rgb(var(--gray-2)/.3)}.focus\:outline-gray-2\/40:focus{outline-color:rgb(var(--gray-2)/.4)}.focus\:outline-gray-2\/5:focus{outline-color:rgb(var(--gray-2)/.05)}.focus\:outline-gray-2\/50:focus{outline-color:rgb(var(--gray-2)/.5)}.focus\:outline-gray-2\/60:focus{outline-color:rgb(var(--gray-2)/.6)}.focus\:outline-gray-2\/70:focus{outline-color:rgb(var(--gray-2)/.7)}.focus\:outline-gray-2\/75:focus{outline-color:rgb(var(--gray-2)/.75)}.focus\:outline-gray-2\/80:focus{outline-color:rgb(var(--gray-2)/.8)}.focus\:outline-gray-2\/90:focus{outline-color:rgb(var(--gray-2)/.9)}.focus\:outline-gray-2\/95:focus{outline-color:rgb(var(--gray-2)/.95)}.focus\:outline-gray-3\/0:focus{outline-color:rgb(var(--gray-3)/0)}.focus\:outline-gray-3\/10:focus{outline-color:rgb(var(--gray-3)/.1)}.focus\:outline-gray-3\/100:focus{outline-color:rgb(var(--gray-3)/1)}.focus\:outline-gray-3\/20:focus{outline-color:rgb(var(--gray-3)/.2)}.focus\:outline-gray-3\/25:focus{outline-color:rgb(var(--gray-3)/.25)}.focus\:outline-gray-3\/30:focus{outline-color:rgb(var(--gray-3)/.3)}.focus\:outline-gray-3\/40:focus{outline-color:rgb(var(--gray-3)/.4)}.focus\:outline-gray-3\/5:focus{outline-color:rgb(var(--gray-3)/.05)}.focus\:outline-gray-3\/50:focus{outline-color:rgb(var(--gray-3)/.5)}.focus\:outline-gray-3\/60:focus{outline-color:rgb(var(--gray-3)/.6)}.focus\:outline-gray-3\/70:focus{outline-color:rgb(var(--gray-3)/.7)}.focus\:outline-gray-3\/75:focus{outline-color:rgb(var(--gray-3)/.75)}.focus\:outline-gray-3\/80:focus{outline-color:rgb(var(--gray-3)/.8)}.focus\:outline-gray-3\/90:focus{outline-color:rgb(var(--gray-3)/.9)}.focus\:outline-gray-3\/95:focus{outline-color:rgb(var(--gray-3)/.95)}.focus\:outline-gray-4\/0:focus{outline-color:rgb(var(--gray-4)/0)}.focus\:outline-gray-4\/10:focus{outline-color:rgb(var(--gray-4)/.1)}.focus\:outline-gray-4\/100:focus{outline-color:rgb(var(--gray-4)/1)}.focus\:outline-gray-4\/20:focus{outline-color:rgb(var(--gray-4)/.2)}.focus\:outline-gray-4\/25:focus{outline-color:rgb(var(--gray-4)/.25)}.focus\:outline-gray-4\/30:focus{outline-color:rgb(var(--gray-4)/.3)}.focus\:outline-gray-4\/40:focus{outline-color:rgb(var(--gray-4)/.4)}.focus\:outline-gray-4\/5:focus{outline-color:rgb(var(--gray-4)/.05)}.focus\:outline-gray-4\/50:focus{outline-color:rgb(var(--gray-4)/.5)}.focus\:outline-gray-4\/60:focus{outline-color:rgb(var(--gray-4)/.6)}.focus\:outline-gray-4\/70:focus{outline-color:rgb(var(--gray-4)/.7)}.focus\:outline-gray-4\/75:focus{outline-color:rgb(var(--gray-4)/.75)}.focus\:outline-gray-4\/80:focus{outline-color:rgb(var(--gray-4)/.8)}.focus\:outline-gray-4\/90:focus{outline-color:rgb(var(--gray-4)/.9)}.focus\:outline-gray-4\/95:focus{outline-color:rgb(var(--gray-4)/.95)}.focus\:outline-gray-5\/0:focus{outline-color:rgb(var(--gray-5)/0)}.focus\:outline-gray-5\/10:focus{outline-color:rgb(var(--gray-5)/.1)}.focus\:outline-gray-5\/100:focus{outline-color:rgb(var(--gray-5)/1)}.focus\:outline-gray-5\/20:focus{outline-color:rgb(var(--gray-5)/.2)}.focus\:outline-gray-5\/25:focus{outline-color:rgb(var(--gray-5)/.25)}.focus\:outline-gray-5\/30:focus{outline-color:rgb(var(--gray-5)/.3)}.focus\:outline-gray-5\/40:focus{outline-color:rgb(var(--gray-5)/.4)}.focus\:outline-gray-5\/5:focus{outline-color:rgb(var(--gray-5)/.05)}.focus\:outline-gray-5\/50:focus{outline-color:rgb(var(--gray-5)/.5)}.focus\:outline-gray-5\/60:focus{outline-color:rgb(var(--gray-5)/.6)}.focus\:outline-gray-5\/70:focus{outline-color:rgb(var(--gray-5)/.7)}.focus\:outline-gray-5\/75:focus{outline-color:rgb(var(--gray-5)/.75)}.focus\:outline-gray-5\/80:focus{outline-color:rgb(var(--gray-5)/.8)}.focus\:outline-gray-5\/90:focus{outline-color:rgb(var(--gray-5)/.9)}.focus\:outline-gray-5\/95:focus{outline-color:rgb(var(--gray-5)/.95)}.focus\:outline-gray-6\/0:focus{outline-color:rgb(var(--gray-6)/0)}.focus\:outline-gray-6\/10:focus{outline-color:rgb(var(--gray-6)/.1)}.focus\:outline-gray-6\/100:focus{outline-color:rgb(var(--gray-6)/1)}.focus\:outline-gray-6\/20:focus{outline-color:rgb(var(--gray-6)/.2)}.focus\:outline-gray-6\/25:focus{outline-color:rgb(var(--gray-6)/.25)}.focus\:outline-gray-6\/30:focus{outline-color:rgb(var(--gray-6)/.3)}.focus\:outline-gray-6\/40:focus{outline-color:rgb(var(--gray-6)/.4)}.focus\:outline-gray-6\/5:focus{outline-color:rgb(var(--gray-6)/.05)}.focus\:outline-gray-6\/50:focus{outline-color:rgb(var(--gray-6)/.5)}.focus\:outline-gray-6\/60:focus{outline-color:rgb(var(--gray-6)/.6)}.focus\:outline-gray-6\/70:focus{outline-color:rgb(var(--gray-6)/.7)}.focus\:outline-gray-6\/75:focus{outline-color:rgb(var(--gray-6)/.75)}.focus\:outline-gray-6\/80:focus{outline-color:rgb(var(--gray-6)/.8)}.focus\:outline-gray-6\/90:focus{outline-color:rgb(var(--gray-6)/.9)}.focus\:outline-gray-6\/95:focus{outline-color:rgb(var(--gray-6)/.95)}.focus\:outline-gray-7\/0:focus{outline-color:rgb(var(--gray-7)/0)}.focus\:outline-gray-7\/10:focus{outline-color:rgb(var(--gray-7)/.1)}.focus\:outline-gray-7\/100:focus{outline-color:rgb(var(--gray-7)/1)}.focus\:outline-gray-7\/20:focus{outline-color:rgb(var(--gray-7)/.2)}.focus\:outline-gray-7\/25:focus{outline-color:rgb(var(--gray-7)/.25)}.focus\:outline-gray-7\/30:focus{outline-color:rgb(var(--gray-7)/.3)}.focus\:outline-gray-7\/40:focus{outline-color:rgb(var(--gray-7)/.4)}.focus\:outline-gray-7\/5:focus{outline-color:rgb(var(--gray-7)/.05)}.focus\:outline-gray-7\/50:focus{outline-color:rgb(var(--gray-7)/.5)}.focus\:outline-gray-7\/60:focus{outline-color:rgb(var(--gray-7)/.6)}.focus\:outline-gray-7\/70:focus{outline-color:rgb(var(--gray-7)/.7)}.focus\:outline-gray-7\/75:focus{outline-color:rgb(var(--gray-7)/.75)}.focus\:outline-gray-7\/80:focus{outline-color:rgb(var(--gray-7)/.8)}.focus\:outline-gray-7\/90:focus{outline-color:rgb(var(--gray-7)/.9)}.focus\:outline-gray-7\/95:focus{outline-color:rgb(var(--gray-7)/.95)}.focus\:outline-gray-8\/0:focus{outline-color:rgb(var(--gray-8)/0)}.focus\:outline-gray-8\/10:focus{outline-color:rgb(var(--gray-8)/.1)}.focus\:outline-gray-8\/100:focus{outline-color:rgb(var(--gray-8)/1)}.focus\:outline-gray-8\/20:focus{outline-color:rgb(var(--gray-8)/.2)}.focus\:outline-gray-8\/25:focus{outline-color:rgb(var(--gray-8)/.25)}.focus\:outline-gray-8\/30:focus{outline-color:rgb(var(--gray-8)/.3)}.focus\:outline-gray-8\/40:focus{outline-color:rgb(var(--gray-8)/.4)}.focus\:outline-gray-8\/5:focus{outline-color:rgb(var(--gray-8)/.05)}.focus\:outline-gray-8\/50:focus{outline-color:rgb(var(--gray-8)/.5)}.focus\:outline-gray-8\/60:focus{outline-color:rgb(var(--gray-8)/.6)}.focus\:outline-gray-8\/70:focus{outline-color:rgb(var(--gray-8)/.7)}.focus\:outline-gray-8\/75:focus{outline-color:rgb(var(--gray-8)/.75)}.focus\:outline-gray-8\/80:focus{outline-color:rgb(var(--gray-8)/.8)}.focus\:outline-gray-8\/90:focus{outline-color:rgb(var(--gray-8)/.9)}.focus\:outline-gray-8\/95:focus{outline-color:rgb(var(--gray-8)/.95)}.focus\:outline-gray-9\/0:focus{outline-color:rgb(var(--gray-9)/0)}.focus\:outline-gray-9\/10:focus{outline-color:rgb(var(--gray-9)/.1)}.focus\:outline-gray-9\/100:focus{outline-color:rgb(var(--gray-9)/1)}.focus\:outline-gray-9\/20:focus{outline-color:rgb(var(--gray-9)/.2)}.focus\:outline-gray-9\/25:focus{outline-color:rgb(var(--gray-9)/.25)}.focus\:outline-gray-9\/30:focus{outline-color:rgb(var(--gray-9)/.3)}.focus\:outline-gray-9\/40:focus{outline-color:rgb(var(--gray-9)/.4)}.focus\:outline-gray-9\/5:focus{outline-color:rgb(var(--gray-9)/.05)}.focus\:outline-gray-9\/50:focus{outline-color:rgb(var(--gray-9)/.5)}.focus\:outline-gray-9\/60:focus{outline-color:rgb(var(--gray-9)/.6)}.focus\:outline-gray-9\/70:focus{outline-color:rgb(var(--gray-9)/.7)}.focus\:outline-gray-9\/75:focus{outline-color:rgb(var(--gray-9)/.75)}.focus\:outline-gray-9\/80:focus{outline-color:rgb(var(--gray-9)/.8)}.focus\:outline-gray-9\/90:focus{outline-color:rgb(var(--gray-9)/.9)}.focus\:outline-gray-9\/95:focus{outline-color:rgb(var(--gray-9)/.95)}.focus\:outline-green-1\/0:focus{outline-color:rgb(var(--green-1)/0)}.focus\:outline-green-1\/10:focus{outline-color:rgb(var(--green-1)/.1)}.focus\:outline-green-1\/100:focus{outline-color:rgb(var(--green-1)/1)}.focus\:outline-green-1\/20:focus{outline-color:rgb(var(--green-1)/.2)}.focus\:outline-green-1\/25:focus{outline-color:rgb(var(--green-1)/.25)}.focus\:outline-green-1\/30:focus{outline-color:rgb(var(--green-1)/.3)}.focus\:outline-green-1\/40:focus{outline-color:rgb(var(--green-1)/.4)}.focus\:outline-green-1\/5:focus{outline-color:rgb(var(--green-1)/.05)}.focus\:outline-green-1\/50:focus{outline-color:rgb(var(--green-1)/.5)}.focus\:outline-green-1\/60:focus{outline-color:rgb(var(--green-1)/.6)}.focus\:outline-green-1\/70:focus{outline-color:rgb(var(--green-1)/.7)}.focus\:outline-green-1\/75:focus{outline-color:rgb(var(--green-1)/.75)}.focus\:outline-green-1\/80:focus{outline-color:rgb(var(--green-1)/.8)}.focus\:outline-green-1\/90:focus{outline-color:rgb(var(--green-1)/.9)}.focus\:outline-green-1\/95:focus{outline-color:rgb(var(--green-1)/.95)}.focus\:outline-green-10\/0:focus{outline-color:rgb(var(--green-10)/0)}.focus\:outline-green-10\/10:focus{outline-color:rgb(var(--green-10)/.1)}.focus\:outline-green-10\/100:focus{outline-color:rgb(var(--green-10)/1)}.focus\:outline-green-10\/20:focus{outline-color:rgb(var(--green-10)/.2)}.focus\:outline-green-10\/25:focus{outline-color:rgb(var(--green-10)/.25)}.focus\:outline-green-10\/30:focus{outline-color:rgb(var(--green-10)/.3)}.focus\:outline-green-10\/40:focus{outline-color:rgb(var(--green-10)/.4)}.focus\:outline-green-10\/5:focus{outline-color:rgb(var(--green-10)/.05)}.focus\:outline-green-10\/50:focus{outline-color:rgb(var(--green-10)/.5)}.focus\:outline-green-10\/60:focus{outline-color:rgb(var(--green-10)/.6)}.focus\:outline-green-10\/70:focus{outline-color:rgb(var(--green-10)/.7)}.focus\:outline-green-10\/75:focus{outline-color:rgb(var(--green-10)/.75)}.focus\:outline-green-10\/80:focus{outline-color:rgb(var(--green-10)/.8)}.focus\:outline-green-10\/90:focus{outline-color:rgb(var(--green-10)/.9)}.focus\:outline-green-10\/95:focus{outline-color:rgb(var(--green-10)/.95)}.focus\:outline-green-2\/0:focus{outline-color:rgb(var(--green-2)/0)}.focus\:outline-green-2\/10:focus{outline-color:rgb(var(--green-2)/.1)}.focus\:outline-green-2\/100:focus{outline-color:rgb(var(--green-2)/1)}.focus\:outline-green-2\/20:focus{outline-color:rgb(var(--green-2)/.2)}.focus\:outline-green-2\/25:focus{outline-color:rgb(var(--green-2)/.25)}.focus\:outline-green-2\/30:focus{outline-color:rgb(var(--green-2)/.3)}.focus\:outline-green-2\/40:focus{outline-color:rgb(var(--green-2)/.4)}.focus\:outline-green-2\/5:focus{outline-color:rgb(var(--green-2)/.05)}.focus\:outline-green-2\/50:focus{outline-color:rgb(var(--green-2)/.5)}.focus\:outline-green-2\/60:focus{outline-color:rgb(var(--green-2)/.6)}.focus\:outline-green-2\/70:focus{outline-color:rgb(var(--green-2)/.7)}.focus\:outline-green-2\/75:focus{outline-color:rgb(var(--green-2)/.75)}.focus\:outline-green-2\/80:focus{outline-color:rgb(var(--green-2)/.8)}.focus\:outline-green-2\/90:focus{outline-color:rgb(var(--green-2)/.9)}.focus\:outline-green-2\/95:focus{outline-color:rgb(var(--green-2)/.95)}.focus\:outline-green-3\/0:focus{outline-color:rgb(var(--green-3)/0)}.focus\:outline-green-3\/10:focus{outline-color:rgb(var(--green-3)/.1)}.focus\:outline-green-3\/100:focus{outline-color:rgb(var(--green-3)/1)}.focus\:outline-green-3\/20:focus{outline-color:rgb(var(--green-3)/.2)}.focus\:outline-green-3\/25:focus{outline-color:rgb(var(--green-3)/.25)}.focus\:outline-green-3\/30:focus{outline-color:rgb(var(--green-3)/.3)}.focus\:outline-green-3\/40:focus{outline-color:rgb(var(--green-3)/.4)}.focus\:outline-green-3\/5:focus{outline-color:rgb(var(--green-3)/.05)}.focus\:outline-green-3\/50:focus{outline-color:rgb(var(--green-3)/.5)}.focus\:outline-green-3\/60:focus{outline-color:rgb(var(--green-3)/.6)}.focus\:outline-green-3\/70:focus{outline-color:rgb(var(--green-3)/.7)}.focus\:outline-green-3\/75:focus{outline-color:rgb(var(--green-3)/.75)}.focus\:outline-green-3\/80:focus{outline-color:rgb(var(--green-3)/.8)}.focus\:outline-green-3\/90:focus{outline-color:rgb(var(--green-3)/.9)}.focus\:outline-green-3\/95:focus{outline-color:rgb(var(--green-3)/.95)}.focus\:outline-green-4\/0:focus{outline-color:rgb(var(--green-4)/0)}.focus\:outline-green-4\/10:focus{outline-color:rgb(var(--green-4)/.1)}.focus\:outline-green-4\/100:focus{outline-color:rgb(var(--green-4)/1)}.focus\:outline-green-4\/20:focus{outline-color:rgb(var(--green-4)/.2)}.focus\:outline-green-4\/25:focus{outline-color:rgb(var(--green-4)/.25)}.focus\:outline-green-4\/30:focus{outline-color:rgb(var(--green-4)/.3)}.focus\:outline-green-4\/40:focus{outline-color:rgb(var(--green-4)/.4)}.focus\:outline-green-4\/5:focus{outline-color:rgb(var(--green-4)/.05)}.focus\:outline-green-4\/50:focus{outline-color:rgb(var(--green-4)/.5)}.focus\:outline-green-4\/60:focus{outline-color:rgb(var(--green-4)/.6)}.focus\:outline-green-4\/70:focus{outline-color:rgb(var(--green-4)/.7)}.focus\:outline-green-4\/75:focus{outline-color:rgb(var(--green-4)/.75)}.focus\:outline-green-4\/80:focus{outline-color:rgb(var(--green-4)/.8)}.focus\:outline-green-4\/90:focus{outline-color:rgb(var(--green-4)/.9)}.focus\:outline-green-4\/95:focus{outline-color:rgb(var(--green-4)/.95)}.focus\:outline-green-5\/0:focus{outline-color:rgb(var(--green-5)/0)}.focus\:outline-green-5\/10:focus{outline-color:rgb(var(--green-5)/.1)}.focus\:outline-green-5\/100:focus{outline-color:rgb(var(--green-5)/1)}.focus\:outline-green-5\/20:focus{outline-color:rgb(var(--green-5)/.2)}.focus\:outline-green-5\/25:focus{outline-color:rgb(var(--green-5)/.25)}.focus\:outline-green-5\/30:focus{outline-color:rgb(var(--green-5)/.3)}.focus\:outline-green-5\/40:focus{outline-color:rgb(var(--green-5)/.4)}.focus\:outline-green-5\/5:focus{outline-color:rgb(var(--green-5)/.05)}.focus\:outline-green-5\/50:focus{outline-color:rgb(var(--green-5)/.5)}.focus\:outline-green-5\/60:focus{outline-color:rgb(var(--green-5)/.6)}.focus\:outline-green-5\/70:focus{outline-color:rgb(var(--green-5)/.7)}.focus\:outline-green-5\/75:focus{outline-color:rgb(var(--green-5)/.75)}.focus\:outline-green-5\/80:focus{outline-color:rgb(var(--green-5)/.8)}.focus\:outline-green-5\/90:focus{outline-color:rgb(var(--green-5)/.9)}.focus\:outline-green-5\/95:focus{outline-color:rgb(var(--green-5)/.95)}.focus\:outline-green-6\/0:focus{outline-color:rgb(var(--green-6)/0)}.focus\:outline-green-6\/10:focus{outline-color:rgb(var(--green-6)/.1)}.focus\:outline-green-6\/100:focus{outline-color:rgb(var(--green-6)/1)}.focus\:outline-green-6\/20:focus{outline-color:rgb(var(--green-6)/.2)}.focus\:outline-green-6\/25:focus{outline-color:rgb(var(--green-6)/.25)}.focus\:outline-green-6\/30:focus{outline-color:rgb(var(--green-6)/.3)}.focus\:outline-green-6\/40:focus{outline-color:rgb(var(--green-6)/.4)}.focus\:outline-green-6\/5:focus{outline-color:rgb(var(--green-6)/.05)}.focus\:outline-green-6\/50:focus{outline-color:rgb(var(--green-6)/.5)}.focus\:outline-green-6\/60:focus{outline-color:rgb(var(--green-6)/.6)}.focus\:outline-green-6\/70:focus{outline-color:rgb(var(--green-6)/.7)}.focus\:outline-green-6\/75:focus{outline-color:rgb(var(--green-6)/.75)}.focus\:outline-green-6\/80:focus{outline-color:rgb(var(--green-6)/.8)}.focus\:outline-green-6\/90:focus{outline-color:rgb(var(--green-6)/.9)}.focus\:outline-green-6\/95:focus{outline-color:rgb(var(--green-6)/.95)}.focus\:outline-green-7\/0:focus{outline-color:rgb(var(--green-7)/0)}.focus\:outline-green-7\/10:focus{outline-color:rgb(var(--green-7)/.1)}.focus\:outline-green-7\/100:focus{outline-color:rgb(var(--green-7)/1)}.focus\:outline-green-7\/20:focus{outline-color:rgb(var(--green-7)/.2)}.focus\:outline-green-7\/25:focus{outline-color:rgb(var(--green-7)/.25)}.focus\:outline-green-7\/30:focus{outline-color:rgb(var(--green-7)/.3)}.focus\:outline-green-7\/40:focus{outline-color:rgb(var(--green-7)/.4)}.focus\:outline-green-7\/5:focus{outline-color:rgb(var(--green-7)/.05)}.focus\:outline-green-7\/50:focus{outline-color:rgb(var(--green-7)/.5)}.focus\:outline-green-7\/60:focus{outline-color:rgb(var(--green-7)/.6)}.focus\:outline-green-7\/70:focus{outline-color:rgb(var(--green-7)/.7)}.focus\:outline-green-7\/75:focus{outline-color:rgb(var(--green-7)/.75)}.focus\:outline-green-7\/80:focus{outline-color:rgb(var(--green-7)/.8)}.focus\:outline-green-7\/90:focus{outline-color:rgb(var(--green-7)/.9)}.focus\:outline-green-7\/95:focus{outline-color:rgb(var(--green-7)/.95)}.focus\:outline-green-8\/0:focus{outline-color:rgb(var(--green-8)/0)}.focus\:outline-green-8\/10:focus{outline-color:rgb(var(--green-8)/.1)}.focus\:outline-green-8\/100:focus{outline-color:rgb(var(--green-8)/1)}.focus\:outline-green-8\/20:focus{outline-color:rgb(var(--green-8)/.2)}.focus\:outline-green-8\/25:focus{outline-color:rgb(var(--green-8)/.25)}.focus\:outline-green-8\/30:focus{outline-color:rgb(var(--green-8)/.3)}.focus\:outline-green-8\/40:focus{outline-color:rgb(var(--green-8)/.4)}.focus\:outline-green-8\/5:focus{outline-color:rgb(var(--green-8)/.05)}.focus\:outline-green-8\/50:focus{outline-color:rgb(var(--green-8)/.5)}.focus\:outline-green-8\/60:focus{outline-color:rgb(var(--green-8)/.6)}.focus\:outline-green-8\/70:focus{outline-color:rgb(var(--green-8)/.7)}.focus\:outline-green-8\/75:focus{outline-color:rgb(var(--green-8)/.75)}.focus\:outline-green-8\/80:focus{outline-color:rgb(var(--green-8)/.8)}.focus\:outline-green-8\/90:focus{outline-color:rgb(var(--green-8)/.9)}.focus\:outline-green-8\/95:focus{outline-color:rgb(var(--green-8)/.95)}.focus\:outline-green-9\/0:focus{outline-color:rgb(var(--green-9)/0)}.focus\:outline-green-9\/10:focus{outline-color:rgb(var(--green-9)/.1)}.focus\:outline-green-9\/100:focus{outline-color:rgb(var(--green-9)/1)}.focus\:outline-green-9\/20:focus{outline-color:rgb(var(--green-9)/.2)}.focus\:outline-green-9\/25:focus{outline-color:rgb(var(--green-9)/.25)}.focus\:outline-green-9\/30:focus{outline-color:rgb(var(--green-9)/.3)}.focus\:outline-green-9\/40:focus{outline-color:rgb(var(--green-9)/.4)}.focus\:outline-green-9\/5:focus{outline-color:rgb(var(--green-9)/.05)}.focus\:outline-green-9\/50:focus{outline-color:rgb(var(--green-9)/.5)}.focus\:outline-green-9\/60:focus{outline-color:rgb(var(--green-9)/.6)}.focus\:outline-green-9\/70:focus{outline-color:rgb(var(--green-9)/.7)}.focus\:outline-green-9\/75:focus{outline-color:rgb(var(--green-9)/.75)}.focus\:outline-green-9\/80:focus{outline-color:rgb(var(--green-9)/.8)}.focus\:outline-green-9\/90:focus{outline-color:rgb(var(--green-9)/.9)}.focus\:outline-green-9\/95:focus{outline-color:rgb(var(--green-9)/.95)}.focus\:outline-pink-1\/0:focus{outline-color:rgb(var(--pink-1)/0)}.focus\:outline-pink-1\/10:focus{outline-color:rgb(var(--pink-1)/.1)}.focus\:outline-pink-1\/100:focus{outline-color:rgb(var(--pink-1)/1)}.focus\:outline-pink-1\/20:focus{outline-color:rgb(var(--pink-1)/.2)}.focus\:outline-pink-1\/25:focus{outline-color:rgb(var(--pink-1)/.25)}.focus\:outline-pink-1\/30:focus{outline-color:rgb(var(--pink-1)/.3)}.focus\:outline-pink-1\/40:focus{outline-color:rgb(var(--pink-1)/.4)}.focus\:outline-pink-1\/5:focus{outline-color:rgb(var(--pink-1)/.05)}.focus\:outline-pink-1\/50:focus{outline-color:rgb(var(--pink-1)/.5)}.focus\:outline-pink-1\/60:focus{outline-color:rgb(var(--pink-1)/.6)}.focus\:outline-pink-1\/70:focus{outline-color:rgb(var(--pink-1)/.7)}.focus\:outline-pink-1\/75:focus{outline-color:rgb(var(--pink-1)/.75)}.focus\:outline-pink-1\/80:focus{outline-color:rgb(var(--pink-1)/.8)}.focus\:outline-pink-1\/90:focus{outline-color:rgb(var(--pink-1)/.9)}.focus\:outline-pink-1\/95:focus{outline-color:rgb(var(--pink-1)/.95)}.focus\:outline-pink-10\/0:focus{outline-color:rgb(var(--pink-10)/0)}.focus\:outline-pink-10\/10:focus{outline-color:rgb(var(--pink-10)/.1)}.focus\:outline-pink-10\/100:focus{outline-color:rgb(var(--pink-10)/1)}.focus\:outline-pink-10\/20:focus{outline-color:rgb(var(--pink-10)/.2)}.focus\:outline-pink-10\/25:focus{outline-color:rgb(var(--pink-10)/.25)}.focus\:outline-pink-10\/30:focus{outline-color:rgb(var(--pink-10)/.3)}.focus\:outline-pink-10\/40:focus{outline-color:rgb(var(--pink-10)/.4)}.focus\:outline-pink-10\/5:focus{outline-color:rgb(var(--pink-10)/.05)}.focus\:outline-pink-10\/50:focus{outline-color:rgb(var(--pink-10)/.5)}.focus\:outline-pink-10\/60:focus{outline-color:rgb(var(--pink-10)/.6)}.focus\:outline-pink-10\/70:focus{outline-color:rgb(var(--pink-10)/.7)}.focus\:outline-pink-10\/75:focus{outline-color:rgb(var(--pink-10)/.75)}.focus\:outline-pink-10\/80:focus{outline-color:rgb(var(--pink-10)/.8)}.focus\:outline-pink-10\/90:focus{outline-color:rgb(var(--pink-10)/.9)}.focus\:outline-pink-10\/95:focus{outline-color:rgb(var(--pink-10)/.95)}.focus\:outline-pink-2\/0:focus{outline-color:rgb(var(--pink-2)/0)}.focus\:outline-pink-2\/10:focus{outline-color:rgb(var(--pink-2)/.1)}.focus\:outline-pink-2\/100:focus{outline-color:rgb(var(--pink-2)/1)}.focus\:outline-pink-2\/20:focus{outline-color:rgb(var(--pink-2)/.2)}.focus\:outline-pink-2\/25:focus{outline-color:rgb(var(--pink-2)/.25)}.focus\:outline-pink-2\/30:focus{outline-color:rgb(var(--pink-2)/.3)}.focus\:outline-pink-2\/40:focus{outline-color:rgb(var(--pink-2)/.4)}.focus\:outline-pink-2\/5:focus{outline-color:rgb(var(--pink-2)/.05)}.focus\:outline-pink-2\/50:focus{outline-color:rgb(var(--pink-2)/.5)}.focus\:outline-pink-2\/60:focus{outline-color:rgb(var(--pink-2)/.6)}.focus\:outline-pink-2\/70:focus{outline-color:rgb(var(--pink-2)/.7)}.focus\:outline-pink-2\/75:focus{outline-color:rgb(var(--pink-2)/.75)}.focus\:outline-pink-2\/80:focus{outline-color:rgb(var(--pink-2)/.8)}.focus\:outline-pink-2\/90:focus{outline-color:rgb(var(--pink-2)/.9)}.focus\:outline-pink-2\/95:focus{outline-color:rgb(var(--pink-2)/.95)}.focus\:outline-pink-3\/0:focus{outline-color:rgb(var(--pink-3)/0)}.focus\:outline-pink-3\/10:focus{outline-color:rgb(var(--pink-3)/.1)}.focus\:outline-pink-3\/100:focus{outline-color:rgb(var(--pink-3)/1)}.focus\:outline-pink-3\/20:focus{outline-color:rgb(var(--pink-3)/.2)}.focus\:outline-pink-3\/25:focus{outline-color:rgb(var(--pink-3)/.25)}.focus\:outline-pink-3\/30:focus{outline-color:rgb(var(--pink-3)/.3)}.focus\:outline-pink-3\/40:focus{outline-color:rgb(var(--pink-3)/.4)}.focus\:outline-pink-3\/5:focus{outline-color:rgb(var(--pink-3)/.05)}.focus\:outline-pink-3\/50:focus{outline-color:rgb(var(--pink-3)/.5)}.focus\:outline-pink-3\/60:focus{outline-color:rgb(var(--pink-3)/.6)}.focus\:outline-pink-3\/70:focus{outline-color:rgb(var(--pink-3)/.7)}.focus\:outline-pink-3\/75:focus{outline-color:rgb(var(--pink-3)/.75)}.focus\:outline-pink-3\/80:focus{outline-color:rgb(var(--pink-3)/.8)}.focus\:outline-pink-3\/90:focus{outline-color:rgb(var(--pink-3)/.9)}.focus\:outline-pink-3\/95:focus{outline-color:rgb(var(--pink-3)/.95)}.focus\:outline-pink-4\/0:focus{outline-color:rgb(var(--pink-4)/0)}.focus\:outline-pink-4\/10:focus{outline-color:rgb(var(--pink-4)/.1)}.focus\:outline-pink-4\/100:focus{outline-color:rgb(var(--pink-4)/1)}.focus\:outline-pink-4\/20:focus{outline-color:rgb(var(--pink-4)/.2)}.focus\:outline-pink-4\/25:focus{outline-color:rgb(var(--pink-4)/.25)}.focus\:outline-pink-4\/30:focus{outline-color:rgb(var(--pink-4)/.3)}.focus\:outline-pink-4\/40:focus{outline-color:rgb(var(--pink-4)/.4)}.focus\:outline-pink-4\/5:focus{outline-color:rgb(var(--pink-4)/.05)}.focus\:outline-pink-4\/50:focus{outline-color:rgb(var(--pink-4)/.5)}.focus\:outline-pink-4\/60:focus{outline-color:rgb(var(--pink-4)/.6)}.focus\:outline-pink-4\/70:focus{outline-color:rgb(var(--pink-4)/.7)}.focus\:outline-pink-4\/75:focus{outline-color:rgb(var(--pink-4)/.75)}.focus\:outline-pink-4\/80:focus{outline-color:rgb(var(--pink-4)/.8)}.focus\:outline-pink-4\/90:focus{outline-color:rgb(var(--pink-4)/.9)}.focus\:outline-pink-4\/95:focus{outline-color:rgb(var(--pink-4)/.95)}.focus\:outline-pink-5\/0:focus{outline-color:rgb(var(--pink-5)/0)}.focus\:outline-pink-5\/10:focus{outline-color:rgb(var(--pink-5)/.1)}.focus\:outline-pink-5\/100:focus{outline-color:rgb(var(--pink-5)/1)}.focus\:outline-pink-5\/20:focus{outline-color:rgb(var(--pink-5)/.2)}.focus\:outline-pink-5\/25:focus{outline-color:rgb(var(--pink-5)/.25)}.focus\:outline-pink-5\/30:focus{outline-color:rgb(var(--pink-5)/.3)}.focus\:outline-pink-5\/40:focus{outline-color:rgb(var(--pink-5)/.4)}.focus\:outline-pink-5\/5:focus{outline-color:rgb(var(--pink-5)/.05)}.focus\:outline-pink-5\/50:focus{outline-color:rgb(var(--pink-5)/.5)}.focus\:outline-pink-5\/60:focus{outline-color:rgb(var(--pink-5)/.6)}.focus\:outline-pink-5\/70:focus{outline-color:rgb(var(--pink-5)/.7)}.focus\:outline-pink-5\/75:focus{outline-color:rgb(var(--pink-5)/.75)}.focus\:outline-pink-5\/80:focus{outline-color:rgb(var(--pink-5)/.8)}.focus\:outline-pink-5\/90:focus{outline-color:rgb(var(--pink-5)/.9)}.focus\:outline-pink-5\/95:focus{outline-color:rgb(var(--pink-5)/.95)}.focus\:outline-pink-6\/0:focus{outline-color:rgb(var(--pink-6)/0)}.focus\:outline-pink-6\/10:focus{outline-color:rgb(var(--pink-6)/.1)}.focus\:outline-pink-6\/100:focus{outline-color:rgb(var(--pink-6)/1)}.focus\:outline-pink-6\/20:focus{outline-color:rgb(var(--pink-6)/.2)}.focus\:outline-pink-6\/25:focus{outline-color:rgb(var(--pink-6)/.25)}.focus\:outline-pink-6\/30:focus{outline-color:rgb(var(--pink-6)/.3)}.focus\:outline-pink-6\/40:focus{outline-color:rgb(var(--pink-6)/.4)}.focus\:outline-pink-6\/5:focus{outline-color:rgb(var(--pink-6)/.05)}.focus\:outline-pink-6\/50:focus{outline-color:rgb(var(--pink-6)/.5)}.focus\:outline-pink-6\/60:focus{outline-color:rgb(var(--pink-6)/.6)}.focus\:outline-pink-6\/70:focus{outline-color:rgb(var(--pink-6)/.7)}.focus\:outline-pink-6\/75:focus{outline-color:rgb(var(--pink-6)/.75)}.focus\:outline-pink-6\/80:focus{outline-color:rgb(var(--pink-6)/.8)}.focus\:outline-pink-6\/90:focus{outline-color:rgb(var(--pink-6)/.9)}.focus\:outline-pink-6\/95:focus{outline-color:rgb(var(--pink-6)/.95)}.focus\:outline-pink-7\/0:focus{outline-color:rgb(var(--pink-7)/0)}.focus\:outline-pink-7\/10:focus{outline-color:rgb(var(--pink-7)/.1)}.focus\:outline-pink-7\/100:focus{outline-color:rgb(var(--pink-7)/1)}.focus\:outline-pink-7\/20:focus{outline-color:rgb(var(--pink-7)/.2)}.focus\:outline-pink-7\/25:focus{outline-color:rgb(var(--pink-7)/.25)}.focus\:outline-pink-7\/30:focus{outline-color:rgb(var(--pink-7)/.3)}.focus\:outline-pink-7\/40:focus{outline-color:rgb(var(--pink-7)/.4)}.focus\:outline-pink-7\/5:focus{outline-color:rgb(var(--pink-7)/.05)}.focus\:outline-pink-7\/50:focus{outline-color:rgb(var(--pink-7)/.5)}.focus\:outline-pink-7\/60:focus{outline-color:rgb(var(--pink-7)/.6)}.focus\:outline-pink-7\/70:focus{outline-color:rgb(var(--pink-7)/.7)}.focus\:outline-pink-7\/75:focus{outline-color:rgb(var(--pink-7)/.75)}.focus\:outline-pink-7\/80:focus{outline-color:rgb(var(--pink-7)/.8)}.focus\:outline-pink-7\/90:focus{outline-color:rgb(var(--pink-7)/.9)}.focus\:outline-pink-7\/95:focus{outline-color:rgb(var(--pink-7)/.95)}.focus\:outline-pink-8\/0:focus{outline-color:rgb(var(--pink-8)/0)}.focus\:outline-pink-8\/10:focus{outline-color:rgb(var(--pink-8)/.1)}.focus\:outline-pink-8\/100:focus{outline-color:rgb(var(--pink-8)/1)}.focus\:outline-pink-8\/20:focus{outline-color:rgb(var(--pink-8)/.2)}.focus\:outline-pink-8\/25:focus{outline-color:rgb(var(--pink-8)/.25)}.focus\:outline-pink-8\/30:focus{outline-color:rgb(var(--pink-8)/.3)}.focus\:outline-pink-8\/40:focus{outline-color:rgb(var(--pink-8)/.4)}.focus\:outline-pink-8\/5:focus{outline-color:rgb(var(--pink-8)/.05)}.focus\:outline-pink-8\/50:focus{outline-color:rgb(var(--pink-8)/.5)}.focus\:outline-pink-8\/60:focus{outline-color:rgb(var(--pink-8)/.6)}.focus\:outline-pink-8\/70:focus{outline-color:rgb(var(--pink-8)/.7)}.focus\:outline-pink-8\/75:focus{outline-color:rgb(var(--pink-8)/.75)}.focus\:outline-pink-8\/80:focus{outline-color:rgb(var(--pink-8)/.8)}.focus\:outline-pink-8\/90:focus{outline-color:rgb(var(--pink-8)/.9)}.focus\:outline-pink-8\/95:focus{outline-color:rgb(var(--pink-8)/.95)}.focus\:outline-pink-9\/0:focus{outline-color:rgb(var(--pink-9)/0)}.focus\:outline-pink-9\/10:focus{outline-color:rgb(var(--pink-9)/.1)}.focus\:outline-pink-9\/100:focus{outline-color:rgb(var(--pink-9)/1)}.focus\:outline-pink-9\/20:focus{outline-color:rgb(var(--pink-9)/.2)}.focus\:outline-pink-9\/25:focus{outline-color:rgb(var(--pink-9)/.25)}.focus\:outline-pink-9\/30:focus{outline-color:rgb(var(--pink-9)/.3)}.focus\:outline-pink-9\/40:focus{outline-color:rgb(var(--pink-9)/.4)}.focus\:outline-pink-9\/5:focus{outline-color:rgb(var(--pink-9)/.05)}.focus\:outline-pink-9\/50:focus{outline-color:rgb(var(--pink-9)/.5)}.focus\:outline-pink-9\/60:focus{outline-color:rgb(var(--pink-9)/.6)}.focus\:outline-pink-9\/70:focus{outline-color:rgb(var(--pink-9)/.7)}.focus\:outline-pink-9\/75:focus{outline-color:rgb(var(--pink-9)/.75)}.focus\:outline-pink-9\/80:focus{outline-color:rgb(var(--pink-9)/.8)}.focus\:outline-pink-9\/90:focus{outline-color:rgb(var(--pink-9)/.9)}.focus\:outline-pink-9\/95:focus{outline-color:rgb(var(--pink-9)/.95)}.focus\:outline-primary:focus{outline-color:rgb(var(--primary))}.focus\:outline-primary\/0:focus{outline-color:rgb(var(--primary)/0)}.focus\:outline-primary\/10:focus{outline-color:rgb(var(--primary)/.1)}.focus\:outline-primary\/100:focus{outline-color:rgb(var(--primary)/1)}.focus\:outline-primary\/20:focus{outline-color:rgb(var(--primary)/.2)}.focus\:outline-primary\/25:focus{outline-color:rgb(var(--primary)/.25)}.focus\:outline-primary\/30:focus{outline-color:rgb(var(--primary)/.3)}.focus\:outline-primary\/40:focus{outline-color:rgb(var(--primary)/.4)}.focus\:outline-primary\/5:focus{outline-color:rgb(var(--primary)/.05)}.focus\:outline-primary\/50:focus{outline-color:rgb(var(--primary)/.5)}.focus\:outline-primary\/60:focus{outline-color:rgb(var(--primary)/.6)}.focus\:outline-primary\/70:focus{outline-color:rgb(var(--primary)/.7)}.focus\:outline-primary\/75:focus{outline-color:rgb(var(--primary)/.75)}.focus\:outline-primary\/80:focus{outline-color:rgb(var(--primary)/.8)}.focus\:outline-primary\/90:focus{outline-color:rgb(var(--primary)/.9)}.focus\:outline-primary\/95:focus{outline-color:rgb(var(--primary)/.95)}.focus\:outline-purple-1\/0:focus{outline-color:rgb(var(--purple-1)/0)}.focus\:outline-purple-1\/10:focus{outline-color:rgb(var(--purple-1)/.1)}.focus\:outline-purple-1\/100:focus{outline-color:rgb(var(--purple-1)/1)}.focus\:outline-purple-1\/20:focus{outline-color:rgb(var(--purple-1)/.2)}.focus\:outline-purple-1\/25:focus{outline-color:rgb(var(--purple-1)/.25)}.focus\:outline-purple-1\/30:focus{outline-color:rgb(var(--purple-1)/.3)}.focus\:outline-purple-1\/40:focus{outline-color:rgb(var(--purple-1)/.4)}.focus\:outline-purple-1\/5:focus{outline-color:rgb(var(--purple-1)/.05)}.focus\:outline-purple-1\/50:focus{outline-color:rgb(var(--purple-1)/.5)}.focus\:outline-purple-1\/60:focus{outline-color:rgb(var(--purple-1)/.6)}.focus\:outline-purple-1\/70:focus{outline-color:rgb(var(--purple-1)/.7)}.focus\:outline-purple-1\/75:focus{outline-color:rgb(var(--purple-1)/.75)}.focus\:outline-purple-1\/80:focus{outline-color:rgb(var(--purple-1)/.8)}.focus\:outline-purple-1\/90:focus{outline-color:rgb(var(--purple-1)/.9)}.focus\:outline-purple-1\/95:focus{outline-color:rgb(var(--purple-1)/.95)}.focus\:outline-purple-10\/0:focus{outline-color:rgb(var(--purple-10)/0)}.focus\:outline-purple-10\/10:focus{outline-color:rgb(var(--purple-10)/.1)}.focus\:outline-purple-10\/100:focus{outline-color:rgb(var(--purple-10)/1)}.focus\:outline-purple-10\/20:focus{outline-color:rgb(var(--purple-10)/.2)}.focus\:outline-purple-10\/25:focus{outline-color:rgb(var(--purple-10)/.25)}.focus\:outline-purple-10\/30:focus{outline-color:rgb(var(--purple-10)/.3)}.focus\:outline-purple-10\/40:focus{outline-color:rgb(var(--purple-10)/.4)}.focus\:outline-purple-10\/5:focus{outline-color:rgb(var(--purple-10)/.05)}.focus\:outline-purple-10\/50:focus{outline-color:rgb(var(--purple-10)/.5)}.focus\:outline-purple-10\/60:focus{outline-color:rgb(var(--purple-10)/.6)}.focus\:outline-purple-10\/70:focus{outline-color:rgb(var(--purple-10)/.7)}.focus\:outline-purple-10\/75:focus{outline-color:rgb(var(--purple-10)/.75)}.focus\:outline-purple-10\/80:focus{outline-color:rgb(var(--purple-10)/.8)}.focus\:outline-purple-10\/90:focus{outline-color:rgb(var(--purple-10)/.9)}.focus\:outline-purple-10\/95:focus{outline-color:rgb(var(--purple-10)/.95)}.focus\:outline-purple-2\/0:focus{outline-color:rgb(var(--purple-2)/0)}.focus\:outline-purple-2\/10:focus{outline-color:rgb(var(--purple-2)/.1)}.focus\:outline-purple-2\/100:focus{outline-color:rgb(var(--purple-2)/1)}.focus\:outline-purple-2\/20:focus{outline-color:rgb(var(--purple-2)/.2)}.focus\:outline-purple-2\/25:focus{outline-color:rgb(var(--purple-2)/.25)}.focus\:outline-purple-2\/30:focus{outline-color:rgb(var(--purple-2)/.3)}.focus\:outline-purple-2\/40:focus{outline-color:rgb(var(--purple-2)/.4)}.focus\:outline-purple-2\/5:focus{outline-color:rgb(var(--purple-2)/.05)}.focus\:outline-purple-2\/50:focus{outline-color:rgb(var(--purple-2)/.5)}.focus\:outline-purple-2\/60:focus{outline-color:rgb(var(--purple-2)/.6)}.focus\:outline-purple-2\/70:focus{outline-color:rgb(var(--purple-2)/.7)}.focus\:outline-purple-2\/75:focus{outline-color:rgb(var(--purple-2)/.75)}.focus\:outline-purple-2\/80:focus{outline-color:rgb(var(--purple-2)/.8)}.focus\:outline-purple-2\/90:focus{outline-color:rgb(var(--purple-2)/.9)}.focus\:outline-purple-2\/95:focus{outline-color:rgb(var(--purple-2)/.95)}.focus\:outline-purple-3\/0:focus{outline-color:rgb(var(--purple-3)/0)}.focus\:outline-purple-3\/10:focus{outline-color:rgb(var(--purple-3)/.1)}.focus\:outline-purple-3\/100:focus{outline-color:rgb(var(--purple-3)/1)}.focus\:outline-purple-3\/20:focus{outline-color:rgb(var(--purple-3)/.2)}.focus\:outline-purple-3\/25:focus{outline-color:rgb(var(--purple-3)/.25)}.focus\:outline-purple-3\/30:focus{outline-color:rgb(var(--purple-3)/.3)}.focus\:outline-purple-3\/40:focus{outline-color:rgb(var(--purple-3)/.4)}.focus\:outline-purple-3\/5:focus{outline-color:rgb(var(--purple-3)/.05)}.focus\:outline-purple-3\/50:focus{outline-color:rgb(var(--purple-3)/.5)}.focus\:outline-purple-3\/60:focus{outline-color:rgb(var(--purple-3)/.6)}.focus\:outline-purple-3\/70:focus{outline-color:rgb(var(--purple-3)/.7)}.focus\:outline-purple-3\/75:focus{outline-color:rgb(var(--purple-3)/.75)}.focus\:outline-purple-3\/80:focus{outline-color:rgb(var(--purple-3)/.8)}.focus\:outline-purple-3\/90:focus{outline-color:rgb(var(--purple-3)/.9)}.focus\:outline-purple-3\/95:focus{outline-color:rgb(var(--purple-3)/.95)}.focus\:outline-purple-4\/0:focus{outline-color:rgb(var(--purple-4)/0)}.focus\:outline-purple-4\/10:focus{outline-color:rgb(var(--purple-4)/.1)}.focus\:outline-purple-4\/100:focus{outline-color:rgb(var(--purple-4)/1)}.focus\:outline-purple-4\/20:focus{outline-color:rgb(var(--purple-4)/.2)}.focus\:outline-purple-4\/25:focus{outline-color:rgb(var(--purple-4)/.25)}.focus\:outline-purple-4\/30:focus{outline-color:rgb(var(--purple-4)/.3)}.focus\:outline-purple-4\/40:focus{outline-color:rgb(var(--purple-4)/.4)}.focus\:outline-purple-4\/5:focus{outline-color:rgb(var(--purple-4)/.05)}.focus\:outline-purple-4\/50:focus{outline-color:rgb(var(--purple-4)/.5)}.focus\:outline-purple-4\/60:focus{outline-color:rgb(var(--purple-4)/.6)}.focus\:outline-purple-4\/70:focus{outline-color:rgb(var(--purple-4)/.7)}.focus\:outline-purple-4\/75:focus{outline-color:rgb(var(--purple-4)/.75)}.focus\:outline-purple-4\/80:focus{outline-color:rgb(var(--purple-4)/.8)}.focus\:outline-purple-4\/90:focus{outline-color:rgb(var(--purple-4)/.9)}.focus\:outline-purple-4\/95:focus{outline-color:rgb(var(--purple-4)/.95)}.focus\:outline-purple-5\/0:focus{outline-color:rgb(var(--purple-5)/0)}.focus\:outline-purple-5\/10:focus{outline-color:rgb(var(--purple-5)/.1)}.focus\:outline-purple-5\/100:focus{outline-color:rgb(var(--purple-5)/1)}.focus\:outline-purple-5\/20:focus{outline-color:rgb(var(--purple-5)/.2)}.focus\:outline-purple-5\/25:focus{outline-color:rgb(var(--purple-5)/.25)}.focus\:outline-purple-5\/30:focus{outline-color:rgb(var(--purple-5)/.3)}.focus\:outline-purple-5\/40:focus{outline-color:rgb(var(--purple-5)/.4)}.focus\:outline-purple-5\/5:focus{outline-color:rgb(var(--purple-5)/.05)}.focus\:outline-purple-5\/50:focus{outline-color:rgb(var(--purple-5)/.5)}.focus\:outline-purple-5\/60:focus{outline-color:rgb(var(--purple-5)/.6)}.focus\:outline-purple-5\/70:focus{outline-color:rgb(var(--purple-5)/.7)}.focus\:outline-purple-5\/75:focus{outline-color:rgb(var(--purple-5)/.75)}.focus\:outline-purple-5\/80:focus{outline-color:rgb(var(--purple-5)/.8)}.focus\:outline-purple-5\/90:focus{outline-color:rgb(var(--purple-5)/.9)}.focus\:outline-purple-5\/95:focus{outline-color:rgb(var(--purple-5)/.95)}.focus\:outline-purple-6\/0:focus{outline-color:rgb(var(--purple-6)/0)}.focus\:outline-purple-6\/10:focus{outline-color:rgb(var(--purple-6)/.1)}.focus\:outline-purple-6\/100:focus{outline-color:rgb(var(--purple-6)/1)}.focus\:outline-purple-6\/20:focus{outline-color:rgb(var(--purple-6)/.2)}.focus\:outline-purple-6\/25:focus{outline-color:rgb(var(--purple-6)/.25)}.focus\:outline-purple-6\/30:focus{outline-color:rgb(var(--purple-6)/.3)}.focus\:outline-purple-6\/40:focus{outline-color:rgb(var(--purple-6)/.4)}.focus\:outline-purple-6\/5:focus{outline-color:rgb(var(--purple-6)/.05)}.focus\:outline-purple-6\/50:focus{outline-color:rgb(var(--purple-6)/.5)}.focus\:outline-purple-6\/60:focus{outline-color:rgb(var(--purple-6)/.6)}.focus\:outline-purple-6\/70:focus{outline-color:rgb(var(--purple-6)/.7)}.focus\:outline-purple-6\/75:focus{outline-color:rgb(var(--purple-6)/.75)}.focus\:outline-purple-6\/80:focus{outline-color:rgb(var(--purple-6)/.8)}.focus\:outline-purple-6\/90:focus{outline-color:rgb(var(--purple-6)/.9)}.focus\:outline-purple-6\/95:focus{outline-color:rgb(var(--purple-6)/.95)}.focus\:outline-purple-7\/0:focus{outline-color:rgb(var(--purple-7)/0)}.focus\:outline-purple-7\/10:focus{outline-color:rgb(var(--purple-7)/.1)}.focus\:outline-purple-7\/100:focus{outline-color:rgb(var(--purple-7)/1)}.focus\:outline-purple-7\/20:focus{outline-color:rgb(var(--purple-7)/.2)}.focus\:outline-purple-7\/25:focus{outline-color:rgb(var(--purple-7)/.25)}.focus\:outline-purple-7\/30:focus{outline-color:rgb(var(--purple-7)/.3)}.focus\:outline-purple-7\/40:focus{outline-color:rgb(var(--purple-7)/.4)}.focus\:outline-purple-7\/5:focus{outline-color:rgb(var(--purple-7)/.05)}.focus\:outline-purple-7\/50:focus{outline-color:rgb(var(--purple-7)/.5)}.focus\:outline-purple-7\/60:focus{outline-color:rgb(var(--purple-7)/.6)}.focus\:outline-purple-7\/70:focus{outline-color:rgb(var(--purple-7)/.7)}.focus\:outline-purple-7\/75:focus{outline-color:rgb(var(--purple-7)/.75)}.focus\:outline-purple-7\/80:focus{outline-color:rgb(var(--purple-7)/.8)}.focus\:outline-purple-7\/90:focus{outline-color:rgb(var(--purple-7)/.9)}.focus\:outline-purple-7\/95:focus{outline-color:rgb(var(--purple-7)/.95)}.focus\:outline-purple-8\/0:focus{outline-color:rgb(var(--purple-8)/0)}.focus\:outline-purple-8\/10:focus{outline-color:rgb(var(--purple-8)/.1)}.focus\:outline-purple-8\/100:focus{outline-color:rgb(var(--purple-8)/1)}.focus\:outline-purple-8\/20:focus{outline-color:rgb(var(--purple-8)/.2)}.focus\:outline-purple-8\/25:focus{outline-color:rgb(var(--purple-8)/.25)}.focus\:outline-purple-8\/30:focus{outline-color:rgb(var(--purple-8)/.3)}.focus\:outline-purple-8\/40:focus{outline-color:rgb(var(--purple-8)/.4)}.focus\:outline-purple-8\/5:focus{outline-color:rgb(var(--purple-8)/.05)}.focus\:outline-purple-8\/50:focus{outline-color:rgb(var(--purple-8)/.5)}.focus\:outline-purple-8\/60:focus{outline-color:rgb(var(--purple-8)/.6)}.focus\:outline-purple-8\/70:focus{outline-color:rgb(var(--purple-8)/.7)}.focus\:outline-purple-8\/75:focus{outline-color:rgb(var(--purple-8)/.75)}.focus\:outline-purple-8\/80:focus{outline-color:rgb(var(--purple-8)/.8)}.focus\:outline-purple-8\/90:focus{outline-color:rgb(var(--purple-8)/.9)}.focus\:outline-purple-8\/95:focus{outline-color:rgb(var(--purple-8)/.95)}.focus\:outline-purple-9\/0:focus{outline-color:rgb(var(--purple-9)/0)}.focus\:outline-purple-9\/10:focus{outline-color:rgb(var(--purple-9)/.1)}.focus\:outline-purple-9\/100:focus{outline-color:rgb(var(--purple-9)/1)}.focus\:outline-purple-9\/20:focus{outline-color:rgb(var(--purple-9)/.2)}.focus\:outline-purple-9\/25:focus{outline-color:rgb(var(--purple-9)/.25)}.focus\:outline-purple-9\/30:focus{outline-color:rgb(var(--purple-9)/.3)}.focus\:outline-purple-9\/40:focus{outline-color:rgb(var(--purple-9)/.4)}.focus\:outline-purple-9\/5:focus{outline-color:rgb(var(--purple-9)/.05)}.focus\:outline-purple-9\/50:focus{outline-color:rgb(var(--purple-9)/.5)}.focus\:outline-purple-9\/60:focus{outline-color:rgb(var(--purple-9)/.6)}.focus\:outline-purple-9\/70:focus{outline-color:rgb(var(--purple-9)/.7)}.focus\:outline-purple-9\/75:focus{outline-color:rgb(var(--purple-9)/.75)}.focus\:outline-purple-9\/80:focus{outline-color:rgb(var(--purple-9)/.8)}.focus\:outline-purple-9\/90:focus{outline-color:rgb(var(--purple-9)/.9)}.focus\:outline-purple-9\/95:focus{outline-color:rgb(var(--purple-9)/.95)}.focus\:outline-red-1\/0:focus{outline-color:rgb(var(--red-1)/0)}.focus\:outline-red-1\/10:focus{outline-color:rgb(var(--red-1)/.1)}.focus\:outline-red-1\/100:focus{outline-color:rgb(var(--red-1)/1)}.focus\:outline-red-1\/20:focus{outline-color:rgb(var(--red-1)/.2)}.focus\:outline-red-1\/25:focus{outline-color:rgb(var(--red-1)/.25)}.focus\:outline-red-1\/30:focus{outline-color:rgb(var(--red-1)/.3)}.focus\:outline-red-1\/40:focus{outline-color:rgb(var(--red-1)/.4)}.focus\:outline-red-1\/5:focus{outline-color:rgb(var(--red-1)/.05)}.focus\:outline-red-1\/50:focus{outline-color:rgb(var(--red-1)/.5)}.focus\:outline-red-1\/60:focus{outline-color:rgb(var(--red-1)/.6)}.focus\:outline-red-1\/70:focus{outline-color:rgb(var(--red-1)/.7)}.focus\:outline-red-1\/75:focus{outline-color:rgb(var(--red-1)/.75)}.focus\:outline-red-1\/80:focus{outline-color:rgb(var(--red-1)/.8)}.focus\:outline-red-1\/90:focus{outline-color:rgb(var(--red-1)/.9)}.focus\:outline-red-1\/95:focus{outline-color:rgb(var(--red-1)/.95)}.focus\:outline-red-10\/0:focus{outline-color:rgb(var(--red-10)/0)}.focus\:outline-red-10\/10:focus{outline-color:rgb(var(--red-10)/.1)}.focus\:outline-red-10\/100:focus{outline-color:rgb(var(--red-10)/1)}.focus\:outline-red-10\/20:focus{outline-color:rgb(var(--red-10)/.2)}.focus\:outline-red-10\/25:focus{outline-color:rgb(var(--red-10)/.25)}.focus\:outline-red-10\/30:focus{outline-color:rgb(var(--red-10)/.3)}.focus\:outline-red-10\/40:focus{outline-color:rgb(var(--red-10)/.4)}.focus\:outline-red-10\/5:focus{outline-color:rgb(var(--red-10)/.05)}.focus\:outline-red-10\/50:focus{outline-color:rgb(var(--red-10)/.5)}.focus\:outline-red-10\/60:focus{outline-color:rgb(var(--red-10)/.6)}.focus\:outline-red-10\/70:focus{outline-color:rgb(var(--red-10)/.7)}.focus\:outline-red-10\/75:focus{outline-color:rgb(var(--red-10)/.75)}.focus\:outline-red-10\/80:focus{outline-color:rgb(var(--red-10)/.8)}.focus\:outline-red-10\/90:focus{outline-color:rgb(var(--red-10)/.9)}.focus\:outline-red-10\/95:focus{outline-color:rgb(var(--red-10)/.95)}.focus\:outline-red-2\/0:focus{outline-color:rgb(var(--red-2)/0)}.focus\:outline-red-2\/10:focus{outline-color:rgb(var(--red-2)/.1)}.focus\:outline-red-2\/100:focus{outline-color:rgb(var(--red-2)/1)}.focus\:outline-red-2\/20:focus{outline-color:rgb(var(--red-2)/.2)}.focus\:outline-red-2\/25:focus{outline-color:rgb(var(--red-2)/.25)}.focus\:outline-red-2\/30:focus{outline-color:rgb(var(--red-2)/.3)}.focus\:outline-red-2\/40:focus{outline-color:rgb(var(--red-2)/.4)}.focus\:outline-red-2\/5:focus{outline-color:rgb(var(--red-2)/.05)}.focus\:outline-red-2\/50:focus{outline-color:rgb(var(--red-2)/.5)}.focus\:outline-red-2\/60:focus{outline-color:rgb(var(--red-2)/.6)}.focus\:outline-red-2\/70:focus{outline-color:rgb(var(--red-2)/.7)}.focus\:outline-red-2\/75:focus{outline-color:rgb(var(--red-2)/.75)}.focus\:outline-red-2\/80:focus{outline-color:rgb(var(--red-2)/.8)}.focus\:outline-red-2\/90:focus{outline-color:rgb(var(--red-2)/.9)}.focus\:outline-red-2\/95:focus{outline-color:rgb(var(--red-2)/.95)}.focus\:outline-red-3\/0:focus{outline-color:rgb(var(--red-3)/0)}.focus\:outline-red-3\/10:focus{outline-color:rgb(var(--red-3)/.1)}.focus\:outline-red-3\/100:focus{outline-color:rgb(var(--red-3)/1)}.focus\:outline-red-3\/20:focus{outline-color:rgb(var(--red-3)/.2)}.focus\:outline-red-3\/25:focus{outline-color:rgb(var(--red-3)/.25)}.focus\:outline-red-3\/30:focus{outline-color:rgb(var(--red-3)/.3)}.focus\:outline-red-3\/40:focus{outline-color:rgb(var(--red-3)/.4)}.focus\:outline-red-3\/5:focus{outline-color:rgb(var(--red-3)/.05)}.focus\:outline-red-3\/50:focus{outline-color:rgb(var(--red-3)/.5)}.focus\:outline-red-3\/60:focus{outline-color:rgb(var(--red-3)/.6)}.focus\:outline-red-3\/70:focus{outline-color:rgb(var(--red-3)/.7)}.focus\:outline-red-3\/75:focus{outline-color:rgb(var(--red-3)/.75)}.focus\:outline-red-3\/80:focus{outline-color:rgb(var(--red-3)/.8)}.focus\:outline-red-3\/90:focus{outline-color:rgb(var(--red-3)/.9)}.focus\:outline-red-3\/95:focus{outline-color:rgb(var(--red-3)/.95)}.focus\:outline-red-4\/0:focus{outline-color:rgb(var(--red-4)/0)}.focus\:outline-red-4\/10:focus{outline-color:rgb(var(--red-4)/.1)}.focus\:outline-red-4\/100:focus{outline-color:rgb(var(--red-4)/1)}.focus\:outline-red-4\/20:focus{outline-color:rgb(var(--red-4)/.2)}.focus\:outline-red-4\/25:focus{outline-color:rgb(var(--red-4)/.25)}.focus\:outline-red-4\/30:focus{outline-color:rgb(var(--red-4)/.3)}.focus\:outline-red-4\/40:focus{outline-color:rgb(var(--red-4)/.4)}.focus\:outline-red-4\/5:focus{outline-color:rgb(var(--red-4)/.05)}.focus\:outline-red-4\/50:focus{outline-color:rgb(var(--red-4)/.5)}.focus\:outline-red-4\/60:focus{outline-color:rgb(var(--red-4)/.6)}.focus\:outline-red-4\/70:focus{outline-color:rgb(var(--red-4)/.7)}.focus\:outline-red-4\/75:focus{outline-color:rgb(var(--red-4)/.75)}.focus\:outline-red-4\/80:focus{outline-color:rgb(var(--red-4)/.8)}.focus\:outline-red-4\/90:focus{outline-color:rgb(var(--red-4)/.9)}.focus\:outline-red-4\/95:focus{outline-color:rgb(var(--red-4)/.95)}.focus\:outline-red-5\/0:focus{outline-color:rgb(var(--red-5)/0)}.focus\:outline-red-5\/10:focus{outline-color:rgb(var(--red-5)/.1)}.focus\:outline-red-5\/100:focus{outline-color:rgb(var(--red-5)/1)}.focus\:outline-red-5\/20:focus{outline-color:rgb(var(--red-5)/.2)}.focus\:outline-red-5\/25:focus{outline-color:rgb(var(--red-5)/.25)}.focus\:outline-red-5\/30:focus{outline-color:rgb(var(--red-5)/.3)}.focus\:outline-red-5\/40:focus{outline-color:rgb(var(--red-5)/.4)}.focus\:outline-red-5\/5:focus{outline-color:rgb(var(--red-5)/.05)}.focus\:outline-red-5\/50:focus{outline-color:rgb(var(--red-5)/.5)}.focus\:outline-red-5\/60:focus{outline-color:rgb(var(--red-5)/.6)}.focus\:outline-red-5\/70:focus{outline-color:rgb(var(--red-5)/.7)}.focus\:outline-red-5\/75:focus{outline-color:rgb(var(--red-5)/.75)}.focus\:outline-red-5\/80:focus{outline-color:rgb(var(--red-5)/.8)}.focus\:outline-red-5\/90:focus{outline-color:rgb(var(--red-5)/.9)}.focus\:outline-red-5\/95:focus{outline-color:rgb(var(--red-5)/.95)}.focus\:outline-red-6\/0:focus{outline-color:rgb(var(--red-6)/0)}.focus\:outline-red-6\/10:focus{outline-color:rgb(var(--red-6)/.1)}.focus\:outline-red-6\/100:focus{outline-color:rgb(var(--red-6)/1)}.focus\:outline-red-6\/20:focus{outline-color:rgb(var(--red-6)/.2)}.focus\:outline-red-6\/25:focus{outline-color:rgb(var(--red-6)/.25)}.focus\:outline-red-6\/30:focus{outline-color:rgb(var(--red-6)/.3)}.focus\:outline-red-6\/40:focus{outline-color:rgb(var(--red-6)/.4)}.focus\:outline-red-6\/5:focus{outline-color:rgb(var(--red-6)/.05)}.focus\:outline-red-6\/50:focus{outline-color:rgb(var(--red-6)/.5)}.focus\:outline-red-6\/60:focus{outline-color:rgb(var(--red-6)/.6)}.focus\:outline-red-6\/70:focus{outline-color:rgb(var(--red-6)/.7)}.focus\:outline-red-6\/75:focus{outline-color:rgb(var(--red-6)/.75)}.focus\:outline-red-6\/80:focus{outline-color:rgb(var(--red-6)/.8)}.focus\:outline-red-6\/90:focus{outline-color:rgb(var(--red-6)/.9)}.focus\:outline-red-6\/95:focus{outline-color:rgb(var(--red-6)/.95)}.focus\:outline-red-7\/0:focus{outline-color:rgb(var(--red-7)/0)}.focus\:outline-red-7\/10:focus{outline-color:rgb(var(--red-7)/.1)}.focus\:outline-red-7\/100:focus{outline-color:rgb(var(--red-7)/1)}.focus\:outline-red-7\/20:focus{outline-color:rgb(var(--red-7)/.2)}.focus\:outline-red-7\/25:focus{outline-color:rgb(var(--red-7)/.25)}.focus\:outline-red-7\/30:focus{outline-color:rgb(var(--red-7)/.3)}.focus\:outline-red-7\/40:focus{outline-color:rgb(var(--red-7)/.4)}.focus\:outline-red-7\/5:focus{outline-color:rgb(var(--red-7)/.05)}.focus\:outline-red-7\/50:focus{outline-color:rgb(var(--red-7)/.5)}.focus\:outline-red-7\/60:focus{outline-color:rgb(var(--red-7)/.6)}.focus\:outline-red-7\/70:focus{outline-color:rgb(var(--red-7)/.7)}.focus\:outline-red-7\/75:focus{outline-color:rgb(var(--red-7)/.75)}.focus\:outline-red-7\/80:focus{outline-color:rgb(var(--red-7)/.8)}.focus\:outline-red-7\/90:focus{outline-color:rgb(var(--red-7)/.9)}.focus\:outline-red-7\/95:focus{outline-color:rgb(var(--red-7)/.95)}.focus\:outline-red-8\/0:focus{outline-color:rgb(var(--red-8)/0)}.focus\:outline-red-8\/10:focus{outline-color:rgb(var(--red-8)/.1)}.focus\:outline-red-8\/100:focus{outline-color:rgb(var(--red-8)/1)}.focus\:outline-red-8\/20:focus{outline-color:rgb(var(--red-8)/.2)}.focus\:outline-red-8\/25:focus{outline-color:rgb(var(--red-8)/.25)}.focus\:outline-red-8\/30:focus{outline-color:rgb(var(--red-8)/.3)}.focus\:outline-red-8\/40:focus{outline-color:rgb(var(--red-8)/.4)}.focus\:outline-red-8\/5:focus{outline-color:rgb(var(--red-8)/.05)}.focus\:outline-red-8\/50:focus{outline-color:rgb(var(--red-8)/.5)}.focus\:outline-red-8\/60:focus{outline-color:rgb(var(--red-8)/.6)}.focus\:outline-red-8\/70:focus{outline-color:rgb(var(--red-8)/.7)}.focus\:outline-red-8\/75:focus{outline-color:rgb(var(--red-8)/.75)}.focus\:outline-red-8\/80:focus{outline-color:rgb(var(--red-8)/.8)}.focus\:outline-red-8\/90:focus{outline-color:rgb(var(--red-8)/.9)}.focus\:outline-red-8\/95:focus{outline-color:rgb(var(--red-8)/.95)}.focus\:outline-red-9\/0:focus{outline-color:rgb(var(--red-9)/0)}.focus\:outline-red-9\/10:focus{outline-color:rgb(var(--red-9)/.1)}.focus\:outline-red-9\/100:focus{outline-color:rgb(var(--red-9)/1)}.focus\:outline-red-9\/20:focus{outline-color:rgb(var(--red-9)/.2)}.focus\:outline-red-9\/25:focus{outline-color:rgb(var(--red-9)/.25)}.focus\:outline-red-9\/30:focus{outline-color:rgb(var(--red-9)/.3)}.focus\:outline-red-9\/40:focus{outline-color:rgb(var(--red-9)/.4)}.focus\:outline-red-9\/5:focus{outline-color:rgb(var(--red-9)/.05)}.focus\:outline-red-9\/50:focus{outline-color:rgb(var(--red-9)/.5)}.focus\:outline-red-9\/60:focus{outline-color:rgb(var(--red-9)/.6)}.focus\:outline-red-9\/70:focus{outline-color:rgb(var(--red-9)/.7)}.focus\:outline-red-9\/75:focus{outline-color:rgb(var(--red-9)/.75)}.focus\:outline-red-9\/80:focus{outline-color:rgb(var(--red-9)/.8)}.focus\:outline-red-9\/90:focus{outline-color:rgb(var(--red-9)/.9)}.focus\:outline-red-9\/95:focus{outline-color:rgb(var(--red-9)/.95)}.focus\:outline-secondary:focus{outline-color:rgb(var(--secondary))}.focus\:outline-secondary\/0:focus{outline-color:rgb(var(--secondary)/0)}.focus\:outline-secondary\/10:focus{outline-color:rgb(var(--secondary)/.1)}.focus\:outline-secondary\/100:focus{outline-color:rgb(var(--secondary)/1)}.focus\:outline-secondary\/20:focus{outline-color:rgb(var(--secondary)/.2)}.focus\:outline-secondary\/25:focus{outline-color:rgb(var(--secondary)/.25)}.focus\:outline-secondary\/30:focus{outline-color:rgb(var(--secondary)/.3)}.focus\:outline-secondary\/40:focus{outline-color:rgb(var(--secondary)/.4)}.focus\:outline-secondary\/5:focus{outline-color:rgb(var(--secondary)/.05)}.focus\:outline-secondary\/50:focus{outline-color:rgb(var(--secondary)/.5)}.focus\:outline-secondary\/60:focus{outline-color:rgb(var(--secondary)/.6)}.focus\:outline-secondary\/70:focus{outline-color:rgb(var(--secondary)/.7)}.focus\:outline-secondary\/75:focus{outline-color:rgb(var(--secondary)/.75)}.focus\:outline-secondary\/80:focus{outline-color:rgb(var(--secondary)/.8)}.focus\:outline-secondary\/90:focus{outline-color:rgb(var(--secondary)/.9)}.focus\:outline-secondary\/95:focus{outline-color:rgb(var(--secondary)/.95)}.focus\:outline-slate-1\/0:focus{outline-color:rgb(var(--slate-1)/0)}.focus\:outline-slate-1\/10:focus{outline-color:rgb(var(--slate-1)/.1)}.focus\:outline-slate-1\/100:focus{outline-color:rgb(var(--slate-1)/1)}.focus\:outline-slate-1\/20:focus{outline-color:rgb(var(--slate-1)/.2)}.focus\:outline-slate-1\/25:focus{outline-color:rgb(var(--slate-1)/.25)}.focus\:outline-slate-1\/30:focus{outline-color:rgb(var(--slate-1)/.3)}.focus\:outline-slate-1\/40:focus{outline-color:rgb(var(--slate-1)/.4)}.focus\:outline-slate-1\/5:focus{outline-color:rgb(var(--slate-1)/.05)}.focus\:outline-slate-1\/50:focus{outline-color:rgb(var(--slate-1)/.5)}.focus\:outline-slate-1\/60:focus{outline-color:rgb(var(--slate-1)/.6)}.focus\:outline-slate-1\/70:focus{outline-color:rgb(var(--slate-1)/.7)}.focus\:outline-slate-1\/75:focus{outline-color:rgb(var(--slate-1)/.75)}.focus\:outline-slate-1\/80:focus{outline-color:rgb(var(--slate-1)/.8)}.focus\:outline-slate-1\/90:focus{outline-color:rgb(var(--slate-1)/.9)}.focus\:outline-slate-1\/95:focus{outline-color:rgb(var(--slate-1)/.95)}.focus\:outline-slate-10\/0:focus{outline-color:rgb(var(--slate-10)/0)}.focus\:outline-slate-10\/10:focus{outline-color:rgb(var(--slate-10)/.1)}.focus\:outline-slate-10\/100:focus{outline-color:rgb(var(--slate-10)/1)}.focus\:outline-slate-10\/20:focus{outline-color:rgb(var(--slate-10)/.2)}.focus\:outline-slate-10\/25:focus{outline-color:rgb(var(--slate-10)/.25)}.focus\:outline-slate-10\/30:focus{outline-color:rgb(var(--slate-10)/.3)}.focus\:outline-slate-10\/40:focus{outline-color:rgb(var(--slate-10)/.4)}.focus\:outline-slate-10\/5:focus{outline-color:rgb(var(--slate-10)/.05)}.focus\:outline-slate-10\/50:focus{outline-color:rgb(var(--slate-10)/.5)}.focus\:outline-slate-10\/60:focus{outline-color:rgb(var(--slate-10)/.6)}.focus\:outline-slate-10\/70:focus{outline-color:rgb(var(--slate-10)/.7)}.focus\:outline-slate-10\/75:focus{outline-color:rgb(var(--slate-10)/.75)}.focus\:outline-slate-10\/80:focus{outline-color:rgb(var(--slate-10)/.8)}.focus\:outline-slate-10\/90:focus{outline-color:rgb(var(--slate-10)/.9)}.focus\:outline-slate-10\/95:focus{outline-color:rgb(var(--slate-10)/.95)}.focus\:outline-slate-2\/0:focus{outline-color:rgb(var(--slate-2)/0)}.focus\:outline-slate-2\/10:focus{outline-color:rgb(var(--slate-2)/.1)}.focus\:outline-slate-2\/100:focus{outline-color:rgb(var(--slate-2)/1)}.focus\:outline-slate-2\/20:focus{outline-color:rgb(var(--slate-2)/.2)}.focus\:outline-slate-2\/25:focus{outline-color:rgb(var(--slate-2)/.25)}.focus\:outline-slate-2\/30:focus{outline-color:rgb(var(--slate-2)/.3)}.focus\:outline-slate-2\/40:focus{outline-color:rgb(var(--slate-2)/.4)}.focus\:outline-slate-2\/5:focus{outline-color:rgb(var(--slate-2)/.05)}.focus\:outline-slate-2\/50:focus{outline-color:rgb(var(--slate-2)/.5)}.focus\:outline-slate-2\/60:focus{outline-color:rgb(var(--slate-2)/.6)}.focus\:outline-slate-2\/70:focus{outline-color:rgb(var(--slate-2)/.7)}.focus\:outline-slate-2\/75:focus{outline-color:rgb(var(--slate-2)/.75)}.focus\:outline-slate-2\/80:focus{outline-color:rgb(var(--slate-2)/.8)}.focus\:outline-slate-2\/90:focus{outline-color:rgb(var(--slate-2)/.9)}.focus\:outline-slate-2\/95:focus{outline-color:rgb(var(--slate-2)/.95)}.focus\:outline-slate-3\/0:focus{outline-color:rgb(var(--slate-3)/0)}.focus\:outline-slate-3\/10:focus{outline-color:rgb(var(--slate-3)/.1)}.focus\:outline-slate-3\/100:focus{outline-color:rgb(var(--slate-3)/1)}.focus\:outline-slate-3\/20:focus{outline-color:rgb(var(--slate-3)/.2)}.focus\:outline-slate-3\/25:focus{outline-color:rgb(var(--slate-3)/.25)}.focus\:outline-slate-3\/30:focus{outline-color:rgb(var(--slate-3)/.3)}.focus\:outline-slate-3\/40:focus{outline-color:rgb(var(--slate-3)/.4)}.focus\:outline-slate-3\/5:focus{outline-color:rgb(var(--slate-3)/.05)}.focus\:outline-slate-3\/50:focus{outline-color:rgb(var(--slate-3)/.5)}.focus\:outline-slate-3\/60:focus{outline-color:rgb(var(--slate-3)/.6)}.focus\:outline-slate-3\/70:focus{outline-color:rgb(var(--slate-3)/.7)}.focus\:outline-slate-3\/75:focus{outline-color:rgb(var(--slate-3)/.75)}.focus\:outline-slate-3\/80:focus{outline-color:rgb(var(--slate-3)/.8)}.focus\:outline-slate-3\/90:focus{outline-color:rgb(var(--slate-3)/.9)}.focus\:outline-slate-3\/95:focus{outline-color:rgb(var(--slate-3)/.95)}.focus\:outline-slate-4\/0:focus{outline-color:rgb(var(--slate-4)/0)}.focus\:outline-slate-4\/10:focus{outline-color:rgb(var(--slate-4)/.1)}.focus\:outline-slate-4\/100:focus{outline-color:rgb(var(--slate-4)/1)}.focus\:outline-slate-4\/20:focus{outline-color:rgb(var(--slate-4)/.2)}.focus\:outline-slate-4\/25:focus{outline-color:rgb(var(--slate-4)/.25)}.focus\:outline-slate-4\/30:focus{outline-color:rgb(var(--slate-4)/.3)}.focus\:outline-slate-4\/40:focus{outline-color:rgb(var(--slate-4)/.4)}.focus\:outline-slate-4\/5:focus{outline-color:rgb(var(--slate-4)/.05)}.focus\:outline-slate-4\/50:focus{outline-color:rgb(var(--slate-4)/.5)}.focus\:outline-slate-4\/60:focus{outline-color:rgb(var(--slate-4)/.6)}.focus\:outline-slate-4\/70:focus{outline-color:rgb(var(--slate-4)/.7)}.focus\:outline-slate-4\/75:focus{outline-color:rgb(var(--slate-4)/.75)}.focus\:outline-slate-4\/80:focus{outline-color:rgb(var(--slate-4)/.8)}.focus\:outline-slate-4\/90:focus{outline-color:rgb(var(--slate-4)/.9)}.focus\:outline-slate-4\/95:focus{outline-color:rgb(var(--slate-4)/.95)}.focus\:outline-slate-5\/0:focus{outline-color:rgb(var(--slate-5)/0)}.focus\:outline-slate-5\/10:focus{outline-color:rgb(var(--slate-5)/.1)}.focus\:outline-slate-5\/100:focus{outline-color:rgb(var(--slate-5)/1)}.focus\:outline-slate-5\/20:focus{outline-color:rgb(var(--slate-5)/.2)}.focus\:outline-slate-5\/25:focus{outline-color:rgb(var(--slate-5)/.25)}.focus\:outline-slate-5\/30:focus{outline-color:rgb(var(--slate-5)/.3)}.focus\:outline-slate-5\/40:focus{outline-color:rgb(var(--slate-5)/.4)}.focus\:outline-slate-5\/5:focus{outline-color:rgb(var(--slate-5)/.05)}.focus\:outline-slate-5\/50:focus{outline-color:rgb(var(--slate-5)/.5)}.focus\:outline-slate-5\/60:focus{outline-color:rgb(var(--slate-5)/.6)}.focus\:outline-slate-5\/70:focus{outline-color:rgb(var(--slate-5)/.7)}.focus\:outline-slate-5\/75:focus{outline-color:rgb(var(--slate-5)/.75)}.focus\:outline-slate-5\/80:focus{outline-color:rgb(var(--slate-5)/.8)}.focus\:outline-slate-5\/90:focus{outline-color:rgb(var(--slate-5)/.9)}.focus\:outline-slate-5\/95:focus{outline-color:rgb(var(--slate-5)/.95)}.focus\:outline-slate-6\/0:focus{outline-color:rgb(var(--slate-6)/0)}.focus\:outline-slate-6\/10:focus{outline-color:rgb(var(--slate-6)/.1)}.focus\:outline-slate-6\/100:focus{outline-color:rgb(var(--slate-6)/1)}.focus\:outline-slate-6\/20:focus{outline-color:rgb(var(--slate-6)/.2)}.focus\:outline-slate-6\/25:focus{outline-color:rgb(var(--slate-6)/.25)}.focus\:outline-slate-6\/30:focus{outline-color:rgb(var(--slate-6)/.3)}.focus\:outline-slate-6\/40:focus{outline-color:rgb(var(--slate-6)/.4)}.focus\:outline-slate-6\/5:focus{outline-color:rgb(var(--slate-6)/.05)}.focus\:outline-slate-6\/50:focus{outline-color:rgb(var(--slate-6)/.5)}.focus\:outline-slate-6\/60:focus{outline-color:rgb(var(--slate-6)/.6)}.focus\:outline-slate-6\/70:focus{outline-color:rgb(var(--slate-6)/.7)}.focus\:outline-slate-6\/75:focus{outline-color:rgb(var(--slate-6)/.75)}.focus\:outline-slate-6\/80:focus{outline-color:rgb(var(--slate-6)/.8)}.focus\:outline-slate-6\/90:focus{outline-color:rgb(var(--slate-6)/.9)}.focus\:outline-slate-6\/95:focus{outline-color:rgb(var(--slate-6)/.95)}.focus\:outline-slate-7\/0:focus{outline-color:rgb(var(--slate-7)/0)}.focus\:outline-slate-7\/10:focus{outline-color:rgb(var(--slate-7)/.1)}.focus\:outline-slate-7\/100:focus{outline-color:rgb(var(--slate-7)/1)}.focus\:outline-slate-7\/20:focus{outline-color:rgb(var(--slate-7)/.2)}.focus\:outline-slate-7\/25:focus{outline-color:rgb(var(--slate-7)/.25)}.focus\:outline-slate-7\/30:focus{outline-color:rgb(var(--slate-7)/.3)}.focus\:outline-slate-7\/40:focus{outline-color:rgb(var(--slate-7)/.4)}.focus\:outline-slate-7\/5:focus{outline-color:rgb(var(--slate-7)/.05)}.focus\:outline-slate-7\/50:focus{outline-color:rgb(var(--slate-7)/.5)}.focus\:outline-slate-7\/60:focus{outline-color:rgb(var(--slate-7)/.6)}.focus\:outline-slate-7\/70:focus{outline-color:rgb(var(--slate-7)/.7)}.focus\:outline-slate-7\/75:focus{outline-color:rgb(var(--slate-7)/.75)}.focus\:outline-slate-7\/80:focus{outline-color:rgb(var(--slate-7)/.8)}.focus\:outline-slate-7\/90:focus{outline-color:rgb(var(--slate-7)/.9)}.focus\:outline-slate-7\/95:focus{outline-color:rgb(var(--slate-7)/.95)}.focus\:outline-slate-8\/0:focus{outline-color:rgb(var(--slate-8)/0)}.focus\:outline-slate-8\/10:focus{outline-color:rgb(var(--slate-8)/.1)}.focus\:outline-slate-8\/100:focus{outline-color:rgb(var(--slate-8)/1)}.focus\:outline-slate-8\/20:focus{outline-color:rgb(var(--slate-8)/.2)}.focus\:outline-slate-8\/25:focus{outline-color:rgb(var(--slate-8)/.25)}.focus\:outline-slate-8\/30:focus{outline-color:rgb(var(--slate-8)/.3)}.focus\:outline-slate-8\/40:focus{outline-color:rgb(var(--slate-8)/.4)}.focus\:outline-slate-8\/5:focus{outline-color:rgb(var(--slate-8)/.05)}.focus\:outline-slate-8\/50:focus{outline-color:rgb(var(--slate-8)/.5)}.focus\:outline-slate-8\/60:focus{outline-color:rgb(var(--slate-8)/.6)}.focus\:outline-slate-8\/70:focus{outline-color:rgb(var(--slate-8)/.7)}.focus\:outline-slate-8\/75:focus{outline-color:rgb(var(--slate-8)/.75)}.focus\:outline-slate-8\/80:focus{outline-color:rgb(var(--slate-8)/.8)}.focus\:outline-slate-8\/90:focus{outline-color:rgb(var(--slate-8)/.9)}.focus\:outline-slate-8\/95:focus{outline-color:rgb(var(--slate-8)/.95)}.focus\:outline-slate-9\/0:focus{outline-color:rgb(var(--slate-9)/0)}.focus\:outline-slate-9\/10:focus{outline-color:rgb(var(--slate-9)/.1)}.focus\:outline-slate-9\/100:focus{outline-color:rgb(var(--slate-9)/1)}.focus\:outline-slate-9\/20:focus{outline-color:rgb(var(--slate-9)/.2)}.focus\:outline-slate-9\/25:focus{outline-color:rgb(var(--slate-9)/.25)}.focus\:outline-slate-9\/30:focus{outline-color:rgb(var(--slate-9)/.3)}.focus\:outline-slate-9\/40:focus{outline-color:rgb(var(--slate-9)/.4)}.focus\:outline-slate-9\/5:focus{outline-color:rgb(var(--slate-9)/.05)}.focus\:outline-slate-9\/50:focus{outline-color:rgb(var(--slate-9)/.5)}.focus\:outline-slate-9\/60:focus{outline-color:rgb(var(--slate-9)/.6)}.focus\:outline-slate-9\/70:focus{outline-color:rgb(var(--slate-9)/.7)}.focus\:outline-slate-9\/75:focus{outline-color:rgb(var(--slate-9)/.75)}.focus\:outline-slate-9\/80:focus{outline-color:rgb(var(--slate-9)/.8)}.focus\:outline-slate-9\/90:focus{outline-color:rgb(var(--slate-9)/.9)}.focus\:outline-slate-9\/95:focus{outline-color:rgb(var(--slate-9)/.95)}.focus\:outline-success:focus{outline-color:rgb(var(--success))}.focus\:outline-success\/0:focus{outline-color:rgb(var(--success)/0)}.focus\:outline-success\/10:focus{outline-color:rgb(var(--success)/.1)}.focus\:outline-success\/100:focus{outline-color:rgb(var(--success)/1)}.focus\:outline-success\/20:focus{outline-color:rgb(var(--success)/.2)}.focus\:outline-success\/25:focus{outline-color:rgb(var(--success)/.25)}.focus\:outline-success\/30:focus{outline-color:rgb(var(--success)/.3)}.focus\:outline-success\/40:focus{outline-color:rgb(var(--success)/.4)}.focus\:outline-success\/5:focus{outline-color:rgb(var(--success)/.05)}.focus\:outline-success\/50:focus{outline-color:rgb(var(--success)/.5)}.focus\:outline-success\/60:focus{outline-color:rgb(var(--success)/.6)}.focus\:outline-success\/70:focus{outline-color:rgb(var(--success)/.7)}.focus\:outline-success\/75:focus{outline-color:rgb(var(--success)/.75)}.focus\:outline-success\/80:focus{outline-color:rgb(var(--success)/.8)}.focus\:outline-success\/90:focus{outline-color:rgb(var(--success)/.9)}.focus\:outline-success\/95:focus{outline-color:rgb(var(--success)/.95)}.focus\:outline-warning:focus{outline-color:rgb(var(--warning))}.focus\:outline-warning\/0:focus{outline-color:rgb(var(--warning)/0)}.focus\:outline-warning\/10:focus{outline-color:rgb(var(--warning)/.1)}.focus\:outline-warning\/100:focus{outline-color:rgb(var(--warning)/1)}.focus\:outline-warning\/20:focus{outline-color:rgb(var(--warning)/.2)}.focus\:outline-warning\/25:focus{outline-color:rgb(var(--warning)/.25)}.focus\:outline-warning\/30:focus{outline-color:rgb(var(--warning)/.3)}.focus\:outline-warning\/40:focus{outline-color:rgb(var(--warning)/.4)}.focus\:outline-warning\/5:focus{outline-color:rgb(var(--warning)/.05)}.focus\:outline-warning\/50:focus{outline-color:rgb(var(--warning)/.5)}.focus\:outline-warning\/60:focus{outline-color:rgb(var(--warning)/.6)}.focus\:outline-warning\/70:focus{outline-color:rgb(var(--warning)/.7)}.focus\:outline-warning\/75:focus{outline-color:rgb(var(--warning)/.75)}.focus\:outline-warning\/80:focus{outline-color:rgb(var(--warning)/.8)}.focus\:outline-warning\/90:focus{outline-color:rgb(var(--warning)/.9)}.focus\:outline-warning\/95:focus{outline-color:rgb(var(--warning)/.95)}.focus\:outline-white:focus{outline-color:#fff}.focus\:outline-white\/0:focus{outline-color:hsla(0,0%,100%,0)}.focus\:outline-white\/10:focus{outline-color:hsla(0,0%,100%,.1)}.focus\:outline-white\/100:focus{outline-color:#fff}.focus\:outline-white\/20:focus{outline-color:hsla(0,0%,100%,.2)}.focus\:outline-white\/25:focus{outline-color:hsla(0,0%,100%,.25)}.focus\:outline-white\/30:focus{outline-color:hsla(0,0%,100%,.3)}.focus\:outline-white\/40:focus{outline-color:hsla(0,0%,100%,.4)}.focus\:outline-white\/5:focus{outline-color:hsla(0,0%,100%,.05)}.focus\:outline-white\/50:focus{outline-color:hsla(0,0%,100%,.5)}.focus\:outline-white\/60:focus{outline-color:hsla(0,0%,100%,.6)}.focus\:outline-white\/70:focus{outline-color:hsla(0,0%,100%,.7)}.focus\:outline-white\/75:focus{outline-color:hsla(0,0%,100%,.75)}.focus\:outline-white\/80:focus{outline-color:hsla(0,0%,100%,.8)}.focus\:outline-white\/90:focus{outline-color:hsla(0,0%,100%,.9)}.focus\:outline-white\/95:focus{outline-color:hsla(0,0%,100%,.95)}.focus\:outline-whiteInverted:focus{outline-color:rgb(var(--whiteInverted))}.focus\:outline-whiteInverted\/0:focus{outline-color:rgb(var(--whiteInverted)/0)}.focus\:outline-whiteInverted\/10:focus{outline-color:rgb(var(--whiteInverted)/.1)}.focus\:outline-whiteInverted\/100:focus{outline-color:rgb(var(--whiteInverted)/1)}.focus\:outline-whiteInverted\/20:focus{outline-color:rgb(var(--whiteInverted)/.2)}.focus\:outline-whiteInverted\/25:focus{outline-color:rgb(var(--whiteInverted)/.25)}.focus\:outline-whiteInverted\/30:focus{outline-color:rgb(var(--whiteInverted)/.3)}.focus\:outline-whiteInverted\/40:focus{outline-color:rgb(var(--whiteInverted)/.4)}.focus\:outline-whiteInverted\/5:focus{outline-color:rgb(var(--whiteInverted)/.05)}.focus\:outline-whiteInverted\/50:focus{outline-color:rgb(var(--whiteInverted)/.5)}.focus\:outline-whiteInverted\/60:focus{outline-color:rgb(var(--whiteInverted)/.6)}.focus\:outline-whiteInverted\/70:focus{outline-color:rgb(var(--whiteInverted)/.7)}.focus\:outline-whiteInverted\/75:focus{outline-color:rgb(var(--whiteInverted)/.75)}.focus\:outline-whiteInverted\/80:focus{outline-color:rgb(var(--whiteInverted)/.8)}.focus\:outline-whiteInverted\/90:focus{outline-color:rgb(var(--whiteInverted)/.9)}.focus\:outline-whiteInverted\/95:focus{outline-color:rgb(var(--whiteInverted)/.95)} \ No newline at end of file diff --git a/static/js/cdn.min.js b/static/js/cdn.min.js new file mode 100644 index 0000000..e2322d5 --- /dev/null +++ b/static/js/cdn.min.js @@ -0,0 +1,5 @@ +(()=>{var Ze=!1,Qe=!1,V=[],et=-1;function Kt(e){bn(e)}function bn(e){V.includes(e)||V.push(e),wn()}function we(e){let t=V.indexOf(e);t!==-1&&t>et&&V.splice(t,1)}function wn(){!Qe&&!Ze&&(Ze=!0,queueMicrotask(En))}function En(){Ze=!1,Qe=!0;for(let e=0;ee.effect(t,{scheduler:r=>{tt?Kt(r):r()}}),rt=e.raw}function nt(e){D=e}function Vt(e){let t=()=>{};return[n=>{let i=D(n);return e._x_effects||(e._x_effects=new Set,e._x_runEffects=()=>{e._x_effects.forEach(o=>o())}),e._x_effects.add(i),t=()=>{i!==void 0&&(e._x_effects.delete(i),L(i))},i},()=>{t()}]}function q(e,t,r={}){e.dispatchEvent(new CustomEvent(t,{detail:r,bubbles:!0,composed:!0,cancelable:!0}))}function O(e,t){if(typeof ShadowRoot=="function"&&e instanceof ShadowRoot){Array.from(e.children).forEach(i=>O(i,t));return}let r=!1;if(t(e,()=>r=!0),r)return;let n=e.firstElementChild;for(;n;)O(n,t,!1),n=n.nextElementSibling}function S(e,...t){console.warn(`Alpine Warning: ${e}`,...t)}var qt=!1;function Ut(){qt&&S("Alpine has already been initialized on this page. Calling Alpine.start() more than once can cause problems."),qt=!0,document.body||S("Unable to initialize. Trying to load Alpine before `` is available. Did you forget to add `defer` in Alpine's ` - + - + + + +
+ + + + + + + +
+ +