diff --git a/monigo.go b/monigo.go index 14ee544..c7d1639 100644 --- a/monigo.go +++ b/monigo.go @@ -27,10 +27,11 @@ import ( ) var ( - //go:embed static/* - staticFiles embed.FS - BasePath string - baseAPIPath = "/monigo/api/v1" + //go:embed web/build/* + staticFiles embed.FS // Embedding the static files (SvelteKit build output) + Once sync.Once = sync.Once{} // Ensures that the storage is initialized only once + BasePath string // Base path for the monigo + baseAPIPath = "/monigo/api/v1" // Base API path for the dashboard // Content-type mapping shared by both HTTP and Fiber static file handlers. staticContentTypes = map[string]string{ @@ -660,7 +661,7 @@ func handleFiberAPI(c *fiber.Ctx, handler func(http.ResponseWriter, *http.Reques // resolveStaticPath maps a URL path to an embedded file path and content type. func resolveStaticPath(urlPath string) (filePath string, contentType string) { - baseDir := "static" + baseDir := "web/build" filePath = baseDir + urlPath if urlPath == "/" { filePath = baseDir + "/index.html" @@ -924,7 +925,7 @@ func isStaticFile(path string) bool { } staticPaths := []string{ - "/css/", "/js/", "/assets/", "/images/", "/fonts/", "/static/", + "/css/", "/js/", "/assets/", "/images/", "/fonts/", "/static/", } for _, staticPath := range staticPaths { diff --git a/monigo/data/wal/0 b/monigo/data/wal/0 new file mode 100644 index 0000000..e69de29 diff --git a/static/.DS_Store b/static/.DS_Store deleted file mode 100644 index 843210a..0000000 Binary files a/static/.DS_Store and /dev/null differ diff --git a/static/API/.DS_Store b/static/API/.DS_Store deleted file mode 100644 index 1f729ac..0000000 Binary files a/static/API/.DS_Store and /dev/null differ diff --git a/static/API/Req/reports.json b/static/API/Req/reports.json deleted file mode 100644 index 2197b6a..0000000 --- a/static/API/Req/reports.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "topic": "LoadStatistics", - "start_time": "2024-09-08T19:01:28.927+05:30", - "end_time": "2024-09-08T19:06:28.927+05:30", - "time_frame": "5m" -} \ No newline at end of file diff --git a/static/API/Req/service-metrics.json b/static/API/Req/service-metrics.json deleted file mode 100644 index 2c52775..0000000 --- a/static/API/Req/service-metrics.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "field_name": [ - "stack_inuse", - "stack_sys" - ], - "timerange": "5m", - "start_time": "2024-09-08T19:02:42.111+05:30", - "end_time": "2024-09-08T19:07:42.111+05:30" -} \ No newline at end of file diff --git a/static/API/Res/go-routines-stats.json b/static/API/Res/go-routines-stats.json deleted file mode 100644 index 0873be6..0000000 --- a/static/API/Res/go-routines-stats.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "number_of_goroutines": 7, - "stack_view": [ - "goroutine 1309 [running]:\ngithub.com/iyashjayesh/monigo/core.CollectGoRoutinesInfo()\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/iyashjayesh/monigo/core/profile.go:42 +0x40\ngithub.com/iyashjayesh/monigo/api.GetGoRoutinesStats({0x10525dd98, 0x140002ae620}, 0x1400019cae8?)\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/iyashjayesh/monigo/api/api.go:55 +0x28\nnet/http.HandlerFunc.ServeHTTP(0x1400019cb08?, {0x10525dd98?, 0x140002ae620?}, 0x104ac9838?)\n\t/usr/local/go/src/net/http/server.go:2136 +0x38\nnet/http.(*ServeMux).ServeHTTP(0x105452980?, {0x10525dd98, 0x140002ae620}, 0x1400007e400)\n\t/usr/local/go/src/net/http/server.go:2514 +0x144\nnet/http.serverHandler.ServeHTTP({0x140001b4ff0?}, {0x10525dd98?, 0x140002ae620?}, 0x6?)\n\t/usr/local/go/src/net/http/server.go:2938 +0xbc\nnet/http.(*conn).serve(0x140001ce1b0, {0x10525e3b0, 0x140002aa120})\n\t/usr/local/go/src/net/http/server.go:2009 +0x518\ncreated by net/http.(*Server).Serve in goroutine 45\n\t/usr/local/go/src/net/http/server.go:3086 +0x4cc\n\n", - "goroutine 1 [IO wait, 11 minutes]:\ninternal/poll.runtime_pollWait(0x10c20cea0, 0x72)\n\t/usr/local/go/src/runtime/netpoll.go:343 +0xa0\ninternal/poll.(*pollDesc).wait(0x1400015c280?, 0x105230940?, 0x0)\n\t/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x28\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/local/go/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Accept(0x1400015c280)\n\t/usr/local/go/src/internal/poll/fd_unix.go:611 +0x250\nnet.(*netFD).accept(0x1400015c280)\n\t/usr/local/go/src/net/fd_unix.go:172 +0x28\nnet.(*TCPListener).accept(0x14000140ca0)\n\t/usr/local/go/src/net/tcpsock_posix.go:152 +0x28\nnet.(*TCPListener).Accept(0x14000140ca0)\n\t/usr/local/go/src/net/tcpsock.go:315 +0x2c\nnet/http.(*Server).Serve(0x140004bc000, {0x10525de88, 0x14000140ca0})\n\t/usr/local/go/src/net/http/server.go:3056 +0x2b8\nnet/http.(*Server).ListenAndServe(0x140004bc000)\n\t/usr/local/go/src/net/http/server.go:2985 +0x84\nnet/http.ListenAndServe(...)\n\t/usr/local/go/src/net/http/server.go:3239\nmain.main()\n\t/Users/yash/Documents/learning-projects/example-monigo/main.go:63 +0x184\n\n", - "goroutine 43 [select, 11 minutes]:\ngithub.com/nakabonne/tstorage.NewStorage.func3()\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/nakabonne/tstorage/storage.go:256 +0xa4\ncreated by github.com/nakabonne/tstorage.NewStorage in goroutine 1\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/nakabonne/tstorage/storage.go:252 +0x764\n\n", - "goroutine 44 [chan receive]:\ngithub.com/iyashjayesh/monigo/timeseries.SetDataPointsSyncFrequency.func2()\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/iyashjayesh/monigo/timeseries/mongiodb.go:136 +0x128\ncreated by github.com/iyashjayesh/monigo/timeseries.SetDataPointsSyncFrequency in goroutine 1\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/iyashjayesh/monigo/timeseries/mongiodb.go:132 +0x13c\n\n", - "goroutine 45 [runnable]:\ninternal/poll.(*FD).SetsockoptInt(0x1400005fce8?, 0x10493e4d4?, 0xa?, 0x1400005fd08?)\n\t/usr/local/go/src/internal/poll/sockopt.go:17 +0x124\nnet.setNoDelay(0x1400015c180, 0xf0?)\n\t/usr/local/go/src/net/tcpsockopt_posix.go:15 +0x30\nnet.newTCPConn(0x1400015c180, 0x0, 0x0)\n\t/usr/local/go/src/net/tcpsock.go:239 +0x2c\nnet.(*TCPListener).accept(0x140000743a0)\n\t/usr/local/go/src/net/tcpsock_posix.go:156 +0x4c\nnet.(*TCPListener).Accept(0x140000743a0)\n\t/usr/local/go/src/net/tcpsock.go:315 +0x2c\nnet/http.(*Server).Serve(0x140002a8000, {0x10525de88, 0x140000743a0})\n\t/usr/local/go/src/net/http/server.go:3056 +0x2b8\nnet/http.(*Server).ListenAndServe(0x140002a8000)\n\t/usr/local/go/src/net/http/server.go:2985 +0x84\nnet/http.ListenAndServe(...)\n\t/usr/local/go/src/net/http/server.go:3239\ngithub.com/iyashjayesh/monigo.StartDashboard(0x0?)\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/iyashjayesh/monigo/monigo.go:147 +0x378\ncreated by github.com/iyashjayesh/monigo.(*Monigo).Start in goroutine 1\n\t/Users/yash/Documents/learning-projects/example-monigo/vendor/github.com/iyashjayesh/monigo/monigo.go:103 +0x4c8\n\n", - "goroutine 1310 [IO wait]:\ninternal/poll.runtime_pollWait(0x10c20c9c8, 0x72)\n\t/usr/local/go/src/runtime/netpoll.go:343 +0xa0\ninternal/poll.(*pollDesc).wait(0x1400033e080?, 0x140001b5001?, 0x0)\n\t/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x28\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/local/go/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0x1400033e080, {0x140001b5001, 0x1, 0x1})\n\t/usr/local/go/src/internal/poll/fd_unix.go:164 +0x200\nnet.(*netFD).Read(0x1400033e080, {0x140001b5001?, 0x1000140005053d8?, 0x140004f5290?})\n\t/usr/local/go/src/net/fd_posix.go:55 +0x28\nnet.(*conn).Read(0x1400011c4f0, {0x140001b5001?, 0x14000061fa8?, 0x104b16964?})\n\t/usr/local/go/src/net/net.go:179 +0x34\nnet/http.(*connReader).backgroundRead(0x140001b4ff0)\n\t/usr/local/go/src/net/http/server.go:683 +0x40\ncreated by net/http.(*connReader).startBackgroundRead in goroutine 1309\n\t/usr/local/go/src/net/http/server.go:679 +0xc8\n\n" - ] -} \ No newline at end of file diff --git a/static/API/Res/metrics.json b/static/API/Res/metrics.json deleted file mode 100644 index e448733..0000000 --- a/static/API/Res/metrics.json +++ /dev/null @@ -1,333 +0,0 @@ -{ - "core_statistics": { - "goroutines": 7, - "uptime": "43.03 m" - }, - "load_statistics": { - "service_cpu_load": "0.04%", - "system_cpu_load": "11.21%", - "total_cpu_load": "11.28%", - "service_memory_load": "0.10%", - "system_memory_load": "78.61%", - "total_memory_load": "16.00 GB", - "overall_load_of_service": "0.07%" - }, - "cpu_statistics": { - "total_cores": 10, - "total_logical_cores": 10, - "cores_used_by_system": 1.131, - "cores_used_by_service": 0.004, - "cores_used_by_service_in_percent": "0.00%", - "cores_used_by_system_in_percent": "1.13%" - }, - "memory_statistics": { - "total_system_memory": "16.00 GB", - "memory_used_by_system": "12.58 GB", - "memory_used_by_service": "865.34 KB", - "available_memory": "3.42 GB", - "gc_pause_duration": "11.28 ms", - "stack_memory_usage": "704.00 KB", - "total_swap_memory": "2.00 GB", - "free_swap_memory": "1.25 GB", - "mem_stats_records": [ - { - "record_name": "Alloc", - "record_description": "Bytes of allocated heap objects.", - "record_value": 865.34375, - "record_unit": "KB" - }, - { - "record_name": "TotalAlloc", - "record_description": "Cumulative bytes allocated for heap objects.", - "record_value": 88.43869018554688, - "record_unit": "MB" - }, - { - "record_name": "Sys", - "record_description": "Total bytes of memory obtained from the OS.", - "record_value": 23.15747833251953, - "record_unit": "MB" - }, - { - "record_name": "Lookups", - "record_description": "Number of pointer lookups performed by the runtime.", - "record_value": 0, - "record_unit": "bytes" - }, - { - "record_name": "Mallocs", - "record_description": "Cumulative count of heap objects allocated.", - "record_value": 73.4013671875, - "record_unit": "KB" - }, - { - "record_name": "Frees", - "record_description": "Cumulative count of heap objects freed.", - "record_value": 70.55859375, - "record_unit": "KB" - }, - { - "record_name": "HeapAlloc", - "record_description": "Bytes of allocated heap objects.", - "record_value": 865.34375, - "record_unit": "KB" - }, - { - "record_name": "HeapSys", - "record_description": "Bytes of heap memory obtained from the OS.", - "record_value": 15.3125, - "record_unit": "MB" - }, - { - "record_name": "HeapIdle", - "record_description": "Bytes in idle (unused) spans.", - "record_value": 13.5546875, - "record_unit": "MB" - }, - { - "record_name": "HeapInuse", - "record_description": "Bytes in in-use spans.", - "record_value": 1.7578125, - "record_unit": "MB" - }, - { - "record_name": "HeapReleased", - "record_description": "Bytes of physical memory returned to the OS.", - "record_value": 12.46875, - "record_unit": "MB" - }, - { - "record_name": "HeapObjects", - "record_description": "Number of allocated heap objects.", - "record_value": 2.8427734375, - "record_unit": "KB" - }, - { - "record_name": "StackInuse", - "record_description": "Bytes in stack spans.", - "record_value": 704, - "record_unit": "KB" - }, - { - "record_name": "StackSys", - "record_description": "Bytes of stack memory obtained from the OS.", - "record_value": 704, - "record_unit": "KB" - }, - { - "record_name": "MSpanInuse", - "record_description": "Bytes of allocated mspan structures.", - "record_value": 121.40625, - "record_unit": "KB" - }, - { - "record_name": "MSpanSys", - "record_description": "Bytes of memory obtained from the OS for mspan structures.", - "record_value": 143.2265625, - "record_unit": "KB" - }, - { - "record_name": "MCacheInuse", - "record_description": "Bytes of allocated mcache structures.", - "record_value": 11.71875, - "record_unit": "KB" - }, - { - "record_name": "MCacheSys", - "record_description": "Bytes of memory obtained from the OS for mcache structures.", - "record_value": 15.234375, - "record_unit": "KB" - }, - { - "record_name": "BuckHashSys", - "record_description": "Bytes of memory in profiling bucket hash tables.", - "record_value": 1.3863096237182617, - "record_unit": "MB" - }, - { - "record_name": "GCSys", - "record_description": "Bytes of memory in garbage collection metadata.", - "record_value": 3.628448486328125, - "record_unit": "MB" - }, - { - "record_name": "OtherSys", - "record_description": "Bytes of memory in miscellaneous off-heap runtime allocations.", - "record_value": 1.9879732131958008, - "record_unit": "MB" - }, - { - "record_name": "NextGC", - "record_description": "Target heap size of the next GC cycle.", - "record_value": 4, - "record_unit": "MB" - }, - { - "record_name": "LastGC", - "record_description": "Time the last garbage collection finished (nanoseconds since the UNIX epoch).", - "record_value": 1607924212.7972786, - "record_unit": "GB" - }, - { - "record_name": "PauseTotalNs", - "record_description": "Cumulative nanoseconds in GC stop-the-world pauses since program start.", - "record_value": 10.7582426071167, - "record_unit": "MB" - }, - { - "record_name": "NumGC", - "record_description": "Number of completed GC cycles.", - "record_value": 34, - "record_unit": "bytes" - }, - { - "record_name": "NumForcedGC", - "record_description": "Number of GC cycles that were forced by the application calling GC.", - "record_value": 0, - "record_unit": "bytes" - }, - { - "record_name": "GCCPUFraction", - "record_description": "Fraction of this program's available CPU time used by the GC.", - "record_value": 0.000006618374769890565, - "record_unit": "fraction" - } - ], - "raw_mem_stats_records": [ - { - "record_name": "alloc", - "record_value": 886.112 - }, - { - "record_name": "total_alloc", - "record_value": 92734.688 - }, - { - "record_name": "sys", - "record_value": 24282.376 - }, - { - "record_name": "sys", - "record_value": 24282.376 - }, - { - "record_name": "lookups", - "record_value": 0 - }, - { - "record_name": "mallocs", - "record_value": 75.163 - }, - { - "record_name": "frees", - "record_value": 72.252 - }, - { - "record_name": "heap_alloc", - "record_value": 886.112 - }, - { - "record_name": "heap_sys", - "record_value": 16056.32 - }, - { - "record_name": "heap_idle", - "record_value": 14213.12 - }, - { - "record_name": "heap_inuse", - "record_value": 1843.2 - }, - { - "record_name": "heap_released", - "record_value": 13074.432 - }, - { - "record_name": "heap_objects", - "record_value": 2.911 - }, - { - "record_name": "stack_inuse", - "record_value": 720.896 - }, - { - "record_name": "stack_sys", - "record_value": 720.896 - }, - { - "record_name": "m_span_inuse", - "record_value": 124.32 - }, - { - "record_name": "m_span_sys", - "record_value": 146.664 - }, - { - "record_name": "m_cache_inuse", - "record_value": 12 - }, - { - "record_name": "m_cache_sys", - "record_value": 15.6 - }, - { - "record_name": "buck_hash_sys", - "record_value": 1453.651 - }, - { - "record_name": "gc_sys", - "record_value": 3804.704 - }, - { - "record_name": "other_sys", - "record_value": 2084.541 - }, - { - "record_name": "next_gc", - "record_value": 4194.304 - }, - { - "record_name": "last_gc", - "record_value": 1726495477102714 - }, - { - "record_name": "pause_total_ns", - "record_value": 11280.835 - }, - { - "record_name": "num_gc", - "record_value": 0.034 - }, - { - "record_name": "num_forced_gc", - "record_value": 0 - }, - { - "record_name": "gc_cpu_fraction", - "record_value": 6.618374769890565e-9 - } - ] - }, - "heap_alloc_by_service": "865.34 KB", - "heap_alloc_by_system": "15.31 MB", - "total_alloc_by_service": "88.44 MB", - "total_memory_by_os": "23.16 MB", - "network_io": { - "bytes_sent": 6356356846, - "bytes_received": 11929894738 - }, - "health": { - "system_health": { - "percent": 0, - "healthy": false, - "message": "[Oops] The Overall Health is in rough shape. Time to call in the cavalry and get things back on track!", - "icon_msg": "System usage exceeds allowed limits: CPU Usage 198.33% / 90.00%, Memory Usage 87.36% / 90.00%" - }, - "service_health": { - "percent": 97.53, - "healthy": true, - "message": "[Outstanding] The Overall Health is rocking it! Everything’s running smoothly and life is good.", - "icon_msg": "Service usage is within limits: CPU Usage 0.40% / 90.00%, Memory Usage 0.01% / 90.00%, Goroutines 7.00 / 100" - } - } -} \ No newline at end of file diff --git a/static/API/Res/reports.json b/static/API/Res/reports.json deleted file mode 100644 index e0a0fcf..0000000 --- a/static/API/Res/reports.json +++ /dev/null @@ -1,272 +0,0 @@ -[ - { - "time": "2024-09-08T13:31:36Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.13, - "system_cpu_load": 6.48, - "system_memory_load": 75 - } - }, - { - "time": "2024-09-08T13:31:47Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.13, - "system_cpu_load": 10.13, - "system_memory_load": 75.74 - } - }, - { - "time": "2024-09-08T13:31:58Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.13, - "system_cpu_load": 11.69, - "system_memory_load": 74.96 - } - }, - { - "time": "2024-09-08T13:32:09Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.13, - "system_cpu_load": 13.37, - "system_memory_load": 74.64 - } - }, - { - "time": "2024-09-08T13:32:20Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.13, - "system_cpu_load": 16.4, - "system_memory_load": 75.41 - } - }, - { - "time": "2024-09-08T13:32:31Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.13, - "system_cpu_load": 10.52, - "system_memory_load": 74.06 - } - }, - { - "time": "2024-09-08T13:32:42Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 9.25, - "system_memory_load": 74.76 - } - }, - { - "time": "2024-09-08T13:32:53Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 2.24, - "system_memory_load": 74.11 - } - }, - { - "time": "2024-09-08T13:33:04Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 14.78, - "system_memory_load": 74.35 - } - }, - { - "time": "2024-09-08T13:33:15Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 6.13, - "system_memory_load": 74.26 - } - }, - { - "time": "2024-09-08T13:33:26Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 9.74, - "system_memory_load": 74.2 - } - }, - { - "time": "2024-09-08T13:33:37Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.16, - "service_memory_load": 0.14, - "system_cpu_load": 7.9, - "system_memory_load": 74.03 - } - }, - { - "time": "2024-09-08T13:33:48Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 5.69, - "system_memory_load": 74.03 - } - }, - { - "time": "2024-09-08T13:33:59Z", - "value": { - "overall_load_of_service": 0.16, - "service_cpu_load": 0.17, - "service_memory_load": 0.14, - "system_cpu_load": 9.28, - "system_memory_load": 74.08 - } - }, - { - "time": "2024-09-08T13:34:10Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.16, - "service_memory_load": 0.14, - "system_cpu_load": 13.62, - "system_memory_load": 74.02 - } - }, - { - "time": "2024-09-08T13:34:21Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.16, - "service_memory_load": 0.14, - "system_cpu_load": 12.97, - "system_memory_load": 74.04 - } - }, - { - "time": "2024-09-08T13:34:32Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.16, - "service_memory_load": 0.13, - "system_cpu_load": 38.45, - "system_memory_load": 74.48 - } - }, - { - "time": "2024-09-08T13:34:43Z", - "value": { - "overall_load_of_service": 0.14, - "service_cpu_load": 0.16, - "service_memory_load": 0.12, - "system_cpu_load": 14.9, - "system_memory_load": 77.29 - } - }, - { - "time": "2024-09-08T13:34:54Z", - "value": { - "overall_load_of_service": 0.14, - "service_cpu_load": 0.16, - "service_memory_load": 0.12, - "system_cpu_load": 15.62, - "system_memory_load": 77.09 - } - }, - { - "time": "2024-09-08T13:35:05Z", - "value": { - "overall_load_of_service": 0.14, - "service_cpu_load": 0.16, - "service_memory_load": 0.12, - "system_cpu_load": 12.69, - "system_memory_load": 77.01 - } - }, - { - "time": "2024-09-08T13:35:17Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.12, - "system_cpu_load": 19.57, - "system_memory_load": 78.68 - } - }, - { - "time": "2024-09-08T13:35:28Z", - "value": { - "overall_load_of_service": 0.14, - "service_cpu_load": 0.16, - "service_memory_load": 0.12, - "system_cpu_load": 14.15, - "system_memory_load": 77.6 - } - }, - { - "time": "2024-09-08T13:35:39Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.12, - "system_cpu_load": 9.99, - "system_memory_load": 77.24 - } - }, - { - "time": "2024-09-08T13:35:50Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.12, - "system_cpu_load": 13.38, - "system_memory_load": 78.09 - } - }, - { - "time": "2024-09-08T13:36:01Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.12, - "system_cpu_load": 15.27, - "system_memory_load": 78.48 - } - }, - { - "time": "2024-09-08T13:36:12Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.17, - "service_memory_load": 0.12, - "system_cpu_load": 8.2, - "system_memory_load": 77.71 - } - }, - { - "time": "2024-09-08T13:36:23Z", - "value": { - "overall_load_of_service": 0.15, - "service_cpu_load": 0.16, - "service_memory_load": 0.14, - "system_cpu_load": 26.34, - "system_memory_load": 79.25 - } - } -] \ No newline at end of file diff --git a/static/API/Res/service-info.json b/static/API/Res/service-info.json deleted file mode 100644 index 332dcf2..0000000 --- a/static/API/Res/service-info.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "service_name": "data-api", - "service_start_time": "2024-09-08T15:31:57.446856+05:30", - "go_version": "go1.21.0", - "process_id": 94917 -} \ No newline at end of file diff --git a/static/API/Res/service-metrics.json b/static/API/Res/service-metrics.json deleted file mode 100644 index 9e61440..0000000 --- a/static/API/Res/service-metrics.json +++ /dev/null @@ -1,65 +0,0 @@ -[ - { - "time": "2024-09-16T13:22:19Z", - "value": { - "StackInuse": 393.216, - "StackSys": 393.216 - } - }, - { - "time": "2024-09-16T13:27:21Z", - "value": { - "StackInuse": 622.592, - "StackSys": 622.592 - } - }, - { - "time": "2024-09-16T13:32:23Z", - "value": { - "StackInuse": 655.36, - "StackSys": 655.36 - } - }, - { - "time": "2024-09-16T13:37:25Z", - "value": { - "StackInuse": 655.36, - "StackSys": 655.36 - } - }, - { - "time": "2024-09-16T13:42:27Z", - "value": { - "StackInuse": 655.36, - "StackSys": 655.36 - } - }, - { - "time": "2024-09-16T13:47:29Z", - "value": { - "StackInuse": 622.592, - "StackSys": 622.592 - } - }, - { - "time": "2024-09-16T13:52:31Z", - "value": { - "StackInuse": 655.36, - "StackSys": 655.36 - } - }, - { - "time": "2024-09-16T13:57:33Z", - "value": { - "StackInuse": 688.128, - "StackSys": 688.128 - } - }, - { - "time": "2024-09-16T14:02:35Z", - "value": { - "StackInuse": 720.896, - "StackSys": 720.896 - } - } -] \ No newline at end of file diff --git a/static/assets/.DS_Store b/static/assets/.DS_Store deleted file mode 100644 index 187c5f6..0000000 Binary files a/static/assets/.DS_Store and /dev/null differ diff --git a/static/assets/Moni.gif b/static/assets/Moni.gif deleted file mode 100644 index 0ff5362..0000000 Binary files a/static/assets/Moni.gif and /dev/null differ diff --git a/static/assets/Moni.png b/static/assets/Moni.png deleted file mode 100644 index b4b65fd..0000000 Binary files a/static/assets/Moni.png and /dev/null differ diff --git a/static/assets/MoniGO-PH/1.png b/static/assets/MoniGO-PH/1.png deleted file mode 100644 index be9d154..0000000 Binary files a/static/assets/MoniGO-PH/1.png and /dev/null differ diff --git a/static/assets/MoniGO-PH/2.png b/static/assets/MoniGO-PH/2.png deleted file mode 100644 index 039aab8..0000000 Binary files a/static/assets/MoniGO-PH/2.png and /dev/null differ diff --git a/static/assets/MoniGO-PH/3.png b/static/assets/MoniGO-PH/3.png deleted file mode 100644 index 4f3eb94..0000000 Binary files a/static/assets/MoniGO-PH/3.png and /dev/null differ diff --git a/static/assets/MoniGO-PH/4.png b/static/assets/MoniGO-PH/4.png deleted file mode 100644 index e022bf9..0000000 Binary files a/static/assets/MoniGO-PH/4.png and /dev/null differ diff --git a/static/assets/MoniGO-PH/5.png b/static/assets/MoniGO-PH/5.png deleted file mode 100644 index 5178044..0000000 Binary files a/static/assets/MoniGO-PH/5.png and /dev/null differ diff --git a/static/assets/down-aerrow.gif b/static/assets/down-aerrow.gif deleted file mode 100644 index bf99912..0000000 Binary files a/static/assets/down-aerrow.gif and /dev/null differ diff --git a/static/assets/favicon.ico b/static/assets/favicon.ico deleted file mode 100644 index 0121083..0000000 Binary files a/static/assets/favicon.ico and /dev/null differ diff --git a/static/assets/favicon_io/android-chrome-192x192.png b/static/assets/favicon_io/android-chrome-192x192.png deleted file mode 100644 index 5139f07..0000000 Binary files a/static/assets/favicon_io/android-chrome-192x192.png and /dev/null differ diff --git a/static/assets/favicon_io/android-chrome-512x512.png b/static/assets/favicon_io/android-chrome-512x512.png deleted file mode 100644 index 5aeb8de..0000000 Binary files a/static/assets/favicon_io/android-chrome-512x512.png and /dev/null differ diff --git a/static/assets/favicon_io/apple-touch-icon.png b/static/assets/favicon_io/apple-touch-icon.png deleted file mode 100644 index 4955410..0000000 Binary files a/static/assets/favicon_io/apple-touch-icon.png and /dev/null differ diff --git a/static/assets/favicon_io/favicon-16x16.png b/static/assets/favicon_io/favicon-16x16.png deleted file mode 100644 index 69316c8..0000000 Binary files a/static/assets/favicon_io/favicon-16x16.png and /dev/null differ diff --git a/static/assets/favicon_io/favicon-32x32.png b/static/assets/favicon_io/favicon-32x32.png deleted file mode 100644 index 51df6c0..0000000 Binary files a/static/assets/favicon_io/favicon-32x32.png and /dev/null differ diff --git a/static/assets/favicon_io/favicon.ico b/static/assets/favicon_io/favicon.ico deleted file mode 100644 index 0121083..0000000 Binary files a/static/assets/favicon_io/favicon.ico and /dev/null differ diff --git a/static/assets/loader.gif b/static/assets/loader.gif deleted file mode 100644 index 6ea88a1..0000000 Binary files a/static/assets/loader.gif and /dev/null differ diff --git a/static/assets/product/cpu-core.png b/static/assets/product/cpu-core.png deleted file mode 100644 index ea8ff4f..0000000 Binary files a/static/assets/product/cpu-core.png and /dev/null differ diff --git a/static/assets/product/cpu-load.png b/static/assets/product/cpu-load.png deleted file mode 100644 index f48d553..0000000 Binary files a/static/assets/product/cpu-load.png and /dev/null differ diff --git a/static/assets/product/cpu-usage.png b/static/assets/product/cpu-usage.png deleted file mode 100644 index 216d003..0000000 Binary files a/static/assets/product/cpu-usage.png and /dev/null differ diff --git a/static/assets/product/go-version.png b/static/assets/product/go-version.png deleted file mode 100644 index bf18af7..0000000 Binary files a/static/assets/product/go-version.png and /dev/null differ diff --git a/static/assets/product/id.png b/static/assets/product/id.png deleted file mode 100644 index 00c9895..0000000 Binary files a/static/assets/product/id.png and /dev/null differ diff --git a/static/assets/product/memory.png b/static/assets/product/memory.png deleted file mode 100644 index 5f65f09..0000000 Binary files a/static/assets/product/memory.png and /dev/null differ diff --git a/static/assets/product/service.png b/static/assets/product/service.png deleted file mode 100644 index 70397d4..0000000 Binary files a/static/assets/product/service.png and /dev/null differ diff --git a/static/assets/product/start-time.png b/static/assets/product/start-time.png deleted file mode 100644 index c7bb0ed..0000000 Binary files a/static/assets/product/start-time.png and /dev/null differ diff --git a/static/assets/product/thread.png b/static/assets/product/thread.png deleted file mode 100644 index 615370d..0000000 Binary files a/static/assets/product/thread.png and /dev/null differ diff --git a/static/assets/product/uptime.png b/static/assets/product/uptime.png deleted file mode 100644 index e220661..0000000 Binary files a/static/assets/product/uptime.png and /dev/null differ diff --git a/static/assets/sort_asc.png b/static/assets/sort_asc.png deleted file mode 100644 index e1ba61a..0000000 Binary files a/static/assets/sort_asc.png and /dev/null differ diff --git a/static/assets/sort_asc_disabled.png b/static/assets/sort_asc_disabled.png deleted file mode 100644 index fb11dfe..0000000 Binary files a/static/assets/sort_asc_disabled.png and /dev/null differ diff --git a/static/assets/sort_both.png b/static/assets/sort_both.png deleted file mode 100644 index af5bc7c..0000000 Binary files a/static/assets/sort_both.png and /dev/null differ diff --git a/static/assets/sort_desc.png b/static/assets/sort_desc.png deleted file mode 100644 index 0e156de..0000000 Binary files a/static/assets/sort_desc.png and /dev/null differ diff --git a/static/assets/sort_desc_disabled.png b/static/assets/sort_desc_disabled.png deleted file mode 100644 index c9fdd8a..0000000 Binary files a/static/assets/sort_desc_disabled.png and /dev/null differ diff --git a/static/assets/ss/d1.png b/static/assets/ss/d1.png deleted file mode 100644 index 4ddc60f..0000000 Binary files a/static/assets/ss/d1.png and /dev/null differ diff --git a/static/assets/ss/d10.png b/static/assets/ss/d10.png deleted file mode 100644 index 4c8e15c..0000000 Binary files a/static/assets/ss/d10.png and /dev/null differ diff --git a/static/assets/ss/d2.png b/static/assets/ss/d2.png deleted file mode 100644 index 0dab924..0000000 Binary files a/static/assets/ss/d2.png and /dev/null differ diff --git a/static/assets/ss/d3.png b/static/assets/ss/d3.png deleted file mode 100644 index 3a8f4ee..0000000 Binary files a/static/assets/ss/d3.png and /dev/null differ diff --git a/static/assets/ss/d4.png b/static/assets/ss/d4.png deleted file mode 100644 index b8553d3..0000000 Binary files a/static/assets/ss/d4.png and /dev/null differ diff --git a/static/assets/ss/d5.png b/static/assets/ss/d5.png deleted file mode 100644 index 3374ee2..0000000 Binary files a/static/assets/ss/d5.png and /dev/null differ diff --git a/static/assets/ss/d6.png b/static/assets/ss/d6.png deleted file mode 100644 index 0c09564..0000000 Binary files a/static/assets/ss/d6.png and /dev/null differ diff --git a/static/assets/ss/d7.png b/static/assets/ss/d7.png deleted file mode 100644 index 89b2d44..0000000 Binary files a/static/assets/ss/d7.png and /dev/null differ diff --git a/static/assets/ss/d8.png b/static/assets/ss/d8.png deleted file mode 100644 index d3cabc3..0000000 Binary files a/static/assets/ss/d8.png and /dev/null differ diff --git a/static/assets/ss/d9.png b/static/assets/ss/d9.png deleted file mode 100644 index 897c9b1..0000000 Binary files a/static/assets/ss/d9.png and /dev/null differ diff --git a/static/css/core/backend-plugin.min.css b/static/css/core/backend-plugin.min.css deleted file mode 100644 index 81166d4..0000000 --- a/static/css/core/backend-plugin.min.css +++ /dev/null @@ -1,22331 +0,0 @@ - -@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"); -:root { - --iq-primary: #32bdea; - --iq-secondary: #ff7e41; - --iq-success: #78c091; - --iq-info: #7ee2ff; - --iq-warning: #ff9770; - --iq-danger: #e08db4; - --iq-light: #c7cbd3; - --iq-dark: #01041b; - --iq-orange: #ff7e41; - --iq-purple: #4731b6; - --iq-skyblue: #158df7; - --iq-light-gray: #f4f5fa; - --blue: #32bdea; - --indigo: #6610f2; - --pink: #e83e8c; - --red: #e08db4; - --yellow: #ff9770; - --green: #78c091; - --teal: #20c997; - --cyan: #7ee2ff; - --white: #fff; - --gray: #6c757d; - --gray-dark: #01041b; - --primary: #32bdea; - --secondary: #ff7e41; - --success: #78c091; - --info: #7ee2ff; - --warning: #ff9770; - --danger: #e08db4; - --light: #c7cbd3; - --dark: #01041b; - --orange: #ff7e41; - --purple: #4731b6; - --skyblue: #158df7; - --light-gray: #f4f5fa; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -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-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, - "Liberation Mono", "Courier New", monospace; -} -*, -:after, -:before { - box-sizing: border-box; -} -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block; -} -body { - font-size: 1rem; - line-height: 1.5; - text-align: left; - background-color: #fff; -} -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; -} -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} -p { - margin-top: 0; - margin-bottom: 1rem; -} -abbr[data-original-title], -abbr[title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; -} -address { - font-style: normal; - line-height: inherit; -} -address, -dl, -ol, -ul { - margin-bottom: 1rem; -} -dl, -ol, -ul { - margin-top: 0; -} -ol ol, -ol ul, -ul ol, -ul ul { - margin-bottom: 0; -} -dt { - font-weight: 700; -} -dd { - margin-bottom: 0.5rem; - margin-left: 0; -} -blockquote { - margin: 0 0 1rem; -} -b, -strong { - font-weight: bolder; -} -small { - font-size: 80%; -} -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -a { - color: #32bdea; - text-decoration: none; - background-color: transparent; -} -a:hover { - color: #1393bc; -} -a:not([href]), -a:not([href]):hover { - color: inherit; - text-decoration: none; -} -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, - Courier New, monospace; - font-size: 1em; -} -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} -figure { - margin: 0 0 1rem; -} -img { - border-style: none; -} -img, -svg { - vertical-align: middle; -} -svg { - overflow: hidden; -} -table { - border-collapse: collapse; -} -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} -th { - text-align: inherit; -} -label { - display: inline-block; - margin-bottom: 0.5rem; -} -button { - border-radius: 0; -} -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} -button, -input, -optgroup, -select, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -button, -input { - overflow: visible; -} -button, -select { - text-transform: none; -} -[role="button"] { - cursor: pointer; -} -select { - word-wrap: normal; -} -[type="button"], -[type="reset"], -[type="submit"], -button { - -webkit-appearance: button; -} -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled), -button:not(:disabled) { - cursor: pointer; -} -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button::-moz-focus-inner { - padding: 0; - border-style: none; -} -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} -textarea { - overflow: auto; - resize: vertical; -} -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} -@media (max-width: 1200px) { - legend { - font-size: calc(1.275rem + 0.3vw); - } -} -progress { - vertical-align: baseline; -} -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} -output { - display: inline-block; -} -summary { - display: list-item; - cursor: pointer; -} -template { - display: none; -} -[hidden] { - display: none !important; -} -.h1, -.h2, -.h3, -.h4, -.h5, -.h6, -h1, -h2, -h3, -h4, -h5, -h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; -} -.h1, -h1 { - font-size: 2.488em; -} -.h2, -h2 { - font-size: 2.074em; -} -.h3, -h3 { - font-size: 1.728em; -} -.h4, -h4 { - font-size: 1.44em; -} -.h5, -h5 { - font-size: 1.2em; -} -.h6, -h6 { - font-size: 1em; -} -.lead { - font-size: 1.25rem; - font-weight: 300; -} -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-1 { - font-size: calc(1.725rem + 5.7vw); - } -} -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-2 { - font-size: calc(1.675rem + 5.1vw); - } -} -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-3 { - font-size: calc(1.575rem + 3.9vw); - } -} -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-4 { - font-size: calc(1.475rem + 2.7vw); - } -} -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} -.small, -small { - font-size: 80%; - font-weight: 400; -} -.mark, -mark { - padding: 0.2em; - background-color: #fcf8e3; -} -.list-inline, -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer:before { - content: "\2014\00A0"; -} -.img-fluid, -.img-thumbnail { - max-width: 100%; - height: auto; -} -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #ccced2; - border-radius: 10px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); -} -.figure { - display: inline-block; -} -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} -.figure-caption { - font-size: 90%; - color: #6c757d; -} -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; -} -a > code { - color: inherit; -} -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 10px; - box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; -} -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} -.container-fluid, -.container-lg, -.container-md, -.container-sm, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container, - .container-sm { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container, - .container-md, - .container-sm { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container, - .container-lg, - .container-md, - .container-sm { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container, - .container-lg, - .container-md, - .container-sm, - .container-xl { - max-width: 1140px; - } -} -.row { - display: flex; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} -.col, -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12, -.col-auto, -.col-lg, -.col-lg-1, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg-auto, -.col-md, -.col-md-1, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md-auto, -.col-sm, -.col-sm-1, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm-auto, -.col-xl, -.col-xl-1, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; -} -.col { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; -} -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; -} -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; -} -.row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; -} -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; -} -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; -} -.row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; -} -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; -} -.col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; -} -.col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; -} -.col-3 { - flex: 0 0 25%; - max-width: 25%; -} -.col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; -} -.col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; -} -.col-6 { - flex: 0 0 50%; - max-width: 50%; -} -.col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; -} -.col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; -} -.col-9 { - flex: 0 0 75%; - max-width: 75%; -} -.col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; -} -.col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; -} -.col-12 { - flex: 0 0 100%; - max-width: 100%; -} -.order-first { - order: -1; -} -.order-last { - order: 13; -} -.order-0 { - order: 0; -} -.order-1 { - order: 1; -} -.order-2 { - order: 2; -} -.order-3 { - order: 3; -} -.order-4 { - order: 4; -} -.order-5 { - order: 5; -} -.order-6 { - order: 6; -} -.order-7 { - order: 7; -} -.order-8 { - order: 8; -} -.order-9 { - order: 9; -} -.order-10 { - order: 10; -} -.order-11 { - order: 11; -} -.order-12 { - order: 12; -} -.offset-1 { - margin-left: 8.33333%; -} -.offset-2 { - margin-left: 16.66667%; -} -.offset-3 { - margin-left: 25%; -} -.offset-4 { - margin-left: 33.33333%; -} -.offset-5 { - margin-left: 41.66667%; -} -.offset-6 { - margin-left: 50%; -} -.offset-7 { - margin-left: 58.33333%; -} -.offset-8 { - margin-left: 66.66667%; -} -.offset-9 { - margin-left: 75%; -} -.offset-10 { - margin-left: 83.33333%; -} -.offset-11 { - margin-left: 91.66667%; -} -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-sm-first { - order: -1; - } - .order-sm-last { - order: 13; - } - .order-sm-0 { - order: 0; - } - .order-sm-1 { - order: 1; - } - .order-sm-2 { - order: 2; - } - .order-sm-3 { - order: 3; - } - .order-sm-4 { - order: 4; - } - .order-sm-5 { - order: 5; - } - .order-sm-6 { - order: 6; - } - .order-sm-7 { - order: 7; - } - .order-sm-8 { - order: 8; - } - .order-sm-9 { - order: 9; - } - .order-sm-10 { - order: 10; - } - .order-sm-11 { - order: 11; - } - .order-sm-12 { - order: 12; - } - .offset-sm-0 { - margin-left: 0; - } - .offset-sm-1 { - margin-left: 8.33333%; - } - .offset-sm-2 { - margin-left: 16.66667%; - } - .offset-sm-3 { - margin-left: 25%; - } - .offset-sm-4 { - margin-left: 33.33333%; - } - .offset-sm-5 { - margin-left: 41.66667%; - } - .offset-sm-6 { - margin-left: 50%; - } - .offset-sm-7 { - margin-left: 58.33333%; - } - .offset-sm-8 { - margin-left: 66.66667%; - } - .offset-sm-9 { - margin-left: 75%; - } - .offset-sm-10 { - margin-left: 83.33333%; - } - .offset-sm-11 { - margin-left: 91.66667%; - } -} -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-md-first { - order: -1; - } - .order-md-last { - order: 13; - } - .order-md-0 { - order: 0; - } - .order-md-1 { - order: 1; - } - .order-md-2 { - order: 2; - } - .order-md-3 { - order: 3; - } - .order-md-4 { - order: 4; - } - .order-md-5 { - order: 5; - } - .order-md-6 { - order: 6; - } - .order-md-7 { - order: 7; - } - .order-md-8 { - order: 8; - } - .order-md-9 { - order: 9; - } - .order-md-10 { - order: 10; - } - .order-md-11 { - order: 11; - } - .order-md-12 { - order: 12; - } - .offset-md-0 { - margin-left: 0; - } - .offset-md-1 { - margin-left: 8.33333%; - } - .offset-md-2 { - margin-left: 16.66667%; - } - .offset-md-3 { - margin-left: 25%; - } - .offset-md-4 { - margin-left: 33.33333%; - } - .offset-md-5 { - margin-left: 41.66667%; - } - .offset-md-6 { - margin-left: 50%; - } - .offset-md-7 { - margin-left: 58.33333%; - } - .offset-md-8 { - margin-left: 66.66667%; - } - .offset-md-9 { - margin-left: 75%; - } - .offset-md-10 { - margin-left: 83.33333%; - } - .offset-md-11 { - margin-left: 91.66667%; - } -} -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-lg-first { - order: -1; - } - .order-lg-last { - order: 13; - } - .order-lg-0 { - order: 0; - } - .order-lg-1 { - order: 1; - } - .order-lg-2 { - order: 2; - } - .order-lg-3 { - order: 3; - } - .order-lg-4 { - order: 4; - } - .order-lg-5 { - order: 5; - } - .order-lg-6 { - order: 6; - } - .order-lg-7 { - order: 7; - } - .order-lg-8 { - order: 8; - } - .order-lg-9 { - order: 9; - } - .order-lg-10 { - order: 10; - } - .order-lg-11 { - order: 11; - } - .order-lg-12 { - order: 12; - } - .offset-lg-0 { - margin-left: 0; - } - .offset-lg-1 { - margin-left: 8.33333%; - } - .offset-lg-2 { - margin-left: 16.66667%; - } - .offset-lg-3 { - margin-left: 25%; - } - .offset-lg-4 { - margin-left: 33.33333%; - } - .offset-lg-5 { - margin-left: 41.66667%; - } - .offset-lg-6 { - margin-left: 50%; - } - .offset-lg-7 { - margin-left: 58.33333%; - } - .offset-lg-8 { - margin-left: 66.66667%; - } - .offset-lg-9 { - margin-left: 75%; - } - .offset-lg-10 { - margin-left: 83.33333%; - } - .offset-lg-11 { - margin-left: 91.66667%; - } -} -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-xl-first { - order: -1; - } - .order-xl-last { - order: 13; - } - .order-xl-0 { - order: 0; - } - .order-xl-1 { - order: 1; - } - .order-xl-2 { - order: 2; - } - .order-xl-3 { - order: 3; - } - .order-xl-4 { - order: 4; - } - .order-xl-5 { - order: 5; - } - .order-xl-6 { - order: 6; - } - .order-xl-7 { - order: 7; - } - .order-xl-8 { - order: 8; - } - .order-xl-9 { - order: 9; - } - .order-xl-10 { - order: 10; - } - .order-xl-11 { - order: 11; - } - .order-xl-12 { - order: 12; - } - .offset-xl-0 { - margin-left: 0; - } - .offset-xl-1 { - margin-left: 8.33333%; - } - .offset-xl-2 { - margin-left: 16.66667%; - } - .offset-xl-3 { - margin-left: 25%; - } - .offset-xl-4 { - margin-left: 33.33333%; - } - .offset-xl-5 { - margin-left: 41.66667%; - } - .offset-xl-6 { - margin-left: 50%; - } - .offset-xl-7 { - margin-left: 58.33333%; - } - .offset-xl-8 { - margin-left: 66.66667%; - } - .offset-xl-9 { - margin-left: 75%; - } - .offset-xl-10 { - margin-left: 83.33333%; - } - .offset-xl-11 { - margin-left: 91.66667%; - } -} -.table { - width: 100%; - margin-bottom: 1rem; - color: #676e8a; -} -.table td, -.table th { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dcdfe8; -} -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dcdfe8; -} -.table tbody + tbody { - border-top: 2px solid #dcdfe8; -} -.table-sm td, -.table-sm th { - padding: 0.3rem; -} -.table-bordered td, -.table-bordered th { - border: 1px solid #dcdfe8; -} -.table-bordered thead td, -.table-bordered thead th { - border-bottom-width: 2px; -} -.table-borderless tbody + tbody, -.table-borderless td, -.table-borderless th, -.table-borderless thead th { - border: 0; -} -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} -.table-hover tbody tr:hover { - color: #676e8a; - background-color: rgba(0, 0, 0, 0.075); -} -.table-primary, -.table-primary > td, -.table-primary > th { - background-color: #c6edf9; -} -.table-primary tbody + tbody, -.table-primary td, -.table-primary th, -.table-primary thead th { - border-color: #94ddf4; -} -.table-hover .table-primary:hover, -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #afe6f7; -} -.table-secondary, -.table-secondary > td, -.table-secondary > th { - background-color: #ffdbca; -} -.table-secondary tbody + tbody, -.table-secondary td, -.table-secondary th, -.table-secondary thead th { - border-color: #ffbc9c; -} -.table-hover .table-secondary:hover, -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #ffcab1; -} -.table-success, -.table-success > td, -.table-success > th { - background-color: #d9ede0; -} -.table-success tbody + tbody, -.table-success td, -.table-success th, -.table-success thead th { - border-color: #b9dec6; -} -.table-hover .table-success:hover, -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #c8e5d2; -} -.table-info, -.table-info > td, -.table-info > th { - background-color: #dbf7ff; -} -.table-info tbody + tbody, -.table-info td, -.table-info th, -.table-info thead th { - border-color: #bcf0ff; -} -.table-hover .table-info:hover, -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #c2f1ff; -} -.table-warning, -.table-warning > td, -.table-warning > th { - background-color: #ffe2d7; -} -.table-warning tbody + tbody, -.table-warning td, -.table-warning th, -.table-warning thead th { - border-color: #ffc9b5; -} -.table-hover .table-warning:hover, -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffd0be; -} -.table-danger, -.table-danger > td, -.table-danger > th { - background-color: #f6dfea; -} -.table-danger tbody + tbody, -.table-danger td, -.table-danger th, -.table-danger thead th { - border-color: #efc4d8; -} -.table-hover .table-danger:hover, -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f0cbdd; -} -.table-light, -.table-light > td, -.table-light > th { - background-color: #eff0f3; -} -.table-light tbody + tbody, -.table-light td, -.table-light th, -.table-light thead th { - border-color: #e2e4e8; -} -.table-hover .table-light:hover, -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #e0e2e8; -} -.table-dark, -.table-dark > td, -.table-dark > th { - background-color: #b8b9bf; -} -.table-dark tbody + tbody, -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #7b7c88; -} -.table-hover .table-dark:hover, -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #abacb3; -} -.table-orange, -.table-orange > td, -.table-orange > th { - background-color: #ffdbca; -} -.table-orange tbody + tbody, -.table-orange td, -.table-orange th, -.table-orange thead th { - border-color: #ffbc9c; -} -.table-hover .table-orange:hover, -.table-hover .table-orange:hover > td, -.table-hover .table-orange:hover > th { - background-color: #ffcab1; -} -.table-purple, -.table-purple > td, -.table-purple > th { - background-color: #cbc5eb; -} -.table-purple tbody + tbody, -.table-purple td, -.table-purple th, -.table-purple thead th { - border-color: #9f94d9; -} -.table-hover .table-purple:hover, -.table-hover .table-purple:hover > td, -.table-hover .table-purple:hover > th { - background-color: #bab2e4; -} -.table-skyblue, -.table-skyblue > td, -.table-skyblue > th { - background-color: #bddffd; -} -.table-skyblue tbody + tbody, -.table-skyblue td, -.table-skyblue th, -.table-skyblue thead th { - border-color: #85c4fb; -} -.table-hover .table-skyblue:hover, -.table-hover .table-skyblue:hover > td, -.table-hover .table-skyblue:hover > th { - background-color: #a4d3fc; -} -.table-light-gray, -.table-light-gray > td, -.table-light-gray > th { - background-color: #fcfcfe; -} -.table-light-gray tbody + tbody, -.table-light-gray td, -.table-light-gray th, -.table-light-gray thead th { - border-color: #f9fafc; -} -.table-hover .table-light-gray:hover, -.table-hover .table-light-gray:hover > td, -.table-hover .table-light-gray:hover > th { - background-color: #e9e9f8; -} -.table-active, -.table-active > td, -.table-active > th, -.table-hover .table-active:hover, -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} -.table .thead-dark th { - color: #fff; - background-color: #01041b; - border-color: #020940; -} -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dcdfe8; -} -.table-dark { - color: #fff; - background-color: #01041b; -} -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #020940; -} -.table-dark.table-bordered { - border: 0; -} -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: hsla(0, 0%, 100%, 0.05); -} -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: hsla(0, 0%, 100%, 0.075); -} -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} -.table-responsive > .table-bordered { - border: 0; -} -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #a6e2f6; - outline: 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, -.form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} -input[type="date"].form-control, -input[type="datetime-local"].form-control, -input[type="month"].form-control, -input[type="time"].form-control { - appearance: none; -} -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 0.75rem; - line-height: 1.5; -} -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.75rem; - line-height: 1.5; -} -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #676e8a; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-lg, -.form-control-plaintext.form-control-sm { - padding-right: 0; - padding-left: 0; -} -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; -} -.form-control-lg, -.form-control-sm { - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; -} -select.form-control[multiple], -select.form-control[size], -textarea.form-control { - height: auto; -} -.form-group { - margin-bottom: 1rem; -} -.form-text { - display: block; - margin-top: 0.25rem; -} -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input:disabled ~ .form-check-label, -.form-check-input[disabled] ~ .form-check-label { - color: #6c757d; -} -.form-check-label { - margin-bottom: 0; -} -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #78c091; -} -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.75rem; - line-height: 1.5; - color: #fff; - background-color: rgba(120, 192, 145, 0.9); - border-radius: 10px; -} -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip, -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip { - display: block; -} -.form-control.is-valid, -.was-validated .form-control:valid { - border-color: #78c091; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%2378C091' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.form-control.is-valid:focus, -.was-validated .form-control:valid:focus { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} -.was-validated textarea.form-control:valid, -textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right - calc(0.375em + 0.1875rem); -} -.custom-select.is-valid, -.was-validated .custom-select:valid { - border-color: #78c091; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3E%3Cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") - no-repeat right 0.75rem center/8px 10px, - url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%2378C091' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") - #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) - calc(0.75em + 0.375rem); -} -.custom-select.is-valid:focus, -.was-validated .custom-select:valid:focus { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} -.form-check-input.is-valid ~ .form-check-label, -.was-validated .form-check-input:valid ~ .form-check-label { - color: #78c091; -} -.form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip, -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip { - display: block; -} -.custom-control-input.is-valid ~ .custom-control-label, -.was-validated .custom-control-input:valid ~ .custom-control-label { - color: #78c091; -} -.custom-control-input.is-valid ~ .custom-control-label:before, -.was-validated .custom-control-input:valid ~ .custom-control-label:before { - border-color: #78c091; -} -.custom-control-input.is-valid:checked ~ .custom-control-label:before, -.was-validated - .custom-control-input:valid:checked - ~ .custom-control-label:before { - border-color: #9bd0ad; - background-color: #9bd0ad; -} -.custom-control-input.is-valid:focus ~ .custom-control-label:before, -.was-validated - .custom-control-input:valid:focus - ~ .custom-control-label:before { - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} -.custom-control-input.is-valid:focus:not(:checked) - ~ .custom-control-label:before, -.custom-file-input.is-valid ~ .custom-file-label, -.was-validated - .custom-control-input:valid:focus:not(:checked) - ~ .custom-control-label:before, -.was-validated .custom-file-input:valid ~ .custom-file-label { - border-color: #78c091; -} -.custom-file-input.is-valid:focus ~ .custom-file-label, -.was-validated .custom-file-input:valid:focus ~ .custom-file-label { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #e08db4; -} -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.75rem; - line-height: 1.5; - color: #fff; - background-color: rgba(224, 141, 180, 0.9); - border-radius: 10px; -} -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip, -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip { - display: block; -} -.form-control.is-invalid, -.was-validated .form-control:invalid { - border-color: #e08db4; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E08DB4' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23E08DB4' stroke='none'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.form-control.is-invalid:focus, -.was-validated .form-control:invalid:focus { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} -.was-validated textarea.form-control:invalid, -textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right - calc(0.375em + 0.1875rem); -} -.custom-select.is-invalid, -.was-validated .custom-select:invalid { - border-color: #e08db4; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3E%3Cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") - no-repeat right 0.75rem center/8px 10px, - url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E08DB4' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23E08DB4' stroke='none'/%3E%3C/svg%3E") - #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) - calc(0.75em + 0.375rem); -} -.custom-select.is-invalid:focus, -.was-validated .custom-select:invalid:focus { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} -.form-check-input.is-invalid ~ .form-check-label, -.was-validated .form-check-input:invalid ~ .form-check-label { - color: #e08db4; -} -.form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip, -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip { - display: block; -} -.custom-control-input.is-invalid ~ .custom-control-label, -.was-validated .custom-control-input:invalid ~ .custom-control-label { - color: #e08db4; -} -.custom-control-input.is-invalid ~ .custom-control-label:before, -.was-validated .custom-control-input:invalid ~ .custom-control-label:before { - border-color: #e08db4; -} -.custom-control-input.is-invalid:checked ~ .custom-control-label:before, -.was-validated - .custom-control-input:invalid:checked - ~ .custom-control-label:before { - border-color: #ebb5ce; - background-color: #ebb5ce; -} -.custom-control-input.is-invalid:focus ~ .custom-control-label:before, -.was-validated - .custom-control-input:invalid:focus - ~ .custom-control-label:before { - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} -.custom-control-input.is-invalid:focus:not(:checked) - ~ .custom-control-label:before, -.custom-file-input.is-invalid ~ .custom-file-label, -.was-validated - .custom-control-input:invalid:focus:not(:checked) - ~ .custom-control-label:before, -.was-validated .custom-file-input:invalid ~ .custom-file-label { - border-color: #e08db4; -} -.custom-file-input.is-invalid:focus ~ .custom-file-label, -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - justify-content: center; - } - .form-inline .form-group, - .form-inline label { - display: flex; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-group { - flex: 0 0 auto; - flex-flow: row wrap; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .custom-select, - .form-inline .input-group { - width: auto; - } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - align-items: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} -.fade { - transition: opacity 0.15s linear; -} -@media (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} -.fade:not(.show) { - opacity: 0; -} -.collapse:not(.show) { - display: none; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} -@media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} -.dropdown, -.dropleft, -.dropright, -.dropup { - position: relative; -} -.dropdown-toggle { - white-space: nowrap; -} -.dropdown-toggle:after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty:after { - margin-left: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #676e8a; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 10px; - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175); -} -.dropdown-menu-left { - right: auto; - left: 0; -} -.dropdown-menu-right { - right: 0; - left: auto; -} -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} -.dropup .dropdown-toggle:after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} -.dropup .dropdown-toggle:empty:after { - margin-left: 0; -} -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} -.dropright .dropdown-toggle:after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} -.dropright .dropdown-toggle:empty:after { - margin-left: 0; -} -.dropright .dropdown-toggle:after { - vertical-align: 0; -} -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} -.dropleft .dropdown-toggle:after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - display: none; -} -.dropleft .dropdown-toggle:before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} -.dropleft .dropdown-toggle:empty:after { - margin-left: 0; -} -.dropleft .dropdown-toggle:before { - vertical-align: 0; -} -.dropdown-menu[x-placement^="bottom"], -.dropdown-menu[x-placement^="left"], -.dropdown-menu[x-placement^="right"], -.dropdown-menu[x-placement^="top"] { - right: auto; - bottom: auto; -} -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:focus, -.dropdown-item:hover { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, -.dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #32bdea; -} -.dropdown-item.disabled, -.dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; -} -.dropdown-menu.show { - display: block; -} -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.75rem; - color: #6c757d; - white-space: nowrap; -} -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; -} -.btn-group-vertical > .btn, -.btn-group > .btn { - position: relative; - flex: 1 1 auto; -} -.btn-group-vertical > .btn.active, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:hover, -.btn-group > .btn.active, -.btn-group > .btn:active, -.btn-group > .btn:focus, -.btn-group > .btn:hover { - z-index: 1; -} -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} -.btn-group > .btn-group:not(:first-child), -.btn-group > .btn:not(:first-child) { - margin-left: -1px; -} -.btn-group > .btn-group:not(:last-child) > .btn, -.btn-group > .btn:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn-group:not(:first-child) > .btn, -.btn-group > .btn:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split:after, -.dropright .dropdown-toggle-split:after, -.dropup .dropdown-toggle-split:after { - margin-left: 0; -} -.dropleft .dropdown-toggle-split:before { - margin-right: 0; -} -.btn-group-sm > .btn + .dropdown-toggle-split, -.btn-sm + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} -.btn-group-lg > .btn + .dropdown-toggle-split, -.btn-lg + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} -.btn-group.show .dropdown-toggle { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.show .dropdown-toggle.btn-link { - box-shadow: none; -} -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} -.btn-group-vertical > .btn-group:not(:first-child), -.btn-group-vertical > .btn:not(:first-child) { - margin-top: -1px; -} -.btn-group-vertical > .btn-group:not(:last-child) > .btn, -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:not(:first-child) > .btn, -.btn-group-vertical > .btn:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn-group > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn input[type="radio"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; -} -.input-group > .custom-file, -.input-group > .custom-select, -.input-group > .form-control, -.input-group > .form-control-plaintext { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0; -} -.input-group > .custom-file + .custom-file, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .form-control, -.input-group > .custom-select + .custom-file, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .form-control, -.input-group > .form-control + .custom-file, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .form-control, -.input-group > .form-control-plaintext + .custom-file, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .form-control { - margin-left: -1px; -} -.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, -.input-group > .custom-select:focus, -.input-group > .form-control:focus { - z-index: 3; -} -.input-group > .custom-file .custom-file-input:focus { - z-index: 4; -} -.input-group > .custom-select:not(:last-child), -.input-group > .form-control:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-select:not(:first-child), -.input-group > .form-control:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .custom-file { - display: flex; - align-items: center; -} -.input-group > .custom-file:not(:last-child) .custom-file-label, -.input-group > .custom-file:not(:last-child) .custom-file-label:after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group-append, -.input-group-prepend { - display: flex; -} -.input-group-append .btn, -.input-group-prepend .btn { - position: relative; - z-index: 2; -} -.input-group-append .btn:focus, -.input-group-prepend .btn:focus { - z-index: 3; -} -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .btn, -.input-group-append .input-group-text + .input-group-text, -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-prepend .input-group-text + .input-group-text { - margin-left: -1px; -} -.input-group-prepend { - margin-right: -1px; -} -.input-group-append { - margin-left: -1px; -} -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 10px; -} -.input-group-text input[type="checkbox"], -.input-group-text input[type="radio"] { - margin-top: 0; -} -.input-group-lg > .custom-select, -.input-group-lg > .form-control:not(textarea) { - height: calc(1.5em + 1rem + 2px); -} -.input-group-lg > .custom-select, -.input-group-lg > .form-control, -.input-group-lg > .input-group-append > .btn, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-prepend > .input-group-text { - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} -.input-group-sm > .custom-select, -.input-group-sm > .form-control:not(textarea) { - height: calc(1.5em + 0.5rem + 2px); -} -.input-group-sm > .custom-select, -.input-group-sm > .form-control, -.input-group-sm > .input-group-append > .btn, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-prepend > .input-group-text { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} -.input-group - > .input-group-append:last-child - > .btn:not(:last-child):not(.dropdown-toggle), -.input-group - > .input-group-append:last-child - > .input-group-text:not(:last-child), -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group - > .input-group-prepend:first-child - > .input-group-text:not(:first-child), -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.custom-control { - position: relative; - display: block; - min-height: 24; - padding-left: 1.5rem; -} -.custom-control-inline { - display: inline-flex; - margin-right: 1rem; -} -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 12.5rem; - opacity: 0; -} -.custom-control-input:checked ~ .custom-control-label:before { - color: #fff; - box-shadow: none; -} -.custom-control-input:focus ~ .custom-control-label:before { - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-control-input:focus:not(:checked) ~ .custom-control-label:before { - border-color: #a6e2f6; -} -.custom-control-input:not(:disabled):active ~ .custom-control-label:before { - color: #fff; - background-color: #d4f1fb; - border-color: #d4f1fb; - box-shadow: none; -} -.custom-control-input:disabled ~ .custom-control-label, -.custom-control-input[disabled] ~ .custom-control-label { - color: #6c757d; -} -.custom-control-input:disabled ~ .custom-control-label:before, -.custom-control-input[disabled] ~ .custom-control-label:before { - background-color: #e9ecef; -} -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; -} -.custom-control-label:before { - pointer-events: none; - background-color: #fff; - border: 1px solid #adb5bd; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.custom-control-label:after, -.custom-control-label:before { - position: absolute; - top: 11.5rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; -} -.custom-control-label:after { - background: no-repeat 50%/50% 50%; -} -.custom-checkbox .custom-control-label:before { - border-radius: 10px; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E"); -} -.custom-checkbox - .custom-control-input:indeterminate - ~ .custom-control-label:before { - border-color: #32bdea; - background-color: #32bdea; - box-shadow: none; -} -.custom-checkbox - .custom-control-input:indeterminate - ~ .custom-control-label:after { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); -} -.custom-checkbox - .custom-control-input:disabled:checked - ~ .custom-control-label:before { - background-color: rgba(50, 189, 234, 0.5); -} -.custom-checkbox - .custom-control-input:disabled:indeterminate - ~ .custom-control-label:before { - background-color: rgba(50, 189, 234, 0.5); -} -.custom-radio .custom-control-label:before { - border-radius: 50%; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label:after { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); -} -.custom-radio - .custom-control-input:disabled:checked - ~ .custom-control-label:before { - background-color: rgba(50, 189, 234, 0.5); -} -.custom-switch { - padding-left: 2.25rem; -} -.custom-switch .custom-control-label:before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} -.custom-switch .custom-control-label:after { - top: calc(11.5rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label:after { - transition: none; - } -} -.custom-switch .custom-control-input:checked ~ .custom-control-label:after { - background-color: #fff; - transform: translateX(0.75rem); -} -.custom-switch - .custom-control-input:disabled:checked - ~ .custom-control-label:before { - background-color: rgba(50, 189, 234, 0.5); -} -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff - url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3E%3Cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") - no-repeat right 0.75rem center/8px 10px; - border: 1px solid #ced4da; - border-radius: 10px; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); - appearance: none; -} -.custom-select:focus { - border-color: #a6e2f6; - outline: 0; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.custom-select[multiple], -.custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} -.custom-select::-ms-expand { - display: none; -} -.custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.75rem; -} -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 0.75rem; -} -.custom-file { - display: inline-block; - margin-bottom: 0; -} -.custom-file, -.custom-file-input { - position: relative; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); -} -.custom-file-input { - z-index: 2; - margin: 0; - opacity: 0; -} -.custom-file-input:focus ~ .custom-file-label { - border-color: #a6e2f6; - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-file-input:disabled ~ .custom-file-label, -.custom-file-input[disabled] ~ .custom-file-label { - background-color: #e9ecef; -} -.custom-file-input:lang(en) ~ .custom-file-label:after { - content: "Browse"; -} -.custom-file-input ~ .custom-file-label[data-browse]:after { - content: attr(data-browse); -} -.custom-file-label { - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - font-weight: 400; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 10px; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.custom-file-label, -.custom-file-label:after { - position: absolute; - top: 0; - right: 0; - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; -} -.custom-file-label:after { - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 10px 10px 0; -} -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - appearance: none; -} -.custom-range:focus { - outline: none; -} -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-range::-moz-focus-outer { - border: 0; -} -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #32bdea; - border: 0; - border-radius: 1rem; - box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; - } -} -.custom-range::-webkit-slider-thumb:active { - background-color: #d4f1fb; -} -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #ccced2; - border-color: transparent; - border-radius: 1rem; - box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); -} -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #32bdea; - border: 0; - border-radius: 1rem; - box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; - } -} -.custom-range::-moz-range-thumb:active { - background-color: #d4f1fb; -} -.custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #ccced2; - border-color: transparent; - border-radius: 1rem; - box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); -} -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #32bdea; - border: 0; - border-radius: 1rem; - box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; - } -} -.custom-range::-ms-thumb:active { - background-color: #d4f1fb; -} -.custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; - box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); -} -.custom-range::-ms-fill-lower, -.custom-range::-ms-fill-upper { - background-color: #ccced2; - border-radius: 1rem; -} -.custom-range::-ms-fill-upper { - margin-right: 15px; -} -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; -} -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; -} -.custom-range:disabled::-moz-range-track { - cursor: default; -} -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd; -} -.custom-control-label:before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .custom-control-label:before, - .custom-file-label, - .custom-select { - transition: none; - } -} -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:focus, -.nav-link:hover { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} -.nav-tabs { - border-bottom: 1px solid #ccced2; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 10px; - border-top-right-radius: 10px; -} -.nav-tabs .nav-link:focus, -.nav-tabs .nav-link:hover { - border-color: #e9ecef #e9ecef #ccced2; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-item.show .nav-link, -.nav-tabs .nav-link.active { - color: #495057; - background-color: #fff; - border-color: #ccced2 #ccced2 #fff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.nav-pills .nav-link { - border-radius: 10px; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #32bdea; -} -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; -} -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.navbar { - position: relative; - padding: 0.5rem 1rem; -} -.navbar, -.navbar .container, -.navbar .container-fluid, -.navbar .container-lg, -.navbar .container-md, -.navbar .container-sm, -.navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; -} -.navbar-brand { - display: inline-block; - padding-top: 3.5rem; - padding-bottom: 3.5rem; - margin-right: 1rem; - font-size: 0.75rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:focus, -.navbar-brand:hover { - text-decoration: none; -} -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; -} -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 0.75rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 10px; -} -.navbar-toggler:focus, -.navbar-toggler:hover { - text-decoration: none; -} -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat 50%; - background-size: 100% 100%; -} -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, - .navbar-expand-sm > .container-lg, - .navbar-expand-sm > .container-md, - .navbar-expand-sm > .container-sm, - .navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, - .navbar-expand-sm > .container-lg, - .navbar-expand-sm > .container-md, - .navbar-expand-sm > .container-sm, - .navbar-expand-sm > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } -} -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, - .navbar-expand-md > .container-lg, - .navbar-expand-md > .container-md, - .navbar-expand-md > .container-sm, - .navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, - .navbar-expand-md > .container-lg, - .navbar-expand-md > .container-md, - .navbar-expand-md > .container-sm, - .navbar-expand-md > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } -} -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, - .navbar-expand-lg > .container-lg, - .navbar-expand-lg > .container-md, - .navbar-expand-lg > .container-sm, - .navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, - .navbar-expand-lg > .container-lg, - .navbar-expand-lg > .container-md, - .navbar-expand-lg > .container-sm, - .navbar-expand-lg > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } -} -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, - .navbar-expand-xl > .container-lg, - .navbar-expand-xl > .container-md, - .navbar-expand-xl > .container-sm, - .navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, - .navbar-expand-xl > .container-lg, - .navbar-expand-xl > .container-md, - .navbar-expand-xl > .container-sm, - .navbar-expand-xl > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } -} -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-lg, -.navbar-expand > .container-md, -.navbar-expand > .container-sm, -.navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-lg, -.navbar-expand > .container-md, -.navbar-expand > .container-sm, -.navbar-expand > .container-xl { - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} -.navbar-light .navbar-brand, -.navbar-light .navbar-brand:focus, -.navbar-light .navbar-brand:hover { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:focus, -.navbar-light .navbar-nav .nav-link:hover { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.active, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .show > .nav-link { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a, -.navbar-light .navbar-text a:focus, -.navbar-light .navbar-text a:hover { - color: rgba(0, 0, 0, 0.9); -} -.navbar-dark .navbar-brand, -.navbar-dark .navbar-brand:focus, -.navbar-dark .navbar-brand:hover { - color: #fff; -} -.navbar-dark .navbar-nav .nav-link { - color: hsla(0, 0%, 100%, 0.5); -} -.navbar-dark .navbar-nav .nav-link:focus, -.navbar-dark .navbar-nav .nav-link:hover { - color: hsla(0, 0%, 100%, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: hsla(0, 0%, 100%, 0.25); -} -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.active, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .show > .nav-link { - color: #fff; -} -.navbar-dark .navbar-toggler { - color: hsla(0, 0%, 100%, 0.5); - border-color: hsla(0, 0%, 100%, 0.1); -} -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-dark .navbar-text { - color: hsla(0, 0%, 100%, 0.5); -} -.navbar-dark .navbar-text a, -.navbar-dark .navbar-text a:focus, -.navbar-dark .navbar-text a:hover { - color: #fff; -} -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group { - border-top: inherit; - border-bottom: inherit; -} -.card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: 9px; - border-bottom-left-radius: 9px; -} -.card-body { - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem; -} -.card-title { - margin-bottom: 0.75rem; -} -.card-subtitle { - margin-top: -0.375rem; -} -.card-subtitle, -.card-text:last-child { - margin-bottom: 0; -} -.card-link:hover { - text-decoration: none; -} -.card-link + .card-link { - margin-left: 1.25rem; -} -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: 9px 9px 0 0; -} -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 9px 9px; -} -.card-header-tabs { - margin-bottom: -0.75rem; - border-bottom: 0; -} -.card-header-pills, -.card-header-tabs { - margin-right: -0.625rem; - margin-left: -0.625rem; -} -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} -.card-img, -.card-img-bottom, -.card-img-top { - flex-shrink: 0; - width: 100%; -} -.card-img, -.card-img-top { - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.card-img, -.card-img-bottom { - border-bottom-right-radius: 9px; - border-bottom-left-radius: 9px; -} -.card-deck .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-deck { - display: flex; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} -.card-group > .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; - } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-header, - .card-group > .card:not(:last-child) .card-img-top { - border-top-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-footer, - .card-group > .card:not(:last-child) .card-img-bottom { - border-bottom-right-radius: 0; - } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-header, - .card-group > .card:not(:first-child) .card-img-top { - border-top-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-footer, - .card-group > .card:not(:first-child) .card-img-bottom { - border-bottom-left-radius: 0; - } -} -.card-columns .card { - margin-bottom: 0.75rem; -} -@media (min-width: 576px) { - .card-columns { - column-count: 3; - column-gap: 1.25rem; - orphans: 1; - widows: 1; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} -.accordion > .card { - overflow: hidden; -} -.accordion > .card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.accordion > .card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.accordion > .card > .card-header { - border-radius: 0; - margin-bottom: -1px; -} -.breadcrumb { - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 10px; -} -.breadcrumb, -.breadcrumb-item { - display: flex; -} -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; -} -.breadcrumb-item + .breadcrumb-item:before { - display: inline-block; - padding-right: 0.5rem; - color: #6c757d; - content: "/"; -} -.breadcrumb-item + .breadcrumb-item:hover:before { - text-decoration: underline; - text-decoration: none; -} -.breadcrumb-item.active { - color: #6c757d; -} -.pagination { - display: flex; - padding-left: 0; - list-style: none; - border-radius: 10px; -} -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #32bdea; - background-color: #fff; - border: 1px solid #ccced2; -} -.page-link:hover { - z-index: 2; - color: #1393bc; - text-decoration: none; - background-color: #e9ecef; - border-color: #ccced2; -} -.page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 10px; - border-bottom-left-radius: 10px; -} -.page-item:last-child .page-link { - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; -} -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #ccced2; -} -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 0.75rem; - line-height: 1.5; -} -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 10px; - border-bottom-left-radius: 10px; -} -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; -} -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; -} -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 10px; - border-bottom-left-radius: 10px; -} -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; -} -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .badge { - transition: none; - } -} -a.badge:focus, -a.badge:hover { - text-decoration: none; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} -.badge-primary { - color: #fff; - background-color: #32bdea; -} -a.badge-primary:focus, -a.badge-primary:hover { - color: #fff; - background-color: #16a5d3; -} -a.badge-primary.focus, -a.badge-primary:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} -.badge-secondary { - color: #fff; - background-color: #ff7e41; -} -a.badge-secondary:focus, -a.badge-secondary:hover { - color: #fff; - background-color: #ff5b0e; -} -a.badge-secondary.focus, -a.badge-secondary:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.badge-success { - color: #fff; - background-color: #78c091; -} -a.badge-success:focus, -a.badge-success:hover { - color: #fff; - background-color: #55b075; -} -a.badge-success.focus, -a.badge-success:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} -.badge-info { - color: #fff; - background-color: #7ee2ff; -} -a.badge-info:focus, -a.badge-info:hover { - color: #fff; - background-color: #4bd7ff; -} -a.badge-info.focus, -a.badge-info:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} -.badge-warning { - color: #fff; - background-color: #ff9770; -} -a.badge-warning:focus, -a.badge-warning:hover { - color: #fff; - background-color: #ff723d; -} -a.badge-warning.focus, -a.badge-warning:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} -.badge-danger { - color: #fff; - background-color: #e08db4; -} -a.badge-danger:focus, -a.badge-danger:hover { - color: #fff; - background-color: #d5659a; -} -a.badge-danger.focus, -a.badge-danger:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} -.badge-light { - color: #212529; - background-color: #c7cbd3; -} -a.badge-light:focus, -a.badge-light:hover { - color: #212529; - background-color: #aab0bd; -} -a.badge-light.focus, -a.badge-light:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} -.badge-dark { - color: #fff; - background-color: #01041b; -} -a.badge-dark:focus, -a.badge-dark:hover { - color: #fff; - background-color: #000; -} -a.badge-dark.focus, -a.badge-dark:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} -.badge-orange { - color: #fff; - background-color: #ff7e41; -} -a.badge-orange:focus, -a.badge-orange:hover { - color: #fff; - background-color: #ff5b0e; -} -a.badge-orange.focus, -a.badge-orange:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.badge-purple { - color: #fff; - background-color: #4731b6; -} -a.badge-purple:focus, -a.badge-purple:hover { - color: #fff; - background-color: #37268e; -} -a.badge-purple.focus, -a.badge-purple:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} -.badge-skyblue { - color: #fff; - background-color: #158df7; -} -a.badge-skyblue:focus, -a.badge-skyblue:hover { - color: #fff; - background-color: #0773d2; -} -a.badge-skyblue.focus, -a.badge-skyblue:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} -.badge-light-gray { - color: #212529; - background-color: #f4f5fa; -} -a.badge-light-gray:focus, -a.badge-light-gray:hover { - color: #212529; - background-color: #d1d5ea; -} -a.badge-light-gray.focus, -a.badge-light-gray:focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 10px; -} -.alert-heading { - color: inherit; -} -.alert-link { - font-weight: 700; -} -.alert-dismissible { - padding-right: 26.5rem; -} -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} -.alert-primary { - color: #1a627a; - background-color: #d6f2fb; - border-color: #c6edf9; -} -.alert-primary hr { - border-top-color: #afe6f7; -} -.alert-primary .alert-link { - color: #114050; -} -.alert-secondary { - color: #854222; - background-color: #ffe5d9; - border-color: #ffdbca; -} -.alert-secondary hr { - border-top-color: #ffcab1; -} -.alert-secondary .alert-link { - color: #5c2e18; -} -.alert-success { - color: #3e644b; - background-color: #e4f2e9; - border-color: #d9ede0; -} -.alert-success hr { - border-top-color: #c8e5d2; -} -.alert-success .alert-link { - color: #2a4533; -} -.alert-info { - color: #427685; - background-color: #e5f9ff; - border-color: #dbf7ff; -} -.alert-info hr { - border-top-color: #c2f1ff; -} -.alert-info .alert-link { - color: #315863; -} -.alert-warning { - color: #854f3a; - background-color: #ffeae2; - border-color: #ffe2d7; -} -.alert-warning hr { - border-top-color: #ffd0be; -} -.alert-warning .alert-link { - color: #613a2b; -} -.alert-danger { - color: #74495e; - background-color: #f9e8f0; - border-color: #f6dfea; -} -.alert-danger hr { - border-top-color: #f0cbdd; -} -.alert-danger .alert-link { - color: #553545; -} -.alert-light { - color: #676a6e; - background-color: #f4f5f6; - border-color: #eff0f3; -} -.alert-light hr { - border-top-color: #e0e2e8; -} -.alert-light .alert-link { - color: #4e5154; -} -.alert-dark { - color: #01020e; - background-color: #cccdd1; - border-color: #b8b9bf; -} -.alert-dark hr { - border-top-color: #abacb3; -} -.alert-dark .alert-link { - color: #000; -} -.alert-orange { - color: #854222; - background-color: #ffe5d9; - border-color: #ffdbca; -} -.alert-orange hr { - border-top-color: #ffcab1; -} -.alert-orange .alert-link { - color: #5c2e18; -} -.alert-purple { - color: #25195f; - background-color: #dad6f0; - border-color: #cbc5eb; -} -.alert-purple hr { - border-top-color: #bab2e4; -} -.alert-purple .alert-link { - color: #150e37; -} -.alert-skyblue { - color: #0b4980; - background-color: #d0e8fd; - border-color: #bddffd; -} -.alert-skyblue hr { - border-top-color: #a4d3fc; -} -.alert-skyblue .alert-link { - color: #072e51; -} -.alert-light-gray { - color: #7f7f82; - background-color: #fdfdfe; - border-color: #fcfcfe; -} -.alert-light-gray hr { - border-top-color: #e9e9f8; -} -.alert-light-gray .alert-link { - color: #666668; -} -@keyframes a { - 0% { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} -.progress { - height: 1rem; - line-height: 0; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 10px; - box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1); -} -.progress, -.progress-bar { - display: flex; - overflow: hidden; -} -.progress-bar { - flex-direction: column; - justify-content: center; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #32bdea; - transition: width 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; - } -} -.progress-bar-striped { - background-image: linear-gradient( - 45deg, - hsla(0, 0%, 100%, 0.15) 25%, - transparent 0, - transparent 50%, - hsla(0, 0%, 100%, 0.15) 0, - hsla(0, 0%, 100%, 0.15) 75%, - transparent 0, - transparent - ); - background-size: 1rem 1rem; -} -.progress-bar-animated { - animation: a 1s linear infinite; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; - } -} -.media { - display: flex; - align-items: flex-start; -} -.media-body { - flex: 1; -} -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 10px; -} -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:focus, -.list-group-item-action:hover { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #676e8a; - background-color: #e9ecef; -} -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; -} -.list-group-item.disabled, -.list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.list-group-item + .list-group-item { - border-top-width: 0; -} -.list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; -} -.list-group-horizontal { - flex-direction: row; -} -.list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; -} -.list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; -} -.list-group-horizontal > .list-group-item.active { - margin-top: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; -} -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; - } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; - } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; - } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; - } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -.list-group-flush { - border-radius: 0; -} -.list-group-flush > .list-group-item { - border-width: 0 0 1px; -} -.list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; -} -.list-group-item-primary { - color: #1a627a; - background-color: #c6edf9; -} -.list-group-item-primary.list-group-item-action:focus, -.list-group-item-primary.list-group-item-action:hover { - color: #1a627a; - background-color: #afe6f7; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #1a627a; - border-color: #1a627a; -} -.list-group-item-secondary { - color: #854222; - background-color: #ffdbca; -} -.list-group-item-secondary.list-group-item-action:focus, -.list-group-item-secondary.list-group-item-action:hover { - color: #854222; - background-color: #ffcab1; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #854222; - border-color: #854222; -} -.list-group-item-success { - color: #3e644b; - background-color: #d9ede0; -} -.list-group-item-success.list-group-item-action:focus, -.list-group-item-success.list-group-item-action:hover { - color: #3e644b; - background-color: #c8e5d2; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #3e644b; - border-color: #3e644b; -} -.list-group-item-info { - color: #427685; - background-color: #dbf7ff; -} -.list-group-item-info.list-group-item-action:focus, -.list-group-item-info.list-group-item-action:hover { - color: #427685; - background-color: #c2f1ff; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #427685; - border-color: #427685; -} -.list-group-item-warning { - color: #854f3a; - background-color: #ffe2d7; -} -.list-group-item-warning.list-group-item-action:focus, -.list-group-item-warning.list-group-item-action:hover { - color: #854f3a; - background-color: #ffd0be; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #854f3a; - border-color: #854f3a; -} -.list-group-item-danger { - color: #74495e; - background-color: #f6dfea; -} -.list-group-item-danger.list-group-item-action:focus, -.list-group-item-danger.list-group-item-action:hover { - color: #74495e; - background-color: #f0cbdd; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #74495e; - border-color: #74495e; -} -.list-group-item-light { - color: #676a6e; - background-color: #eff0f3; -} -.list-group-item-light.list-group-item-action:focus, -.list-group-item-light.list-group-item-action:hover { - color: #676a6e; - background-color: #e0e2e8; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #676a6e; - border-color: #676a6e; -} -.list-group-item-dark { - color: #01020e; - background-color: #b8b9bf; -} -.list-group-item-dark.list-group-item-action:focus, -.list-group-item-dark.list-group-item-action:hover { - color: #01020e; - background-color: #abacb3; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #01020e; - border-color: #01020e; -} -.list-group-item-orange { - color: #854222; - background-color: #ffdbca; -} -.list-group-item-orange.list-group-item-action:focus, -.list-group-item-orange.list-group-item-action:hover { - color: #854222; - background-color: #ffcab1; -} -.list-group-item-orange.list-group-item-action.active { - color: #fff; - background-color: #854222; - border-color: #854222; -} -.list-group-item-purple { - color: #25195f; - background-color: #cbc5eb; -} -.list-group-item-purple.list-group-item-action:focus, -.list-group-item-purple.list-group-item-action:hover { - color: #25195f; - background-color: #bab2e4; -} -.list-group-item-purple.list-group-item-action.active { - color: #fff; - background-color: #25195f; - border-color: #25195f; -} -.list-group-item-skyblue { - color: #0b4980; - background-color: #bddffd; -} -.list-group-item-skyblue.list-group-item-action:focus, -.list-group-item-skyblue.list-group-item-action:hover { - color: #0b4980; - background-color: #a4d3fc; -} -.list-group-item-skyblue.list-group-item-action.active { - color: #fff; - background-color: #0b4980; - border-color: #0b4980; -} -.list-group-item-light-gray { - color: #7f7f82; - background-color: #fcfcfe; -} -.list-group-item-light-gray.list-group-item-action:focus, -.list-group-item-light-gray.list-group-item-action:hover { - color: #7f7f82; - background-color: #e9e9f8; -} -.list-group-item-light-gray.list-group-item-action.active { - color: #fff; - background-color: #7f7f82; - border-color: #7f7f82; -} -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: 0.5; -} -@media (max-width: 1200px) { - .close { - font-size: calc(1.275rem + 0.3vw); - } -} -.close:hover { - color: #000; - text-decoration: none; -} -.close:not(:disabled):not(.disabled):focus, -.close:not(:disabled):not(.disabled):hover { - opacity: 0.75; -} -button.close { - padding: 0; - background-color: transparent; - border: 0; -} -a.close.disabled { - pointer-events: none; -} -.modal-open { - overflow: hidden; -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; -} -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translateY(-50px); -} -@media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; - } -} -.modal.show .modal-dialog { - transform: none; -} -.modal.modal-static .modal-dialog { - transform: scale(1.02); -} -.modal-dialog-scrollable { - display: flex; - max-height: calc(100% - 1rem); -} -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; -} -.modal-dialog-scrollable .modal-footer, -.modal-dialog-scrollable .modal-header { - flex-shrink: 0; -} -.modal-dialog-scrollable .modal-body { - overflow-y: auto; -} -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); -} -.modal-dialog-centered:before { - display: block; - height: calc(100vh - 1rem); - height: min-content; - content: ""; -} -.modal-dialog-centered.modal-dialog-scrollable { - flex-direction: column; - justify-content: center; - height: 100%; -} -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; -} -.modal-dialog-centered.modal-dialog-scrollable:before { - content: none; -} -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 10px; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5); - outline: 0; -} -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} -.modal-header { - display: flex; - align-items: flex-start; - justify-content: space-between; - padding: 1rem; - border-bottom: 1px solid #dcdfe8; - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.modal-header .close { - padding: 1rem; - margin: -1rem -1rem -1rem auto; -} -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; -} -.modal-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dcdfe8; - border-bottom-right-radius: 9px; - border-bottom-left-radius: 9px; -} -.modal-footer > * { - margin: 0.25rem; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); - } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); - } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); - } - .modal-dialog-centered:before { - height: calc(100vh - 3.5rem); - height: min-content; - } - .modal-content { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5); - } - .modal-sm { - max-width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; - } -} -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: Lato, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.75rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .arrow:before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} -.bs-tooltip-auto[x-placement^="top"], -.bs-tooltip-top { - padding: 0.4rem 0; -} -.bs-tooltip-auto[x-placement^="top"] .arrow, -.bs-tooltip-top .arrow { - bottom: 0; -} -.bs-tooltip-auto[x-placement^="top"] .arrow:before, -.bs-tooltip-top .arrow:before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} -.bs-tooltip-auto[x-placement^="right"], -.bs-tooltip-right { - padding: 0 0.4rem; -} -.bs-tooltip-auto[x-placement^="right"] .arrow, -.bs-tooltip-right .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-auto[x-placement^="right"] .arrow:before, -.bs-tooltip-right .arrow:before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} -.bs-tooltip-auto[x-placement^="bottom"], -.bs-tooltip-bottom { - padding: 0.4rem 0; -} -.bs-tooltip-auto[x-placement^="bottom"] .arrow, -.bs-tooltip-bottom .arrow { - top: 0; -} -.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, -.bs-tooltip-bottom .arrow:before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} -.bs-tooltip-auto[x-placement^="left"], -.bs-tooltip-left { - padding: 0 0.4rem; -} -.bs-tooltip-auto[x-placement^="left"] .arrow, -.bs-tooltip-left .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-auto[x-placement^="left"] .arrow:before, -.bs-tooltip-left .arrow:before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 10px; -} -.popover { - top: 0; - left: 0; - z-index: 1060; - max-width: 276px; - font-family: Lato, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.75rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 10px; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); -} -.popover, -.popover .arrow { - position: absolute; - display: block; -} -.popover .arrow { - width: 1rem; - height: 0.5rem; - margin: 0 10px; -} -.popover .arrow:after, -.popover .arrow:before { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} -.bs-popover-auto[x-placement^="top"], -.bs-popover-top { - margin-bottom: 0.5rem; -} -.bs-popover-auto[x-placement^="top"] > .arrow, -.bs-popover-top > .arrow { - bottom: calc(-0.5rem - 1px); -} -.bs-popover-auto[x-placement^="top"] > .arrow:before, -.bs-popover-top > .arrow:before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-auto[x-placement^="top"] > .arrow:after, -.bs-popover-top > .arrow:after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; -} -.bs-popover-auto[x-placement^="right"], -.bs-popover-right { - margin-left: 0.5rem; -} -.bs-popover-auto[x-placement^="right"] > .arrow, -.bs-popover-right > .arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 10px 0; -} -.bs-popover-auto[x-placement^="right"] > .arrow:before, -.bs-popover-right > .arrow:before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-auto[x-placement^="right"] > .arrow:after, -.bs-popover-right > .arrow:after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; -} -.bs-popover-auto[x-placement^="bottom"], -.bs-popover-bottom { - margin-top: 0.5rem; -} -.bs-popover-auto[x-placement^="bottom"] > .arrow, -.bs-popover-bottom > .arrow { - top: calc(-0.5rem - 1px); -} -.bs-popover-auto[x-placement^="bottom"] > .arrow:before, -.bs-popover-bottom > .arrow:before { - top: 0; - border-width: 0 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-auto[x-placement^="bottom"] > .arrow:after, -.bs-popover-bottom > .arrow:after { - top: 1px; - border-width: 0 0.5rem 0.5rem; - border-bottom-color: #fff; -} -.bs-popover-auto[x-placement^="bottom"] .popover-header:before, -.bs-popover-bottom .popover-header:before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} -.bs-popover-auto[x-placement^="left"], -.bs-popover-left { - margin-right: 0.5rem; -} -.bs-popover-auto[x-placement^="left"] > .arrow, -.bs-popover-left > .arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 10px 0; -} -.bs-popover-auto[x-placement^="left"] > .arrow:before, -.bs-popover-left > .arrow:before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-auto[x-placement^="left"] > .arrow:after, -.bs-popover-left > .arrow:after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; -} -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.popover-header:empty { - display: none; -} -.popover-body { - padding: 0.5rem 0.75rem; - color: #676e8a; -} -.carousel { - position: relative; -} -.carousel.pointer-event { - touch-action: pan-y; -} -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner:after { - display: block; - clear: both; - content: ""; -} -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} -.carousel-item-next, -.carousel-item-prev, -.carousel-item.active { - display: block; -} -.active.carousel-item-right, -.carousel-item-next:not(.carousel-item-left) { - transform: translateX(100%); -} -.active.carousel-item-left, -.carousel-item-prev:not(.carousel-item-right) { - transform: translateX(-100%); -} -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; -} -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right, -.carousel-fade .carousel-item.active { - z-index: 1; - opacity: 1; -} -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; -} -@media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; - } -} -.carousel-control-next, -.carousel-control-prev { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; - transition: opacity 0.15s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-control-next, - .carousel-control-prev { - transition: none; - } -} -.carousel-control-next:focus, -.carousel-control-next:hover, -.carousel-control-prev:focus, -.carousel-control-prev:hover { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} -.carousel-control-prev { - left: 0; -} -.carousel-control-next { - right: 0; -} -.carousel-control-next-icon, -.carousel-control-prev-icon { - display: inline-block; - width: 20px; - height: 20px; - background: no-repeat 50%/100% 100%; -} -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E"); -} -.carousel-control-next-icon { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E"); -} -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: flex; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} -.carousel-indicators li { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } -} -.carousel-indicators .active { - opacity: 1; -} -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; -} -.align-baseline { - vertical-align: baseline !important; -} -.align-top { - vertical-align: top !important; -} -.align-middle { - vertical-align: middle !important; -} -.align-bottom { - vertical-align: bottom !important; -} -.align-text-bottom { - vertical-align: text-bottom !important; -} -.align-text-top { - vertical-align: text-top !important; -} -.bg-primary, -a.bg-primary:focus, -a.bg-primary:hover, -button.bg-primary:focus, -button.bg-primary:hover { - color: #03151a !important; -} -.bg-secondary, -a.bg-secondary:focus, -a.bg-secondary:hover, -button.bg-secondary:focus, -button.bg-secondary:hover { - color: #411500 !important; -} -.bg-success, -a.bg-success:focus, -a.bg-success:hover, -button.bg-success:focus, -button.bg-success:hover { - color: #122719 !important; -} -.bg-info, -a.bg-info:focus, -a.bg-info:hover, -button.bg-info:focus, -button.bg-info:hover { - color: #00627e !important; -} -.bg-warning, -a.bg-warning:focus, -a.bg-warning:hover, -button.bg-warning:focus, -button.bg-warning:hover { - color: #701f00 !important; -} -.bg-danger, -a.bg-danger:focus, -a.bg-danger:hover, -button.bg-danger:focus, -button.bg-danger:hover { - color: #561835 !important; -} -.bg-light, -a.bg-light:focus, -a.bg-light:hover, -button.bg-light:focus, -button.bg-light:hover { - color: #444a57 !important; -} -.bg-dark, -a.bg-dark:focus, -a.bg-dark:hover, -button.bg-dark:focus, -button.bg-dark:hover { - color: #000 !important; -} -.bg-orange, -a.bg-orange:focus, -a.bg-orange:hover, -button.bg-orange:focus, -button.bg-orange:hover { - color: #411500 !important; -} -.bg-purple, -a.bg-purple:focus, -a.bg-purple:hover, -button.bg-purple:focus, -button.bg-purple:hover { - color: #000 !important; -} -.bg-skyblue, -a.bg-skyblue:focus, -a.bg-skyblue:hover, -button.bg-skyblue:focus, -button.bg-skyblue:hover { - color: #00070d !important; -} -.bg-light-gray, -a.bg-light-gray:focus, -a.bg-light-gray:hover, -button.bg-light-gray:focus, -button.bg-light-gray:hover { - color: #4b5aa4 !important; -} -.bg-transparent { - background-color: transparent !important; -} -.border { - border: 1px solid #dcdfe8 !important; -} -.border-top { - border-top: 1px solid #dcdfe8 !important; -} -.border-right { - border-right: 1px solid #dcdfe8 !important; -} -.border-bottom { - border-bottom: 1px solid #dcdfe8 !important; -} -.border-left { - border-left: 1px solid #dcdfe8 !important; -} -.border-0 { - border: 0 !important; -} -.border-top-0 { - border-top: 0 !important; -} -.border-right-0 { - border-right: 0 !important; -} -.border-bottom-0 { - border-bottom: 0 !important; -} -.border-left-0 { - border-left: 0 !important; -} -.border-primary { - border-color: #32bdea !important; -} -.border-secondary { - border-color: #ff7e41 !important; -} -.border-success { - border-color: #78c091 !important; -} -.border-info { - border-color: #7ee2ff !important; -} -.border-warning { - border-color: #ff9770 !important; -} -.border-danger { - border-color: #e08db4 !important; -} -.border-light { - border-color: #c7cbd3 !important; -} -.border-dark { - border-color: #01041b !important; -} -.border-orange { - border-color: #ff7e41 !important; -} -.border-purple { - border-color: #4731b6 !important; -} -.border-skyblue { - border-color: #158df7 !important; -} -.border-light-gray { - border-color: #f4f5fa !important; -} -.border-white { - border-color: #fff !important; -} -.rounded, -.rounded-sm { - border-radius: 10px !important; -} -.rounded-top { - border-top-left-radius: 10px !important; -} -.rounded-right, -.rounded-top { - border-top-right-radius: 10px !important; -} -.rounded-bottom, -.rounded-right { - border-bottom-right-radius: 10px !important; -} -.rounded-bottom, -.rounded-left { - border-bottom-left-radius: 10px !important; -} -.rounded-left { - border-top-left-radius: 10px !important; -} -.rounded-lg { - border-radius: 10px !important; -} -.rounded-circle { - border-radius: 50% !important; -} -.rounded-pill { - border-radius: 50px !important; -} -.rounded-0 { - border-radius: 0 !important; -} -.clearfix:after { - display: block; - clear: both; - content: ""; -} -.d-none { - display: none !important; -} -.d-inline { - display: inline !important; -} -.d-inline-block { - display: inline-block !important; -} -.d-block { - display: block !important; -} -.d-table { - display: table !important; -} -.d-table-row { - display: table-row !important; -} -.d-table-cell { - display: table-cell !important; -} -.d-flex { - display: flex !important; -} -.d-inline-flex { - display: inline-flex !important; -} -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - .d-sm-inline { - display: inline !important; - } - .d-sm-inline-block { - display: inline-block !important; - } - .d-sm-block { - display: block !important; - } - .d-sm-table { - display: table !important; - } - .d-sm-table-row { - display: table-row !important; - } - .d-sm-table-cell { - display: table-cell !important; - } - .d-sm-flex { - display: flex !important; - } - .d-sm-inline-flex { - display: inline-flex !important; - } -} -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - .d-md-inline { - display: inline !important; - } - .d-md-inline-block { - display: inline-block !important; - } - .d-md-block { - display: block !important; - } - .d-md-table { - display: table !important; - } - .d-md-table-row { - display: table-row !important; - } - .d-md-table-cell { - display: table-cell !important; - } - .d-md-flex { - display: flex !important; - } - .d-md-inline-flex { - display: inline-flex !important; - } -} -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - .d-lg-inline { - display: inline !important; - } - .d-lg-inline-block { - display: inline-block !important; - } - .d-lg-block { - display: block !important; - } - .d-lg-table { - display: table !important; - } - .d-lg-table-row { - display: table-row !important; - } - .d-lg-table-cell { - display: table-cell !important; - } - .d-lg-flex { - display: flex !important; - } - .d-lg-inline-flex { - display: inline-flex !important; - } -} -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - .d-xl-inline { - display: inline !important; - } - .d-xl-inline-block { - display: inline-block !important; - } - .d-xl-block { - display: block !important; - } - .d-xl-table { - display: table !important; - } - .d-xl-table-row { - display: table-row !important; - } - .d-xl-table-cell { - display: table-cell !important; - } - .d-xl-flex { - display: flex !important; - } - .d-xl-inline-flex { - display: inline-flex !important; - } -} -@media print { - .d-print-none { - display: none !important; - } - .d-print-inline { - display: inline !important; - } - .d-print-inline-block { - display: inline-block !important; - } - .d-print-block { - display: block !important; - } - .d-print-table { - display: table !important; - } - .d-print-table-row { - display: table-row !important; - } - .d-print-table-cell { - display: table-cell !important; - } - .d-print-flex { - display: flex !important; - } - .d-print-inline-flex { - display: inline-flex !important; - } -} -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive:before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive embed, -.embed-responsive iframe, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} -.embed-responsive-21by9:before { - padding-top: 42.85714%; -} -.embed-responsive-16by9:before { - padding-top: 56.25%; -} -.embed-responsive-4by3:before { - padding-top: 75%; -} -.embed-responsive-1by1:before { - padding-top: 100%; -} -.flex-row { - flex-direction: row !important; -} -.flex-column { - flex-direction: column !important; -} -.flex-row-reverse { - flex-direction: row-reverse !important; -} -.flex-column-reverse { - flex-direction: column-reverse !important; -} -.flex-wrap { - flex-wrap: wrap !important; -} -.flex-nowrap { - flex-wrap: nowrap !important; -} -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} -.flex-fill { - flex: 1 1 auto !important; -} -.flex-grow-0 { - flex-grow: 0 !important; -} -.flex-grow-1 { - flex-grow: 1 !important; -} -.flex-shrink-0 { - flex-shrink: 0 !important; -} -.flex-shrink-1 { - flex-shrink: 1 !important; -} -.justify-content-start { - justify-content: flex-start !important; -} -.justify-content-end { - justify-content: flex-end !important; -} -.justify-content-center { - justify-content: center !important; -} -.justify-content-between { - justify-content: space-between !important; -} -.justify-content-around { - justify-content: space-around !important; -} -.align-items-start { - align-items: flex-start !important; -} -.align-items-end { - align-items: flex-end !important; -} -.align-items-center { - align-items: center !important; -} -.align-items-baseline { - align-items: baseline !important; -} -.align-items-stretch { - align-items: stretch !important; -} -.align-content-start { - align-content: flex-start !important; -} -.align-content-end { - align-content: flex-end !important; -} -.align-content-center { - align-content: center !important; -} -.align-content-between { - align-content: space-between !important; -} -.align-content-around { - align-content: space-around !important; -} -.align-content-stretch { - align-content: stretch !important; -} -.align-self-auto { - align-self: auto !important; -} -.align-self-start { - align-self: flex-start !important; -} -.align-self-end { - align-self: flex-end !important; -} -.align-self-center { - align-self: center !important; -} -.align-self-baseline { - align-self: baseline !important; -} -.align-self-stretch { - align-self: stretch !important; -} -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; - } - .flex-sm-column { - flex-direction: column !important; - } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - .flex-sm-wrap { - flex-wrap: wrap !important; - } - .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-sm-fill { - flex: 1 1 auto !important; - } - .flex-sm-grow-0 { - flex-grow: 0 !important; - } - .flex-sm-grow-1 { - flex-grow: 1 !important; - } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-sm-start { - justify-content: flex-start !important; - } - .justify-content-sm-end { - justify-content: flex-end !important; - } - .justify-content-sm-center { - justify-content: center !important; - } - .justify-content-sm-between { - justify-content: space-between !important; - } - .justify-content-sm-around { - justify-content: space-around !important; - } - .align-items-sm-start { - align-items: flex-start !important; - } - .align-items-sm-end { - align-items: flex-end !important; - } - .align-items-sm-center { - align-items: center !important; - } - .align-items-sm-baseline { - align-items: baseline !important; - } - .align-items-sm-stretch { - align-items: stretch !important; - } - .align-content-sm-start { - align-content: flex-start !important; - } - .align-content-sm-end { - align-content: flex-end !important; - } - .align-content-sm-center { - align-content: center !important; - } - .align-content-sm-between { - align-content: space-between !important; - } - .align-content-sm-around { - align-content: space-around !important; - } - .align-content-sm-stretch { - align-content: stretch !important; - } - .align-self-sm-auto { - align-self: auto !important; - } - .align-self-sm-start { - align-self: flex-start !important; - } - .align-self-sm-end { - align-self: flex-end !important; - } - .align-self-sm-center { - align-self: center !important; - } - .align-self-sm-baseline { - align-self: baseline !important; - } - .align-self-sm-stretch { - align-self: stretch !important; - } -} -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; - } - .flex-md-column { - flex-direction: column !important; - } - .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - .flex-md-wrap { - flex-wrap: wrap !important; - } - .flex-md-nowrap { - flex-wrap: nowrap !important; - } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-md-fill { - flex: 1 1 auto !important; - } - .flex-md-grow-0 { - flex-grow: 0 !important; - } - .flex-md-grow-1 { - flex-grow: 1 !important; - } - .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-md-start { - justify-content: flex-start !important; - } - .justify-content-md-end { - justify-content: flex-end !important; - } - .justify-content-md-center { - justify-content: center !important; - } - .justify-content-md-between { - justify-content: space-between !important; - } - .justify-content-md-around { - justify-content: space-around !important; - } - .align-items-md-start { - align-items: flex-start !important; - } - .align-items-md-end { - align-items: flex-end !important; - } - .align-items-md-center { - align-items: center !important; - } - .align-items-md-baseline { - align-items: baseline !important; - } - .align-items-md-stretch { - align-items: stretch !important; - } - .align-content-md-start { - align-content: flex-start !important; - } - .align-content-md-end { - align-content: flex-end !important; - } - .align-content-md-center { - align-content: center !important; - } - .align-content-md-between { - align-content: space-between !important; - } - .align-content-md-around { - align-content: space-around !important; - } - .align-content-md-stretch { - align-content: stretch !important; - } - .align-self-md-auto { - align-self: auto !important; - } - .align-self-md-start { - align-self: flex-start !important; - } - .align-self-md-end { - align-self: flex-end !important; - } - .align-self-md-center { - align-self: center !important; - } - .align-self-md-baseline { - align-self: baseline !important; - } - .align-self-md-stretch { - align-self: stretch !important; - } -} -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; - } - .flex-lg-column { - flex-direction: column !important; - } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - .flex-lg-wrap { - flex-wrap: wrap !important; - } - .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-lg-fill { - flex: 1 1 auto !important; - } - .flex-lg-grow-0 { - flex-grow: 0 !important; - } - .flex-lg-grow-1 { - flex-grow: 1 !important; - } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-lg-start { - justify-content: flex-start !important; - } - .justify-content-lg-end { - justify-content: flex-end !important; - } - .justify-content-lg-center { - justify-content: center !important; - } - .justify-content-lg-between { - justify-content: space-between !important; - } - .justify-content-lg-around { - justify-content: space-around !important; - } - .align-items-lg-start { - align-items: flex-start !important; - } - .align-items-lg-end { - align-items: flex-end !important; - } - .align-items-lg-center { - align-items: center !important; - } - .align-items-lg-baseline { - align-items: baseline !important; - } - .align-items-lg-stretch { - align-items: stretch !important; - } - .align-content-lg-start { - align-content: flex-start !important; - } - .align-content-lg-end { - align-content: flex-end !important; - } - .align-content-lg-center { - align-content: center !important; - } - .align-content-lg-between { - align-content: space-between !important; - } - .align-content-lg-around { - align-content: space-around !important; - } - .align-content-lg-stretch { - align-content: stretch !important; - } - .align-self-lg-auto { - align-self: auto !important; - } - .align-self-lg-start { - align-self: flex-start !important; - } - .align-self-lg-end { - align-self: flex-end !important; - } - .align-self-lg-center { - align-self: center !important; - } - .align-self-lg-baseline { - align-self: baseline !important; - } - .align-self-lg-stretch { - align-self: stretch !important; - } -} -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; - } - .flex-xl-column { - flex-direction: column !important; - } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - .flex-xl-wrap { - flex-wrap: wrap !important; - } - .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-xl-fill { - flex: 1 1 auto !important; - } - .flex-xl-grow-0 { - flex-grow: 0 !important; - } - .flex-xl-grow-1 { - flex-grow: 1 !important; - } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-xl-start { - justify-content: flex-start !important; - } - .justify-content-xl-end { - justify-content: flex-end !important; - } - .justify-content-xl-center { - justify-content: center !important; - } - .justify-content-xl-between { - justify-content: space-between !important; - } - .justify-content-xl-around { - justify-content: space-around !important; - } - .align-items-xl-start { - align-items: flex-start !important; - } - .align-items-xl-end { - align-items: flex-end !important; - } - .align-items-xl-center { - align-items: center !important; - } - .align-items-xl-baseline { - align-items: baseline !important; - } - .align-items-xl-stretch { - align-items: stretch !important; - } - .align-content-xl-start { - align-content: flex-start !important; - } - .align-content-xl-end { - align-content: flex-end !important; - } - .align-content-xl-center { - align-content: center !important; - } - .align-content-xl-between { - align-content: space-between !important; - } - .align-content-xl-around { - align-content: space-around !important; - } - .align-content-xl-stretch { - align-content: stretch !important; - } - .align-self-xl-auto { - align-self: auto !important; - } - .align-self-xl-start { - align-self: flex-start !important; - } - .align-self-xl-end { - align-self: flex-end !important; - } - .align-self-xl-center { - align-self: center !important; - } - .align-self-xl-baseline { - align-self: baseline !important; - } - .align-self-xl-stretch { - align-self: stretch !important; - } -} -.float-left { - float: left !important; -} -.float-right { - float: right !important; -} -.float-none { - float: none !important; -} -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - .float-sm-right { - float: right !important; - } - .float-sm-none { - float: none !important; - } -} -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - .float-md-right { - float: right !important; - } - .float-md-none { - float: none !important; - } -} -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - .float-lg-right { - float: right !important; - } - .float-lg-none { - float: none !important; - } -} -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - .float-xl-right { - float: right !important; - } - .float-xl-none { - float: none !important; - } -} -.user-select-all { - user-select: all !important; -} -.user-select-auto { - user-select: auto !important; -} -.user-select-none { - user-select: none !important; -} -.overflow-auto { - overflow: auto !important; -} -.overflow-hidden { - overflow: hidden !important; -} -.position-static { - position: static !important; -} -.position-relative { - position: relative !important; -} -.position-absolute { - position: absolute !important; -} -.position-fixed { - position: fixed !important; -} -.position-sticky { - position: sticky !important; -} -.fixed-top { - top: 0; -} -.fixed-bottom, -.fixed-top { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -.fixed-bottom { - bottom: 0; -} -@supports (position: sticky) { - .sticky-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; -} -.shadow, -.shadow-lg, -.shadow-sm { - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157) !important; -} -.shadow-none { - box-shadow: none !important; -} -.w-25 { - width: 25% !important; -} -.w-50 { - width: 50% !important; -} -.w-75 { - width: 75% !important; -} -.w-100 { - width: 100% !important; -} -.w-auto { - width: auto !important; -} -.h-25 { - height: 25% !important; -} -.h-50 { - height: 50% !important; -} -.h-75 { - height: 75% !important; -} -.h-100 { - height: 100% !important; -} -.h-auto { - height: auto !important; -} -.mw-100 { - max-width: 100% !important; -} -.mh-100 { - max-height: 100% !important; -} -.min-vw-100 { - min-width: 100vw !important; -} -.min-vh-100 { - min-height: 100vh !important; -} -.vw-100 { - width: 100vw !important; -} -.vh-100 { - height: 100vh !important; -} -.m-0 { - margin: 0 !important; -} -.mt-0, -.my-0 { - margin-top: 0 !important; -} -.mr-0, -.mx-0 { - margin-right: 0 !important; -} -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} -.ml-0, -.mx-0 { - margin-left: 0 !important; -} -.m-1 { - margin: 0.25rem !important; -} -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} -.m-2 { - margin: 0.5rem !important; -} -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} -.m-3 { - margin: 1rem !important; -} -.mt-3, -.my-3 { - margin-top: 1rem !important; -} -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} -.m-4 { - margin: 1.5rem !important; -} -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} -.m-5 { - margin: 3rem !important; -} -.mt-5, -.my-5 { - margin-top: 3rem !important; -} -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} -.p-0 { - padding: 0 !important; -} -.pt-0, -.py-0 { - padding-top: 0 !important; -} -.pr-0, -.px-0 { - padding-right: 0 !important; -} -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} -.pl-0, -.px-0 { - padding-left: 0 !important; -} -.p-1 { - padding: 0.25rem !important; -} -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} -.p-2 { - padding: 0.5rem !important; -} -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} -.p-3 { - padding: 1rem !important; -} -.pt-3, -.py-3 { - padding-top: 1rem !important; -} -.pr-3, -.px-3 { - padding-right: 1rem !important; -} -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} -.pl-3, -.px-3 { - padding-left: 1rem !important; -} -.p-4 { - padding: 1.5rem !important; -} -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} -.p-5 { - padding: 3rem !important; -} -.pt-5, -.py-5 { - padding-top: 3rem !important; -} -.pr-5, -.px-5 { - padding-right: 3rem !important; -} -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} -.pl-5, -.px-5 { - padding-left: 3rem !important; -} -.m-n1 { - margin: -0.25rem !important; -} -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} -.m-n2 { - margin: -0.5rem !important; -} -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} -.m-n3 { - margin: -1rem !important; -} -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} -.m-n4 { - margin: -1.5rem !important; -} -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} -.m-n5 { - margin: -3rem !important; -} -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} -.m-auto { - margin: auto !important; -} -.mt-auto, -.my-auto { - margin-top: auto !important; -} -.mr-auto, -.mx-auto { - margin-right: auto !important; -} -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} -.ml-auto, -.mx-auto { - margin-left: auto !important; -} -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - .m-sm-1 { - margin: 0.25rem !important; - } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - .m-sm-2 { - margin: 0.5rem !important; - } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - .m-sm-3 { - margin: 1rem !important; - } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - .m-sm-4 { - margin: 1.5rem !important; - } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - .m-sm-5 { - margin: 3rem !important; - } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - .p-sm-0 { - padding: 0 !important; - } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - .p-sm-1 { - padding: 0.25rem !important; - } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - .p-sm-2 { - padding: 0.5rem !important; - } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - .p-sm-3 { - padding: 1rem !important; - } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - .p-sm-4 { - padding: 1.5rem !important; - } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - .p-sm-5 { - padding: 3rem !important; - } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } - .m-sm-auto { - margin: auto !important; - } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - .m-md-1 { - margin: 0.25rem !important; - } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - .m-md-2 { - margin: 0.5rem !important; - } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - .m-md-3 { - margin: 1rem !important; - } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - .m-md-4 { - margin: 1.5rem !important; - } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - .m-md-5 { - margin: 3rem !important; - } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - .p-md-0 { - padding: 0 !important; - } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - .p-md-1 { - padding: 0.25rem !important; - } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - .p-md-2 { - padding: 0.5rem !important; - } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - .p-md-3 { - padding: 1rem !important; - } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - .p-md-4 { - padding: 1.5rem !important; - } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - .p-md-5 { - padding: 3rem !important; - } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } - .m-md-auto { - margin: auto !important; - } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - .m-lg-1 { - margin: 0.25rem !important; - } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - .m-lg-2 { - margin: 0.5rem !important; - } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - .m-lg-3 { - margin: 1rem !important; - } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - .m-lg-4 { - margin: 1.5rem !important; - } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - .m-lg-5 { - margin: 3rem !important; - } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - .p-lg-0 { - padding: 0 !important; - } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - .p-lg-1 { - padding: 0.25rem !important; - } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - .p-lg-2 { - padding: 0.5rem !important; - } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - .p-lg-3 { - padding: 1rem !important; - } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - .p-lg-4 { - padding: 1.5rem !important; - } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - .p-lg-5 { - padding: 3rem !important; - } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } - .m-lg-auto { - margin: auto !important; - } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - .m-xl-1 { - margin: 0.25rem !important; - } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - .m-xl-2 { - margin: 0.5rem !important; - } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - .m-xl-3 { - margin: 1rem !important; - } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - .m-xl-4 { - margin: 1.5rem !important; - } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - .m-xl-5 { - margin: 3rem !important; - } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - .p-xl-0 { - padding: 0 !important; - } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - .p-xl-1 { - padding: 0.25rem !important; - } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - .p-xl-2 { - padding: 0.5rem !important; - } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - .p-xl-3 { - padding: 1rem !important; - } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - .p-xl-4 { - padding: 1.5rem !important; - } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - .p-xl-5 { - padding: 3rem !important; - } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } - .m-xl-auto { - margin: auto !important; - } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} -.stretched-link:after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: transparent; -} -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, - Courier New, monospace !important; -} -.text-justify { - text-align: justify !important; -} -.text-wrap { - white-space: normal !important; -} -.text-nowrap { - white-space: nowrap !important; -} -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.text-left { - text-align: left !important; -} -.text-right { - text-align: right !important; -} -.text-center { - text-align: center !important; -} -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - .text-sm-right { - text-align: right !important; - } - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - .text-md-right { - text-align: right !important; - } - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - .text-lg-right { - text-align: right !important; - } - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - .text-xl-right { - text-align: right !important; - } - .text-xl-center { - text-align: center !important; - } -} -.text-lowercase { - text-transform: lowercase !important; -} -.text-uppercase { - text-transform: uppercase !important; -} -.text-capitalize { - text-transform: capitalize !important; -} -.font-weight-light { - font-weight: 300 !important; -} -.font-weight-lighter { - font-weight: lighter !important; -} -.font-weight-normal { - font-weight: 400 !important; -} -.font-weight-bold { - font-weight: 700 !important; -} -.font-weight-bolder { - font-weight: bolder !important; -} -.font-italic { - font-style: italic !important; -} -.text-primary { - color: #32bdea !important; -} -a.text-primary:focus, -a.text-primary:hover { - color: #1393bc !important; -} -.text-secondary { - color: #ff7e41 !important; -} -a.text-secondary:focus, -a.text-secondary:hover { - color: #f44e00 !important; -} -.text-success { - color: #78c091 !important; -} -a.text-success:focus, -a.text-success:hover { - color: #4ba169 !important; -} -.text-info { - color: #7ee2ff !important; -} -a.text-info:focus, -a.text-info:hover { - color: #32d1ff !important; -} -.text-warning { - color: #ff9770 !important; -} -a.text-warning:focus, -a.text-warning:hover { - color: #ff5f24 !important; -} -.text-danger { - color: #e08db4 !important; -} -a.text-danger:focus, -a.text-danger:hover { - color: #d0518c !important; -} -.text-light { - color: #c7cbd3 !important; -} -a.text-light:focus, -a.text-light:hover { - color: #9ca3b1 !important; -} -.text-dark { - color: #01041b !important; -} -a.text-dark:focus, -a.text-dark:hover { - color: #000 !important; -} -.text-light-gray { - color: #f4f5fa !important; -} -a.text-light-gray:focus, -a.text-light-gray:hover { - color: #bfc5e2 !important; -} -.text-body { - color: #676e8a !important; -} -.text-muted { - color: #6c757d !important; -} -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; -} -.text-white-50 { - color: hsla(0, 0%, 100%, 0.5) !important; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.text-decoration-none { - text-decoration: none !important; -} -.text-break { - word-wrap: break-word !important; -} -.text-reset { - color: inherit !important; -} -.visible { - visibility: visible !important; -} -.invisible { - visibility: hidden !important; -} -@media print { - *, - :after, - :before { - text-shadow: none !important; - box-shadow: none !important; - } - a:not(.btn) { - text-decoration: underline; - } - abbr[title]:after { - content: " (" attr(title) ")"; - } - pre { - white-space: pre-wrap !important; - } - blockquote, - pre { - border: 1px solid #adb5bd; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - img, - tr { - page-break-inside: avoid; - } - h2, - h3, - p { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - @page { - size: a3; - } - .container, - body { - min-width: 992px !important; - } - .navbar { - display: none; - } - .badge { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered td, - .table-bordered th { - border: 1px solid #ccced2 !important; - } - .table-dark { - color: inherit; - } - .table-dark tbody + tbody, - .table-dark td, - .table-dark th, - .table-dark thead th { - border-color: #dcdfe8; - } - .table .thead-dark th { - color: inherit; - border-color: #dcdfe8; - } -} -.card { - background: #fff; - border-radius: 10px; - margin-bottom: 30px; - border: 1px solid #dcdfe8; - box-shadow: none; -} -.card.card-transparent { - background: transparent; - border: none; - box-shadow: none; -} -.card.card-transparent .card-header { - background: transparent; - border-radius: 0; - margin-bottom: 0; - border: none; -} -.card .card-header { - background: transparent; - border-radius: 0; - padding: 20px; - margin-bottom: 0; - -ms-flex-align: center !important; - align-items: center !important; - border: 0; - border-bottom: 1px solid #dcdfe8; -} -.card .card-header .header-title .card-title { - margin-bottom: 0; -} -.card-body { - padding: 20px; -} -.card-header-toolbar .nav-item a { - color: #676e8a; - padding: 4px 12px; - font-size: 14px; -} -.card-header-toolbar .dropdown-toggle i { - font-size: 20px; - line-height: normal; - vertical-align: text-bottom; -} -.card-header-toolbar .dropdown-toggle:after { - display: none; -} -.card-header .dropdown-bg { - border-radius: 10px; -} -.card-block.card-stretch { - -ms-flex-align: stretch; - align-items: stretch; -} -.card-block.card-height-third { - height: calc(33.33% - 30px); -} -.card-block.card-height-half { - height: calc(50% - 30px); -} -.card-block.card-height { - height: calc(100% - 30px); -} -.card-block { - display: -ms-flexbox; - display: flex; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-direction: column; - flex-direction: column; -} -.iq-sidebar { - position: fixed; - z-index: 1000; - top: 0; - width: 260px; - height: 100%; - background: #fff; - transition: all 0.6s ease-in-out; - -ms-box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.2); - -o-box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.2); - box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.2); -} -#sidebar-scrollbar { - height: 100vh; -} -.scroll-content div.p-3 { - height: 100px; -} -.iq-sidebar-menu { - position: relative; - padding: 0; - margin: 0; -} -.iq-sidebar-menu .iq-menu { - margin: 0; - padding: 0; - list-style-type: none; -} -.iq-sidebar-menu .iq-menu .iq-menu-title { - display: block; - color: #676e8a; - font-size: 15px; - position: relative; - padding: 15px; - font-weight: 500; - line-height: 18px; -} -.iq-sidebar-menu .iq-menu .iq-menu-title i { - display: none; -} -.iq-sidebar-menu .iq-menu li { - list-style-type: none; - position: relative; - white-space: nowrap; -} -.iq-sidebar-menu .iq-menu li li { - margin: 0; - background: transparent !important; -} -.iq-sidebar-menu .iq-menu li li a { - font-size: 16px; -} -.iq-sidebar-menu .iq-menu li a { - font-size: 16px; - white-space: nowrap; - display: block; - color: #676e8a; - position: relative; - padding: 15px 20px; - margin-bottom: 5px; - margin-right: 10px; - line-height: 18px; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - overflow: hidden; - text-transform: capitalize; - border-radius: 0 10px 10px 0; -} -.iq-sidebar-menu .iq-menu li a i { - vertical-align: middle; - width: 20px; - display: inline-block; - margin-right: 8px; - font-size: 16px; -} -.iq-sidebar-menu .iq-menu li a span { - white-space: nowrap; - padding: 0; - display: inline-block; - transition: none; -} -.iq-sidebar-menu .iq-menu li a .iq-arrow-right { - margin-right: 0; - margin-left: auto; - font-size: 15px; - width: 15px; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-menu .iq-menu li a .badge { - position: absolute; - right: 15px; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-menu .iq-menu li a .list-dot { - position: relative; - padding-left: 25px; -} -.iq-sidebar-menu .iq-menu li a .list-dot:before { - content: ""; - height: 8px; - width: 8px; - border-radius: 50%; - background: #676e8a; - position: absolute; - top: 6px; - left: 0; -} -.iq-sidebar-menu .iq-menu li a[aria-expanded="true"] .iq-arrow-right { - transition: all 0.6s ease-in-out; -} -.iq-sidebar-menu .iq-menu li ul { - padding-left: 0; - position: relative; -} -.iq-sidebar-menu .iq-menu li .iq-submenu li a[aria-expanded="true"] { - box-shadow: none; -} -.iq-sidebar-menu .iq-menu li.active-menu > a { - color: #32bdea; - text-decoration: none; - border-radius: 0; - transition: none; -} -.iq-sidebar-menu .iq-menu li.active .iq-submenu li > a { - background: transparent; -} -.sidebar-main .iq-sidebar-menu .iq-menu li a { - margin-right: unset; - border-radius: unset; -} -.sidebar-default .iq-sidebar-menu .iq-menu li a:hover { - color: #01041b; -} -.sidebar-default .iq-sidebar-menu .iq-menu li a:hover svg { - color: #ff7e41; -} -.sidebar-default .iq-sidebar-menu .iq-menu li a[aria-expanded="true"] { - color: #ff7e41; - text-decoration: none; - transition: none; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - i.iq-arrow-left { - color: #ff7e41; -} -.sidebar-default .iq-sidebar-menu .iq-menu li .iq-submenu li a:hover { - background: transparent; - color: #01041b; -} -.sidebar-default .iq-sidebar-menu .iq-menu li ul a:hover { - color: #32bdea; - text-decoration: none; - background: transparent; -} -.sidebar-default .iq-sidebar-menu .iq-menu li ul li a { - padding-left: 40px; -} -.sidebar-default .iq-sidebar-menu .iq-menu li ul ul li > a { - padding-left: 60px; -} -.sidebar-default .iq-sidebar-menu .iq-menu li ul ul ul li > a { - padding-left: 80px; -} -.sidebar-default .iq-sidebar-menu .iq-menu li ul.iq-submenu-data li { - margin: 0; -} -.sidebar-default .iq-sidebar-menu .iq-menu > li.active > a { - color: #01041b; - text-decoration: none; - background: #f4f5fa; -} -.sidebar-default .iq-sidebar-menu .iq-menu > li.active > a svg { - color: #ff7e41; -} -.sidebar-default .iq-sidebar-menu .iq-menu li.active .iq-submenu li.active > a { - color: #01041b; - border-radius: 0; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li.active - > a - svg { - color: #ff7e41; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li:last-child - > a { - border-radius: 0 0 10px 10px; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li - a[aria-expanded="true"] { - box-shadow: none; - color: #01041b; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li - a[aria-expanded="true"] - svg { - color: #ff7e41; -} -.sidebar-default .iq-sidebar-menu .iq-menu .iq-submenu .iq-submenu-data { - box-shadow: none; -} -.sidebar-default .iq-sidebar .iq-sidebar-menu .iq-menu .iq-submenu li:before { - content: ""; - width: 3px; - height: 35px; - background: #32bdea; - position: absolute; - left: 30px; - top: 8px; - border-radius: 10px; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; -} -.sidebar-default - .iq-sidebar - .iq-sidebar-menu - .iq-menu - .iq-submenu - li.active:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.sidebar-default - .iq-sidebar - .iq-sidebar-menu - .iq-menu - li.active - ul.iq-submenu - .iq-submenu:before, -.sidebar-default - .iq-sidebar - .iq-sidebar-menu - .iq-menu - li.active - ul.iq-submenu - .iq-submenu - li:before { - left: 48px; - width: 2px; -} -.sidebar-default .sidebar-main .iq-sidebar-menu .iq-menu li ul { - padding-left: 0; -} -.sidebar-default .sidebar-bottom { - padding: 120px 16px 0 !important; -} -.sidebar-default .sidebar-bottom .sidebarbottom-content { - text-align: center; -} -.sidebar-default .sidebar-bottom .image { - margin-top: -10px; -} -.iq-sidebar-menu .iq-menu li a .iq-arrow-right.arrow-active { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - transform: rotate(0deg); - transition: all 0.3s ease-in-out; - display: inline; -} -.iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - .iq-arrow-right.arrow-active { - display: inline; -} -.iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - .iq-arrow-right.arrow-active, -.iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - .iq-arrow-right.arrow-hover { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - transform: rotate(180deg); - transition: all 0.3s ease-in-out; -} -.btn.sidebar-bottom-btn { - background: #110a57 !important; - color: #fff !important; -} -.iq-menu-bt-sidebar { - line-height: 26px; - padding-left: 30px; - transition: all 0.3s ease-in-out; -} -.iq-sidebar-logo { - padding: 15px 20px; - padding-right: 15px; - margin-top: 5px; - margin-bottom: 15px; - margin-right: 10px; - width: auto; - position: relative; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-logo a { - display: flex; - align-items: flex-start; - transition-delay: 0.2s; - margin-left: 25px; -} -.iq-sidebar-logo a span { - margin-left: 10px; - font-size: 19px; - line-height: 42px; - padding-left: 1px; - letter-spacing: 1.5px; - font-weight: 600; - flex: 1; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-logo a span.logo-text { - font-size: 10px; - letter-spacing: 5px; -} -.iq-sidebar-logo a:focus, -.iq-sidebar-logo a:hover { - text-decoration: none; -} -.iq-sidebar-logo img { - height: 60px; -} -.iq-sidebar-logo .logo-title { - font-weight: 700; -} -.iq-saidbar-logo img { - width: 60%; -} -.logo-text { - color: #676e8a; - text-transform: uppercase; - font-size: 10px; - letter-spacing: 5px; -} -.iq-top-navbar .wrapper-menu { - margin: 0 15px 0 0; -} -.wrapper-menu { - font-size: 25px; - text-align: center; - color: #110a57; - position: relative; - transition: all 0.6s ease-in-out; -} -@media (min-width: 1300px) { - .iq-top-navbar .iq-navbar-custom .wrapper-menu { - display: none; - } - body.sidebar-main .iq-sidebar { - width: 60px; - } - body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: none; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu .iq-submenu, - body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a .iq-arrow-right { - display: none; - } - body.sidebar-main .iq-sidebar-logo { - transform: translateX(-100px); - } - body.sidebar-main .iq-sidebar-logo a { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: flex; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar-logo a span, - body.sidebar-main .iq-sidebar-menu .iq-menu li a .badge { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: none; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li a .iq-arrow-right { - margin-right: 0; - display: none; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li a i.iq-arrow-left { - margin: 0 auto; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li li a i { - margin: 0 auto; - text-align: center; - } - body.sidebar-main .sidebar-default .iq-sidebar-menu .iq-menu li ul li a { - padding-left: 18px; - } - .sidebar-main .iq-sidebar .iq-submenu li a { - font-size: 0; - } - .sidebar-main .iq-sidebar .sidebar-bottom { - display: none; - } -} -@media (max-width: 1299px) { - .iq-sidebar { - display: inline-block; - z-index: 99; - left: -300px; - top: 0; - } - body.sidebar-main .iq-sidebar { - width: 260px; - left: 0; - z-index: 999; - } -} -@keyframes b { - 0% { - box-shadow: 0 0 0 0 rgba(0, 177, 255, 0.2); - } - to { - box-shadow: 0 0 0 15px rgba(0, 177, 255, 0); - } -} -@keyframes c { - 0% { - transform: translateY(50px); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - to { - transform: translateY(0); - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } -} -.iq-top-navbar { - background: #fff; - padding: 0 30px; - min-height: 73px; - position: fixed; - top: 0; - left: auto; - right: 0; - width: calc(100% - 260px); - display: inline-block; - z-index: 99; - margin: 0; - transition: all 0.3s ease-in-out; - -ms-box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.04); - -o-box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.04); - box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.04); -} -.iq-top-navbar .iq-navbar-custom .navbar-breadcrumb { - display: block; - margin-left: 0; - padding: 20px 0; -} -.iq-top-navbar .breadcrumb { - background: transparent; - padding: 0; - margin: 0; -} -.iq-top-navbar .breadcrumb .breadcrumb-item.active { - color: #676e8a; -} -.iq-top-navbar .breadcrumb li { - list-style-type: none; - font-size: 14px; -} -.iq-top-navbar .breadcrumb li a, -.iq-top-navbar .breadcrumb li a:hover { - text-decoration: none; -} -.iq-top-navbar .navbar-expand-lg { - justify-content: space-between !important; -} -.iq-top-navbar .iq-sub-dropdown { - width: 300px; - position: absolute; - top: 100%; - right: 0; - left: auto; - border: none; - animation: c 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; - transform: translateY(100%); - background-color: #fff; - padding: 0; - border-radius: 10px; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - transition: all 0.3s ease-in-out; -} -.iq-top-navbar .iq-sub-dropdown .iq-card-body div { - border-radius: 10px 10px 0 0; -} -.iq-top-navbar .lang .iq-sub-dropdown { - width: auto; -} -.iq-top-navbar .iq-user-dropdown { - position: fixed; - left: auto; - right: 0; - width: 350px; - top: 0; - bottom: 0; - height: 100vh; - background: #fff; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - visibility: hidden; - transform: translateX(100%); - transition: all 0.3s ease-in-out; -} -.iq-top-navbar .navbar-brand { - padding: 0; -} -body.sidebar-main .iq-top-navbar { - width: calc(100% - 70px); -} -.iq-top-navbar.fixed-header { - margin: 0; - right: 0; - width: calc(100% - 330px); - border-radius: 0; - transition: all 0.3s ease-in-out; -} -.navbar-breadcrumb .breadcrumb { - padding: 0; - background: none; - margin-top: 5px; -} -.breadcrumb-item + .breadcrumb-item:before { - content: "\ea5f"; - font-family: remixicon; - font-size: 14px; - vertical-align: sub; - color: #676e8a; -} -.navbar-list { - margin: 0; - padding: 0; - float: right; -} -.navbar-list li { - float: left; - list-style-type: none; - position: relative; -} -.navbar-list li > .dropdown { - line-height: 73px; - cursor: pointer; -} -.navbar-list li > .dropdown .dropdown-menu { - animation: c 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; - transform: translateY(100%); -} -.navbar-list li .dropdown-toggle:after { - display: none; -} -.navbar-list li > a.language-title { - font-size: 16px; -} -.navbar-list li > a { - color: #676e8a; - font-size: 18px; - padding: 0 10px; - display: block; - line-height: 73px; -} -.navbar-list li > a > img { - width: 50px; - height: 50px; - min-width: 50px; -} -.navbar-list li a:hover { - text-decoration: none; -} -.navbar-list li .caption { - line-height: 16px; -} -.navbar-list li .caption p { - color: #676e8a; - font-size: 12px; -} -.navbar-list li .iq-sub-dropdown .sub-card .iq-sub-card { - padding-bottom: 0; -} -.navbar-list li .iq-sub-dropdown .iq-sub-card { - font-size: inherit; - padding-bottom: 18px; - line-height: normal; - color: inherit; - display: inline-block; - width: 100%; -} -.navbar-list li .iq-sub-dropdown .iq-sub-card:last-child { - padding-bottom: 0; -} -.navbar-list li .iq-sub-dropdown .iq-sub-card.iq-sub-card-big { - width: auto; -} -.navbar-list li .add-btn { - line-height: 36px; - font-size: 16px; - margin-top: 5px; -} -.navbar-list li .image-flag { - min-width: auto; - height: auto; - width: auto; -} -.navbar-list li .profile-detail { - border-radius: 10px 10px 0 0; -} -.navbar-list li.iq-nav-user { - display: flex; - align-items: flex-start; -} -.navbar-list li.iq-nav-user span { - flex: 1; - font-size: 14px; -} -.navbar-list .caption-content { - line-height: normal; -} -.badge-card { - border-radius: 5px !important; -} -.menu-tag { - position: absolute; - background: #676e8a; - color: #fff; - top: 18px; - left: 18px; - font-size: 12px; - border-radius: 90px; - line-height: normal; - height: 18px; - width: 18px; - line-height: 18px; - text-align: center; - display: inline-block; -} -.iq-breadcrumb { - display: none; -} -.toggle-cart-info img { - width: 50px; -} -.nav-item span.dots { - width: 6px; - font-size: 0; -} -.nav-item span.count-mail, -.nav-item span.dots { - height: 6px; - text-align: center; - padding: 0; - position: absolute; - top: 18px; - right: 3px; - border: 0; - animation: b 1s infinite; - border-radius: 50%; -} -.nav-item span.count-mail { - width: 5px; - font-size: 10px; - line-height: 15px; -} -.nav-item .badge.count-cart { - height: 15px; - width: 15px; - font-size: 10px; - text-align: center; - line-height: 15px; - padding: 0; - position: absolute; - top: 13px; - right: 0; -} -.top-nav-bottom { - margin-left: 260px; - border-top: 1px solid #88dffb; -} -.topnav-toolbar li a { - display: block; - padding: 10px 15px; - text-transform: capitalize; - color: #ff7e41; - border-radius: 10px; -} -.topnav-toolbar li.date-today { - background: #c7cbd3; -} -.topnav-toolbar li.active a { - background: #88dffb; - color: #32bdea; -} -.topnav-toolbar ul li { - list-style: none; - padding: 13px 0; -} -.iq-search-bar .searchbox { - width: 400px; - position: relative; -} -.iq-search-bar .search-input { - width: 100%; - height: 40px; - padding: 5px 15px 5px 60px; - border-radius: 10px; - border: 1px solid #dcdfe8; - background-color: #fff; -} -.iq-search-bar .search-link { - position: absolute; - left: 32px; - top: 4px; - color: #676e8a; -} -.iq-navbar-logo { - padding: 0; - width: auto; - position: relative; - background: #fff; - transition: all 0.3s ease-in-out; - background: transparent; -} -.iq-navbar-logo a { - display: flex; - align-items: center; -} -.iq-navbar-logo a span { - margin-left: 10px; - font-size: 28px; - line-height: 26px; - font-weight: 500; - color: #01041b; - text-transform: capitalize; - flex: 1; - transition: all 0.3s ease-in-out; -} -.iq-navbar-logo a:focus, -.iq-navbar-logo a:hover { - text-decoration: none; -} -.iq-navbar-logo img { - height: 25px; -} -.iq-sub-dropdown.iq-sub-dropdown-large { - width: 500px; -} -.cust-title { - border-bottom: 1px solid #dcdfe8; -} -.crt-img { - background: #fff; - padding: 10px; - border-radius: 10px; -} -.cust-dd .btn { - border-radius: 0 0 10px 10px; -} -.dd-icon { - position: absolute; - right: 0; - bottom: 0; - width: 40px; - height: 40px; - background: #06a3d6; - color: #fff; - border-radius: 0 0 0 10px; - text-align: center; - line-height: 40px; - transition: all 0.3s ease-in-out; - display: flex; - align-items: center; - justify-content: center; -} -.right-ic { - border-radius: 0 0 10px 10px; - overflow: hidden; - border: none !important; -} -.right-ic:hover .dd-icon { - background: #32bdea; -} -.iq-show .iq-sub-dropdown { - display: inline-block; -} -.iq-sub-dropdown .iq-card-icon { - width: 45px; - height: 45px; - line-height: 40px; - font-size: 22px; -} -.show-data .iq-user-dropdown { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - visibility: visible; - transform: translateX(0); - transition: all 0.3s ease-in-out; -} -.iq-card-icon-small { - height: 40px; - width: 40px; - min-width: 40px; - display: inline-block; - line-height: 40px; - text-align: center; - font-size: 22px; -} -.profile-details > a { - margin-bottom: 15px; - display: block; - border-radius: 10px; -} -.data-scrollbar { - height: 100vh; -} -.navbar-toggler { - outline: none; -} -.profile-detail { - position: relative; -} -.profile-detail .profile-img { - position: absolute; - left: 0; - right: 0; - bottom: -6px; - margin: 0 auto; - border: 0; - background: #fff; -} -@media (min-width: 1300px) { - .iq-navbar-logo { - display: none !important; - } - .iq-navbar-logo > a { - display: none; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a.collapsed { - pointer-events: none; - } -} -@media (max-width: 1199px) { - .iq-search-bar .searchbox { - width: 320px; - } -} -@media (max-width: 1299px) { - .iq-top-navbar { - width: 100%; - } - .iq-top-navbar .iq-search-bar.device-search { - margin-left: 20px; - } - body.sidebar-main .iq-top-navbar { - width: 100%; - } -} -.search-toggle.add-btn { - margin: 0 10px 0 12px; -} -@media (min-width: 992px) { - .search-content { - display: none; - } - .navbar-list li:last-child > a { - padding: 0 0 0 10px; - } -} -@media (max-width: 991px) { - .device-search { - display: none; - } - .navbar-collapse { - position: absolute; - top: 100%; - left: 0; - width: 100%; - background: #fff; - border-radius: 10px; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - } - .navbar-nav.navbar-list { - display: inline-block; - } - .iq-top-navbar { - padding: 16px 15px !important; - line-height: normal; - min-height: unset; - } - .iq-top-navbar .navbar-toggler { - color: #110a57; - background: transparent; - border: none; - padding: 0; - border-radius: 5px; - font-size: 24px; - margin-top: 0; - } - .iq-top-navbar .iq-navbar-logo img { - height: 25px; - } - .iq-top-navbar .iq-search-bar { - line-height: normal; - } - .iq-top-navbar .navbar-list li .add-btn { - margin-top: 18px; - } - .iq-search-bar .searchbox { - width: 100%; - } -} -@media (max-width: 767px) { - .iq-top-navbar .lang .iq-sub-dropdown { - width: 150px; - } -} -@media (max-width: 575px) { - .search-toggle { - position: relative; - } - .iq-top-navbar .iq-sub-dropdown { - left: 0; - right: 0; - margin: 0 auto; - width: 270px; - } - .iq-top-navbar .iq-search-bar { - width: 100%; - } - .iq-top-navbar .iq-user-dropdown { - width: 300px; - } - .navbar-list li { - position: static; - } - .navbar-list li > a.language-title { - font-size: 0; - } -} -@media (max-width: 479px) { - .navbar-list li > a { - padding: 0 7px; - } - .navbar-list li > a > img { - width: 40px; - height: 40px; - min-width: 40px; - } -} -@media (max-width: 345px) { - .navbar-list li > a { - padding: 0 12px; - } -} -.iq-right-fixed { - margin: 0 15px; -} -.right-sidebar-mini { - top: 75px; - z-index: 100; - position: fixed; - width: 260px; - right: 0; - transform: translateX(calc(111% + -2em)); - transition: all 0.3s ease-in-out; -} -.right-sidebar-mini .side-left-icon { - display: none; -} -.right-sidebar-toggle { - position: absolute; - margin-left: -44px; - background: #fff; - padding: 15px; - display: inline; - top: 0; - z-index: 99; - border-radius: 50px 0 0 50px; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - cursor: pointer; -} -.right-sidebar-toggle span { - display: none !important; -} -.right-sidebar-panel { - background-color: #fff; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - height: 91vh; - padding: 15px; - overflow-y: scroll; -} -.right-sidebar { - transform: translateX(calc(10% + -1em)); -} -.right-sidebar .side-right-icon { - display: none; -} -.right-sidebar .side-left-icon { - display: block; -} -@media (min-width: 1500px) { - .right-sidebar-mini { - transform: translateX(calc(10% + -1em)); - } - .right-sidebar-mini:hover .right-sidebar-toggle { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - margin-left: -44px; - transition: all 0.3s ease-in-out; - } - .right-sidebar-toggle { - z-index: -1; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - margin-left: 0; - transition: all 0.3s ease-in-out; - } - .right-sidebar-mini.right-sidebar { - transform: translateX(calc(111% + -2em)); - } - .right-sidebar-mini.right-sidebar .right-sidebar-toggle { - margin-left: -44px; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - body.right-sidebar-close footer { - width: calc(100vw - 260px); - } -} -@media (min-width: 1300px) and (max-width: 1499px) { - .right-sidebar-mini { - transform: translateX(calc(111% + -8em)); - } - .right-sidebar-mini .media-body { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - .right-sidebar-mini.right-sidebar { - transform: translateX(calc(10% + -1em)); - } - .right-sidebar-mini.right-sidebar .media-body { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } -} -.basic-drop-shadow { - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} -.bottom-left { - box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.15); -} -.bottom-right { - box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15); -} -.top-left { - box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.15); -} -.top-right { - box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.15); -} -.shadow-bottom { - box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.15); -} -.inner-shadow { - box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15); -} -.blur-shadow { - box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.15); -} -@keyframes d { - to { - transform: scale(2); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} -.ripple { - width: 0; - height: 0; - border-radius: 50%; - background: #88dffb; - transform: scale(0); - position: absolute; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.rippleEffect { - animation: d 0.6s linear; -} -.media-support { - display: inline-block; - width: 100%; -} -.media-support-user-img img { - height: 60px; -} -.media-support-header { - display: flex; - align-items: flex-start; -} -.media-support-info { - flex: 1; -} -.projects-media img { - height: 60px; -} -.iq-media-group .iq-media { - margin-left: -20px; - position: relative; - z-index: 0; - transition: all 0.3s ease-in-out; -} -.iq-media-group .iq-media:hover { - z-index: 9; -} -.iq-media-group .iq-media img { - border: 2px solid #dcdfe8; -} -.iq-media-group .iq-media:first-child { - margin-left: 0; -} -.iq-media-group .iq-media.border { - border: 2px solid #dcdfe8; -} -.iq-media { - display: -ms-inline-flexbox; - display: inline-flex; - background-repeat: no-repeat; - background-position: 50%; - background-size: cover; -} -.iq-media:hover { - text-decoration: none; -} -.media-pl { - text-align: center; -} -.badge { - padding: 0.3em 0.6em; - line-height: 1.3; - text-transform: capitalize; - border-radius: 10px; -} -.breadcrumb.bg-primary .breadcrumb-item + .breadcrumb-item:before { - color: #fff; -} -.alert { - display: -ms-flexbox; - display: flex; - -ms-flex-align: stretch; - align-items: stretch; -} -.alert.bg-white { - border-width: 2px; -} -.alert .iq-alert-icon { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0 1.3rem 0 0; -} -.alert .iq-alert-icon i { - font-size: 2.441em; - line-height: normal; -} -.alert .iq-alert-text { - -ms-flex-item-align: center; - align-self: center; - -ms-flex-positive: 1; - flex-grow: 1; -} -.alert .close { - float: right; - font-size: 20px; - font-weight: 400; - line-height: 1; - color: #fff; - text-shadow: none; - opacity: 1; -} -.close:not(:disabled):not(.disabled):focus, -.close:not(:disabled):not(.disabled):hover { - outline: none; -} -.dark .alert-primary { - color: #32bdea; - background-color: rgba(50, 189, 234, 0.2); - border-color: #c6edf9; -} -.dark .alert-primary hr { - border-top-color: #afe6f7; -} -.dark .alert-primary .alert-link { - color: #16a5d3; -} -.dark .alert-primary.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-secondary { - color: #ff7e41; - background-color: rgba(255, 126, 65, 0.2); - border-color: #ffdbca; -} -.dark .alert-secondary hr { - border-top-color: #ffcab1; -} -.dark .alert-secondary .alert-link { - color: #ff5b0e; -} -.dark .alert-secondary.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-success { - color: #78c091; - background-color: rgba(120, 192, 145, 0.2); - border-color: #d9ede0; -} -.dark .alert-success hr { - border-top-color: #c8e5d2; -} -.dark .alert-success .alert-link { - color: #55b075; -} -.dark .alert-success.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-info { - color: #7ee2ff; - background-color: rgba(126, 226, 255, 0.2); - border-color: #dbf7ff; -} -.dark .alert-info hr { - border-top-color: #c2f1ff; -} -.dark .alert-info .alert-link { - color: #4bd7ff; -} -.dark .alert-info.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-warning { - color: #ff9770; - background-color: rgba(255, 151, 112, 0.2); - border-color: #ffe2d7; -} -.dark .alert-warning hr { - border-top-color: #ffd0be; -} -.dark .alert-warning .alert-link { - color: #ff723d; -} -.dark .alert-warning.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-danger { - color: #e08db4; - background-color: rgba(224, 141, 180, 0.2); - border-color: #f6dfea; -} -.dark .alert-danger hr { - border-top-color: #f0cbdd; -} -.dark .alert-danger .alert-link { - color: #d5659a; -} -.dark .alert-danger.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-light { - color: #c7cbd3; - background-color: rgba(199, 203, 211, 0.2); - border-color: #eff0f3; -} -.dark .alert-light hr { - border-top-color: #e0e2e8; -} -.dark .alert-light .alert-link { - color: #aab0bd; -} -.dark .alert-light.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-dark { - color: #01041b; - background-color: rgba(1, 4, 27, 0.2); - border-color: #b8b9bf; -} -.dark .alert-dark hr { - border-top-color: #abacb3; -} -.dark .alert-dark .alert-link { - color: #000; -} -.dark .alert-dark.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-orange { - color: #ff7e41; - background-color: rgba(255, 126, 65, 0.2); - border-color: #ffdbca; -} -.dark .alert-orange hr { - border-top-color: #ffcab1; -} -.dark .alert-orange .alert-link { - color: #ff5b0e; -} -.dark .alert-orange.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-purple { - color: #4731b6; - background-color: rgba(71, 49, 182, 0.2); - border-color: #cbc5eb; -} -.dark .alert-purple hr { - border-top-color: #bab2e4; -} -.dark .alert-purple .alert-link { - color: #37268e; -} -.dark .alert-purple.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-skyblue { - color: #158df7; - background-color: rgba(21, 141, 247, 0.2); - border-color: #bddffd; -} -.dark .alert-skyblue hr { - border-top-color: #a4d3fc; -} -.dark .alert-skyblue .alert-link { - color: #0773d2; -} -.dark .alert-skyblue.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.dark .alert-light-gray { - color: #f4f5fa; - background-color: rgba(244, 245, 250, 0.2); - border-color: #fcfcfe; -} -.dark .alert-light-gray hr { - border-top-color: #e9e9f8; -} -.dark .alert-light-gray .alert-link { - color: #d1d5ea; -} -.dark .alert-light-gray.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} -.iq-example-row .row > .col, -.iq-example-row .row > [class^="col-"] { - padding-top: 0.75rem; - color: #676e8a; - padding-bottom: 0.75rem; - background-color: rgba(86, 61, 124, 0.15); - border: 1px solid rgba(86, 61, 124, 0.2); -} -.iq-example-row-flex-cols .row { - margin-bottom: 15px; - min-height: 10rem; - background-color: rgba(255, 0, 0, 0.1); -} -.nav-pills .nav-item a { - color: #676e8a; -} -.nav-pills .nav-link:hover { - color: #32bdea; -} -.nav-tabs { - border-bottom: 2px solid #88dffb; - margin-bottom: 15px; -} -.nav-tabs .nav-item { - margin-bottom: -2px; -} -.nav-tabs .nav-item a { - color: #676e8a; - border: none; - border-bottom: 2px solid transparent; -} -.nav-tabs .nav-item.show .nav-link, -.nav-tabs .nav-link.active { - border-bottom: 2px solid #32bdea; - color: #32bdea; -} -.custom-checkbox.custom-checkbox-color input.bg-primary ~ label:before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} -.custom-checkbox.custom-checkbox-color input.bg-success ~ label:before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} -.custom-checkbox.custom-checkbox-color input.bg-danger ~ label:before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} -.custom-checkbox.custom-checkbox-color input.bg-warning ~ label:before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} -.custom-checkbox.custom-checkbox-color input.bg-dark ~ label:before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} -.custom-checkbox.custom-checkbox-color input.bg-info ~ label:before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-primary - ~ label:before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-success - ~ label:before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-danger - ~ label:before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-warning - ~ label:before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-dark - ~ label:before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-info - ~ label:before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} -.custom-radio.custom-radio-color input.bg-primary ~ label:before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} -.custom-radio.custom-radio-color input.bg-success ~ label:before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} -.custom-radio.custom-radio-color input.bg-danger ~ label:before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} -.custom-radio.custom-radio-color input.bg-warning ~ label:before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} -.custom-radio.custom-radio-color input.bg-dark ~ label:before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} -.custom-radio.custom-radio-color input.bg-info ~ label:before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} -.custom-radio.custom-radio-color-checked - input:checked.bg-primary - ~ label:before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} -.custom-radio.custom-radio-color-checked - input:checked.bg-success - ~ label:before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} -.custom-radio.custom-radio-color-checked - input:checked.bg-danger - ~ label:before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} -.custom-radio.custom-radio-color-checked - input:checked.bg-warning - ~ label:before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} -.custom-radio.custom-radio-color-checked input:checked.bg-dark ~ label:before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} -.custom-radio.custom-radio-color-checked input:checked.bg-info ~ label:before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} -.custom-switch.custom-switch-color input:checked.bg-primary ~ label:before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} -.custom-switch.custom-switch-color input:checked.bg-success ~ label:before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} -.custom-switch.custom-switch-color input:checked.bg-danger ~ label:before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} -.custom-switch.custom-switch-color input:checked.bg-warning ~ label:before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} -.custom-switch.custom-switch-color input:checked.bg-dark ~ label:before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} -.custom-switch.custom-switch-color input:checked.bg-info ~ label:before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} -.custom-checkbox.checkbox-icon label i { - position: absolute; - top: 6px; - left: -21px; - font-size: 10px; - transform: scale(0); - transition: all 0.3s ease-in-out; -} -.custom-checkbox.checkbox-icon input:checked ~ label i { - transform: scale(1); - color: #fff; -} -.custom-checkbox.checkbox-icon input:checked ~ label:after { - display: none; -} -.custom-control-input:checked ~ .custom-control-label:before { - background-color: #32bdea; - border-color: #32bdea; -} -.custom-checkbox - .custom-control-input:disabled:checked - ~ .custom-control-label:before, -.custom-radio - .custom-control-input:disabled:checked - ~ .custom-control-label:before { - background-color: #88dffb; - color: #32bdea; -} -.custom-select:focus { - box-shadow: none; -} -.custom-control-label { - line-height: 22px; -} -.custom-switch.custom-switch-icon { - padding-left: 0; -} -.custom-switch.custom-switch-icon label .switch-icon-left { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -2px; - left: 8px; - right: auto; - color: #fff; -} -.custom-switch.custom-switch-icon label .switch-icon-left i { - font-size: 10px; -} -.custom-switch.custom-switch-icon label .switch-icon-right { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -3px; - right: 5px; - left: auto; -} -.custom-switch.custom-switch-icon label .switch-icon-right i { - font-size: 10px; -} -.custom-switch.custom-switch-icon .custom-control-label { - height: 20px; - width: 42px; - padding: 0; -} -.custom-switch.custom-switch-icon .custom-control-label:before { - height: 20px; - transition: all 0.3s ease-in-out; - user-select: none; - top: 0; - left: 1px; - width: 2.75rem; -} -.custom-switch.custom-switch-icon .custom-control-label:after { - position: absolute; - top: 1px; - left: 2px; - transition: all 0.3s ease-in-out; - user-select: none; - height: 18px; - width: 18px; -} -.custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:after { - transform: translateX(1.4rem); -} -.custom-switch.custom-switch-text { - padding-left: 0; -} -.custom-switch.custom-switch-text label .switch-icon-left { - left: 8px; - right: auto; - color: #fff; -} -.custom-switch.custom-switch-text label .switch-icon-left, -.custom-switch.custom-switch-text label .switch-icon-right { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -3px; -} -.custom-switch.custom-switch-text label .switch-icon-right { - right: 5px; - left: auto; -} -.custom-switch.custom-switch-text label:before { - color: #000; - content: attr(data-off-label); - width: 2.85rem; - height: 20px; - padding: 0 4px; - font-size: 11px; - line-height: 18px; - text-align: right; -} -.custom-switch.custom-switch-text label:after { - position: absolute; - transition: all 0.3s ease-in-out; - user-select: none; - height: 16px; - width: 16px; -} -.custom-switch.custom-switch-text .custom-control-label { - width: 46px; -} -.custom-switch.custom-switch-text .custom-control-label:before { - height: 20px; - transition: all 0.3s ease-in-out; - user-select: none; - top: 0; - left: 1px; - width: 2.75rem; - width: 100%; -} -.custom-switch.custom-switch-text .custom-control-label:after { - position: absolute; - top: 1px; - left: 2px; - transition: all 0.3s ease-in-out; - user-select: none; - height: 18px; - width: 18px; -} -.custom-switch.custom-switch-text - .custom-control-input:checked - ~ .custom-control-label:after { - transform: translateX(1.6rem); -} -.custom-switch.custom-switch-text input:checked ~ label:before { - color: #fff; - content: attr(data-on-label); - text-align: left; -} -.custom-switch.custom-switch-text - input:checked - ~ label.custom-control-label:after { - transform: translateX(1.6rem); -} -.custom-switch-inner { - display: block; - text-align: center; -} -.form-label-group { - position: relative; - margin-bottom: 1.5rem; -} -.form-label-group > label { - position: absolute; - top: 0; - left: 0; - display: block; - transition: all 0.3s ease-in-out; - padding: 0.6rem; - color: #475f7b; - font-size: 0.85rem; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; -} -.counter-value { - color: #fff; - padding: 1px 6px; - font-size: 0.6rem; - border-radius: 0 0 10px 10px; - margin-right: 1rem; -} -.vector-map.h-500 { - width: 100%; - height: 500px; -} -.countdown { - margin: 60px 0 0; - padding: 0; -} -.countdown li span { - font-size: 60px; - display: inline-block; - width: 100%; - color: #32bdea; -} -.countdown li:last-child { - margin-right: 0; -} -.iq-comingsoon-form { - position: relative; -} -.iq-comingsoon-form button { - position: absolute; - right: 0; - top: 0; - padding: 11px 30px; -} -.btn { - display: inline-block; - font-family: Lato, sans-serif; - font-weight: 400; - color: #676e8a; - text-align: center; - vertical-align: middle; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 10px; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} -.btn:hover { - color: #676e8a; - text-decoration: none; -} -.btn.focus, -.btn:focus { - outline: none; - box-shadow: none; -} -.btn.disabled, -.btn:disabled { - opacity: 0.65; - box-shadow: none; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -.btn:not(:disabled):not(.disabled).active, -.btn:not(:disabled):not(.disabled).active:focus, -.btn:not(:disabled):not(.disabled):active, -.btn:not(:disabled):not(.disabled):active:focus { - box-shadow: none; -} -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} -.btn-primary { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; - box-shadow: unset; -} -.btn-primary.focus, -.btn-primary:focus, -.btn-primary:hover { - color: #fff; - background-color: #17aedf; - border-color: #16a5d3; -} -.btn-primary.focus, -.btn-primary:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(81, 199, 237, 0.5); -} -.btn-primary.disabled, -.btn-primary:disabled { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-primary:not(:disabled):not(.disabled).active, -.btn-primary:not(:disabled):not(.disabled):active, -.show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #16a5d3; - border-color: #149cc8; -} -.btn-primary:not(:disabled):not(.disabled).active:focus, -.btn-primary:not(:disabled):not(.disabled):active:focus, -.show > .btn-primary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(81, 199, 237, 0.5); -} -.btn-secondary { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; - box-shadow: unset; -} -.btn-secondary.focus, -.btn-secondary:focus, -.btn-secondary:hover { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; -} -.btn-secondary.focus, -.btn-secondary:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-secondary.disabled, -.btn-secondary:disabled { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-secondary:not(:disabled):not(.disabled).active, -.btn-secondary:not(:disabled):not(.disabled):active, -.show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #ff5b0e; - border-color: #ff5301; -} -.btn-secondary:not(:disabled):not(.disabled).active:focus, -.btn-secondary:not(:disabled):not(.disabled):active:focus, -.show > .btn-secondary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-success { - color: #fff; - background-color: #78c091; - border-color: #78c091; - box-shadow: unset; -} -.btn-success.focus, -.btn-success:focus, -.btn-success:hover { - color: #fff; - background-color: #5eb47c; - border-color: #55b075; -} -.btn-success.focus, -.btn-success:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(140, 201, 162, 0.5); -} -.btn-success.disabled, -.btn-success:disabled { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-success:not(:disabled):not(.disabled).active, -.btn-success:not(:disabled):not(.disabled):active, -.show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #55b075; - border-color: #4fa96e; -} -.btn-success:not(:disabled):not(.disabled).active:focus, -.btn-success:not(:disabled):not(.disabled):active:focus, -.show > .btn-success.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(140, 201, 162, 0.5); -} -.btn-info { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; - box-shadow: unset; -} -.btn-info.focus, -.btn-info:focus, -.btn-info:hover { - color: #fff; - background-color: #58d9ff; - border-color: #4bd7ff; -} -.btn-info.focus, -.btn-info:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(145, 230, 255, 0.5); -} -.btn-info.disabled, -.btn-info:disabled { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-info:not(:disabled):not(.disabled).active, -.btn-info:not(:disabled):not(.disabled):active, -.show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #4bd7ff; - border-color: #3ed4ff; -} -.btn-info:not(:disabled):not(.disabled).active:focus, -.btn-info:not(:disabled):not(.disabled):active:focus, -.show > .btn-info.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(145, 230, 255, 0.5); -} -.btn-warning { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; - box-shadow: unset; -} -.btn-warning.focus, -.btn-warning:focus, -.btn-warning:hover { - color: #fff; - background-color: #ff7b4a; - border-color: #ff723d; -} -.btn-warning.focus, -.btn-warning:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(255, 167, 133, 0.5); -} -.btn-warning.disabled, -.btn-warning:disabled { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-warning:not(:disabled):not(.disabled).active, -.btn-warning:not(:disabled):not(.disabled):active, -.show > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ff723d; - border-color: #ff6930; -} -.btn-warning:not(:disabled):not(.disabled).active:focus, -.btn-warning:not(:disabled):not(.disabled):active:focus, -.show > .btn-warning.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 167, 133, 0.5); -} -.btn-danger { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; - box-shadow: unset; -} -.btn-danger.focus, -.btn-danger:focus, -.btn-danger:hover { - color: #fff; - background-color: #d86fa0; - border-color: #d5659a; -} -.btn-danger.focus, -.btn-danger:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(229, 158, 191, 0.5); -} -.btn-danger.disabled, -.btn-danger:disabled { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-danger:not(:disabled):not(.disabled).active, -.btn-danger:not(:disabled):not(.disabled):active, -.show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #d5659a; - border-color: #d25b93; -} -.btn-danger:not(:disabled):not(.disabled).active:focus, -.btn-danger:not(:disabled):not(.disabled):active:focus, -.show > .btn-danger.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(229, 158, 191, 0.5); -} -.btn-light { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; - box-shadow: unset; -} -.btn-light.focus, -.btn-light:focus, -.btn-light:hover { - color: #fff; - background-color: #b2b7c2; - border-color: #aab0bd; -} -.btn-light.focus, -.btn-light:focus { - box-shadow: unset, 0 0 0 0.2rem hsla(220, 8%, 71%, 0.5); -} -.btn-light.disabled, -.btn-light:disabled { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-light:not(:disabled):not(.disabled).active, -.btn-light:not(:disabled):not(.disabled):active, -.show > .btn-light.dropdown-toggle { - color: #fff; - background-color: #aab0bd; - border-color: #a3aab7; -} -.btn-light:not(:disabled):not(.disabled).active:focus, -.btn-light:not(:disabled):not(.disabled):active:focus, -.show > .btn-light.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem hsla(220, 8%, 71%, 0.5); -} -.btn-dark { - color: #fff; - background-color: #01041b; - border-color: #01041b; - box-shadow: unset; -} -.btn-dark.focus, -.btn-dark:focus, -.btn-dark:hover { - color: #fff; - background-color: #000; - border-color: #000; -} -.btn-dark.focus, -.btn-dark:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(39, 42, 61, 0.5); -} -.btn-dark.disabled, -.btn-dark:disabled { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-dark:not(:disabled):not(.disabled).active, -.btn-dark:not(:disabled):not(.disabled):active, -.show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #000; - border-color: #000; -} -.btn-dark:not(:disabled):not(.disabled).active:focus, -.btn-dark:not(:disabled):not(.disabled):active:focus, -.show > .btn-dark.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(39, 42, 61, 0.5); -} -.btn-orange { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; - box-shadow: unset; -} -.btn-orange.focus, -.btn-orange:focus, -.btn-orange:hover { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; -} -.btn-orange.focus, -.btn-orange:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-orange.disabled, -.btn-orange:disabled { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-orange:not(:disabled):not(.disabled).active, -.btn-orange:not(:disabled):not(.disabled):active, -.show > .btn-orange.dropdown-toggle { - color: #fff; - background-color: #ff5b0e; - border-color: #ff5301; -} -.btn-orange:not(:disabled):not(.disabled).active:focus, -.btn-orange:not(:disabled):not(.disabled):active:focus, -.show > .btn-orange.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-purple { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; - box-shadow: unset; -} -.btn-purple.focus, -.btn-purple:focus, -.btn-purple:hover { - color: #fff; - background-color: #3b2998; - border-color: #37268e; -} -.btn-purple.focus, -.btn-purple:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(99, 80, 193, 0.5); -} -.btn-purple.disabled, -.btn-purple:disabled { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-purple:not(:disabled):not(.disabled).active, -.btn-purple:not(:disabled):not(.disabled):active, -.show > .btn-purple.dropdown-toggle { - color: #fff; - background-color: #37268e; - border-color: #332384; -} -.btn-purple:not(:disabled):not(.disabled).active:focus, -.btn-purple:not(:disabled):not(.disabled):active:focus, -.show > .btn-purple.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(99, 80, 193, 0.5); -} -.btn-skyblue { - color: #fff; - background-color: #158df7; - border-color: #158df7; - box-shadow: unset; -} -.btn-skyblue.focus, -.btn-skyblue:focus, -.btn-skyblue:hover { - color: #fff; - background-color: #087ade; - border-color: #0773d2; -} -.btn-skyblue.focus, -.btn-skyblue:focus { - box-shadow: unset, 0 0 0 0.2rem rgba(56, 158, 248, 0.5); -} -.btn-skyblue.disabled, -.btn-skyblue:disabled { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-skyblue:not(:disabled):not(.disabled).active, -.btn-skyblue:not(:disabled):not(.disabled):active, -.show > .btn-skyblue.dropdown-toggle { - color: #fff; - background-color: #0773d2; - border-color: #076cc5; -} -.btn-skyblue:not(:disabled):not(.disabled).active:focus, -.btn-skyblue:not(:disabled):not(.disabled):active:focus, -.show > .btn-skyblue.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(56, 158, 248, 0.5); -} -.btn-light-gray { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; - box-shadow: unset; -} -.btn-light-gray.focus, -.btn-light-gray:focus, -.btn-light-gray:hover { - color: #212529; - background-color: #daddee; - border-color: #d1d5ea; -} -.btn-light-gray.focus, -.btn-light-gray:focus { - box-shadow: unset, 0 0 0 0.2rem hsla(223, 9%, 85%, 0.5); -} -.btn-light-gray.disabled, -.btn-light-gray:disabled { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-light-gray:not(:disabled):not(.disabled).active, -.btn-light-gray:not(:disabled):not(.disabled):active, -.show > .btn-light-gray.dropdown-toggle { - color: #212529; - background-color: #d1d5ea; - border-color: #c8cde6; -} -.btn-light-gray:not(:disabled):not(.disabled).active:focus, -.btn-light-gray:not(:disabled):not(.disabled):active:focus, -.show > .btn-light-gray.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem hsla(223, 9%, 85%, 0.5); -} -.btn-outline-primary { - color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary.focus, -.btn-outline-primary:focus { - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #32bdea; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled).active, -.btn-outline-primary:not(:disabled):not(.disabled):active, -.show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} -.btn-outline-secondary { - color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary.focus, -.btn-outline-secondary:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-secondary.disabled, -.btn-outline-secondary:disabled { - color: #ff7e41; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled).active, -.btn-outline-secondary:not(:disabled):not(.disabled):active, -.show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-success { - color: #78c091; - border-color: #78c091; -} -.btn-outline-success:hover { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-outline-success.focus, -.btn-outline-success:focus { - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} -.btn-outline-success.disabled, -.btn-outline-success:disabled { - color: #78c091; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled).active, -.btn-outline-success:not(:disabled):not(.disabled):active, -.show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-outline-success:not(:disabled):not(.disabled).active:focus, -.btn-outline-success:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} -.btn-outline-info { - color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:hover { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info.focus, -.btn-outline-info:focus { - box-shadow: 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} -.btn-outline-info.disabled, -.btn-outline-info:disabled { - color: #7ee2ff; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled).active, -.btn-outline-info:not(:disabled):not(.disabled):active, -.show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:not(:disabled):not(.disabled).active:focus, -.btn-outline-info:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} -.btn-outline-warning { - color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:hover { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning.focus, -.btn-outline-warning:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} -.btn-outline-warning.disabled, -.btn-outline-warning:disabled { - color: #ff9770; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled).active, -.btn-outline-warning:not(:disabled):not(.disabled):active, -.show > .btn-outline-warning.dropdown-toggle { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} -.btn-outline-danger { - color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger.focus, -.btn-outline-danger:focus { - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} -.btn-outline-danger.disabled, -.btn-outline-danger:disabled { - color: #e08db4; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled).active, -.btn-outline-danger:not(:disabled):not(.disabled):active, -.show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} -.btn-outline-light { - color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:hover { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light.focus, -.btn-outline-light:focus { - box-shadow: 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} -.btn-outline-light.disabled, -.btn-outline-light:disabled { - color: #c7cbd3; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled).active, -.btn-outline-light:not(:disabled):not(.disabled):active, -.show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:not(:disabled):not(.disabled).active:focus, -.btn-outline-light:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} -.btn-outline-dark { - color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-outline-dark.focus, -.btn-outline-dark:focus { - box-shadow: 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} -.btn-outline-dark.disabled, -.btn-outline-dark:disabled { - color: #01041b; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled).active, -.btn-outline-dark:not(:disabled):not(.disabled):active, -.show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} -.btn-outline-orange { - color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:hover { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange.focus, -.btn-outline-orange:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-orange.disabled, -.btn-outline-orange:disabled { - color: #ff7e41; - background-color: transparent; -} -.btn-outline-orange:not(:disabled):not(.disabled).active, -.btn-outline-orange:not(:disabled):not(.disabled):active, -.show > .btn-outline-orange.dropdown-toggle { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:not(:disabled):not(.disabled).active:focus, -.btn-outline-orange:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-orange.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-purple { - color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:hover { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple.focus, -.btn-outline-purple:focus { - box-shadow: 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} -.btn-outline-purple.disabled, -.btn-outline-purple:disabled { - color: #4731b6; - background-color: transparent; -} -.btn-outline-purple:not(:disabled):not(.disabled).active, -.btn-outline-purple:not(:disabled):not(.disabled):active, -.show > .btn-outline-purple.dropdown-toggle { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:not(:disabled):not(.disabled).active:focus, -.btn-outline-purple:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-purple.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} -.btn-outline-skyblue { - color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:hover { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue.focus, -.btn-outline-skyblue:focus { - box-shadow: 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} -.btn-outline-skyblue.disabled, -.btn-outline-skyblue:disabled { - color: #158df7; - background-color: transparent; -} -.btn-outline-skyblue:not(:disabled):not(.disabled).active, -.btn-outline-skyblue:not(:disabled):not(.disabled):active, -.show > .btn-outline-skyblue.dropdown-toggle { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:not(:disabled):not(.disabled).active:focus, -.btn-outline-skyblue:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-skyblue.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} -.btn-outline-light-gray { - color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:hover { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray.focus, -.btn-outline-light-gray:focus { - box-shadow: 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} -.btn-outline-light-gray.disabled, -.btn-outline-light-gray:disabled { - color: #f4f5fa; - background-color: transparent; -} -.btn-outline-light-gray:not(:disabled):not(.disabled).active, -.btn-outline-light-gray:not(:disabled):not(.disabled):active, -.show > .btn-outline-light-gray.dropdown-toggle { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:not(:disabled):not(.disabled).active:focus, -.btn-outline-light-gray:not(:disabled):not(.disabled):active:focus, -.show > .btn-outline-light-gray.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} -.btn-link { - font-weight: 400; - color: #32bdea; - text-decoration: none; -} -.btn-link:hover { - color: #1393bc; -} -.btn-link.focus, -.btn-link:focus, -.btn-link:hover { - text-decoration: none; -} -.btn-link.disabled, -.btn-link:disabled { - color: #6c757d; - pointer-events: none; -} -.btn-group-lg > .btn, -.btn-lg { - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} -.btn-group-sm > .btn, -.btn-sm { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} -.btn-group-lg > .btn, -.btn-lg { - font-size: inherit; - padding: 0.7rem 1rem; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} -input[type="button"].btn-block, -input[type="reset"].btn-block, -input[type="submit"].btn-block { - width: 100%; -} -.iq-progress-bar { - background: #c7cbd3; - box-shadow: 0 0 0; - height: 6px; - margin: 0; - position: relative; - width: 100%; - border-radius: 10px; -} -.iq-progress-bar > span { - background: #32bdea none repeat scroll 0 0; - position: relative; - display: block; - height: 100%; - width: 0; - border-radius: 10px; -} -.iq-progress-bar .progress-text { - position: absolute; - right: -10px; - top: -25px; - font-size: 13px; - font-weight: 500; -} -.iq-progress-bar.iq-progress-bar-icon > span:after { - content: ""; - width: 12px; - height: 12px; - border-radius: 50%; - background: #fff; - border: 3px solid transparent; - position: absolute; - bottom: -3px; - right: 0; - z-index: 1; -} -.iq-progress-bar.iq-progress-bar-icon > span.bg-primary:after { - border-color: #32bdea; -} -.iq-progress-bar.iq-progress-bar-icon > span.bg-danger:after { - border-color: #e08db4; -} -.iq-progress-bar.iq-progress-bar-icon > span.bg-success:after { - border-color: #78c091; -} -.iq-progress-bar.iq-progress-bar-icon > span.bg-warning:after { - border-color: #ff9770; -} -.iq-progress-bar.iq-progress-bar-icon > span.bg-info:after { - border-color: #7ee2ff; -} -.iq-progress-bar.iq-progress-bar-icon > span.bg-dark:after { - border-color: #01041b; -} -.progress-round.heatmap-progress { - height: 97px; - width: 97px; -} -.progress-round.heatmap-progress .progress-bar { - border-width: 10px; -} -.progress-round.heatmap-progress:after { - border: 10px solid #ff9273; -} -.iq-progress-bar .progress-text-one { - position: absolute; - right: -15px; - top: -35px; - font-size: 13px; - line-height: 24px; - font-weight: 500; - background: #e08db4; - color: #fff; - padding: 0 5px; -} -.iq-progress-bar > span.bg-primary .progress-text-one:after { - border-color: #32bdea transparent transparent; -} -.iq-progress-bar > span.bg-success .progress-text-one:after { - border-color: #78c091 transparent transparent; -} -.iq-progress-bar > span.bg-warning .progress-text-one:after { - border-color: #ff9770 transparent transparent; -} -.iq-progress-bar > span.bg-orange .progress-text-one:after { - border-color: #ff7e41 transparent transparent; -} -.iq-progress-bar > span.bg-danger .progress-text-one:after { - border-color: #e08db4 transparent transparent; -} -.iq-progress-bar > span.bg-dark .progress-text-one:after { - border-color: #01041b transparent transparent; -} -.iq-progress-bar > span.bg-info .progress-text-one:after { - border-color: #7ee2ff transparent transparent; -} -.iq-progress-bar > span.bg-skyblue .progress-text-one:after { - border-color: #158df7 transparent transparent; -} -.progress-text-one { - position: relative; -} -.progress-text-one:after { - content: ""; - position: absolute; - top: 100%; - left: 50%; - margin-left: -5px; - border-width: 5px; - border-style: solid; -} -.iq-circle-progressbar { - margin: 0 auto; - width: 100px !important; - height: 100px !important; -} -.iq-circle-progressbar .percent { - font-size: 1.3rem !important; -} -.iq-circle-progressbar svg { - width: 100px !important; - height: 100px !important; -} -.progress-round { - width: 50px; - height: 50px; - background: none; - position: relative; -} -.progress-round:after { - content: ""; - width: 100%; - height: 100%; - border-radius: 50%; - border: 3px solid #dcdfe8; - position: absolute; - top: 0; - left: 0; -} -.progress-round > span { - width: 50%; - height: 100%; - overflow: hidden; - position: absolute; - top: 0; - z-index: 1; -} -.progress-round .progress-left { - left: 0; -} -.progress-round .progress-left .progress-bar { - left: 100%; - border-top-right-radius: 80px; - border-bottom-right-radius: 80px; - border-left: 0; - transform-origin: center left; -} -.progress-round .progress-bar { - width: 100%; - height: 100%; - background: none; - border-width: 3px; - border-style: solid; - position: absolute; - top: 0; -} -.progress-round .progress-right { - right: 0; -} -.progress-round .progress-right .progress-bar { - left: -100%; - border-top-left-radius: 80px; - border-bottom-left-radius: 80px; - border-right: 0; - transform-origin: center right; -} -.progress-round .progress-value { - position: absolute; - top: 0; - left: 0; -} -.progress-round.income-progress { - height: 78px; - width: 78px; -} -.progress-round.income-progress .progress-bar { - border-width: 10px; -} -.progress-round.income-progress:after { - border: 10px solid #ff9273; -} -.progress-round.alarams-progress { - height: 110px; - width: 110px; -} -.progress-round.goal-progress { - width: 130px; - height: 130px; -} -.progress-round.goal-progress .progress-bar { - border-width: 10px; -} -.progress-round.goal-progress:after { - border: 10px solid #f4f4f4; -} -@keyframes e { - 0% { - transform: rotate(0deg); - } - to { - transform: rotate(180deg); - } -} -@keyframes f { - 0% { - transform: rotate(0deg); - } - to { - transform: rotate(80deg); - } -} -.progress.progress-round { - width: 60px; - height: 60px; - line-height: 60px; - background: none; - margin: 0 auto; - box-shadow: none; - position: relative; -} -.progress.progress-round > span { - width: 50%; - height: 100%; - overflow: hidden; - position: absolute; - top: 0; - z-index: 1; -} -.progress.progress-round .progress-left { - left: 0; -} -.progress.progress-round .progress-left .progress-bar { - left: 100%; - border-top-right-radius: 80px; - border-bottom-right-radius: 80px; - border-left: 0; - transform-origin: center left; - animation: f 1.5s linear forwards 1.8s; -} -.progress.progress-round .progress-bar { - border-width: 5px; -} -.progress.progress-round .progress-right { - right: 0; -} -.progress.progress-round .progress-right .progress-bar { - left: -100%; - border-top-left-radius: 80px; - border-bottom-left-radius: 80px; - border-right: 0; - transform-origin: center right; - animation: e 1.8s linear forwards; -} -.progress.progress-round:after { - content: ""; - width: 100%; - height: 100%; - border-radius: 50%; - border: 5px solid #c7cbd3; - position: absolute; - top: 0; - left: 0; -} -.progress.progress-round .progress-value { - font-size: 16px; - left: 18px; -} -.progress.danger .progress-bar { - border-color: #e08db4; -} -.progress.warning .progress-bar { - border-color: #ff9770; -} -.progress.success .progress-bar { - border-color: #78c091; -} -.progress.info .progress-bar { - border-color: #7ee2ff; -} -.progress.primary .progress-bar { - border-color: #32bdea; -} -.progress.orange .progress-bar { - border-color: #ff7e41; -} -.page-link { - border-color: #32bdea; -} -.br-theme-bars-1to10 .br-widget { - height: 50px; - white-space: nowrap; -} -.br-theme-bars-1to10 .br-widget a { - display: block; - width: 12px; - padding: 5px 0; - height: 28px; - float: left; - background-color: #ddd; - margin: 1px; - text-align: center; -} -.br-theme-bars-1to10 .br-widget a.br-active, -.br-theme-bars-1to10 .br-widget a.br-selected { - background-color: #32bdea; -} -.br-theme-bars-1to10 .br-widget .br-current-rating { - font-size: 20px; - line-height: 2; - float: right; - color: #32bdea; - font-weight: 400; -} -.br-theme-bars-1to10 .br-readonly a { - cursor: default; -} -.br-theme-bars-1to10 .br-readonly a.br-active, -.br-theme-bars-1to10 .br-readonly a.br-selected { - background-color: #f2cd95; -} -.br-theme-bars-1to10 .br-readonly .br-current-rating { - color: #f2cd95; -} -.br-theme-bars-pill .br-widget { - white-space: nowrap; -} -.br-theme-bars-pill .br-widget a { - padding: 7px 15px; - background-color: #ddd; - color: #676e8a; - text-decoration: none; - font-size: 13px; - line-height: 3; - text-align: center; - font-weight: 400; -} -.br-theme-bars-pill .br-widget a:first-child { - -webkit-border-top-left-radius: 999px; - -webkit-border-bottom-left-radius: 999px; - -moz-border-radius-topleft: 999px; - -moz-border-radius-bottomleft: 999px; - border-top-left-radius: 999px; - border-bottom-left-radius: 999px; -} -.br-theme-bars-pill .br-widget a:last-child { - -webkit-border-top-right-radius: 999px; - -webkit-border-bottom-right-radius: 999px; - -moz-border-radius-top-right: 999px; - -moz-border-radius-bottom-right: 999px; - border-top-right-radius: 999px !important; - border-bottom-right-radius: 999px !important; -} -.br-theme-bars-pill .br-widget a.br-active, -.br-theme-bars-pill .br-widget a.br-selected { - background-color: #32bdea; - color: #fff; -} -.br-theme-bars-pill .br-readonly a { - cursor: default; -} -.br-theme-bars-pill .br-readonly a.br-active, -.br-theme-bars-pill .br-readonly a.br-selected { - background-color: #7cead1; -} -.br-theme-fontawesome-stars .br-widget a { - margin-right: 8px !important; -} -.br-theme-fontawesome-stars .br-widget a:after { - font-family: Font Awesome\5 Free; - font-weight: 900; -} -i.amber-text { - color: #32bdea !important; -} -#rateMe1 i { - font-size: 18px; -} -.mdb-rating .rate-popover { - color: gray; -} -.mdb-rating .live { - color: #000; -} -.mdb-rating .oneStar { - color: #44370f; -} -.mdb-rating .twoStars { - color: #96781e; -} -.mdb-rating .threeStars { - color: #e2b52e; -} -.mdb-rating .fourStars { - color: #f1ba12; -} -.mdb-rating .fiveStars { - color: #f3cb06; -} -.mdb-rating .amber-text { - color: #ffc107; -} -.rating-faces i { - font-size: 21px; -} -.br-theme-bars-movie .br-widget { - white-space: nowrap; -} -.br-theme-bars-movie .br-widget a { - display: block; - width: 60px; - height: 10px; - float: left; - background-color: transparent; - border: 1px solid #32bdea; - margin: 1px; -} -.br-theme-bars-movie .br-widget a.br-active, -.br-theme-bars-movie .br-widget a.br-selected { - background-color: #32bdea; -} -.br-theme-bars-movie .br-widget .br-current-rating { - clear: both; - width: 240px; - text-align: center; - font-weight: 600; - display: block; - padding-top: 0.5em; - color: #32bdea; - font-weight: 400; -} -.br-theme-bars-movie .br-readonly a { - cursor: default; -} -.br-theme-bars-movie .br-readonly a.br-active, -.br-theme-bars-movie .br-readonly a.br-selected { - background-color: #729bf8; -} -.br-theme-bars-movie .br-readonly .br-current-rating { - color: #729bf8; -} -.br-theme-fontawesome-stars .br-widget { - height: 28px; - white-space: nowrap; -} -.br-theme-fontawesome-stars .br-widget a { - text-rendering: auto; - -webkit-font-smoothing: antialiased; - text-decoration: none; - margin-right: 2px; -} -.br-theme-fontawesome-stars .br-widget a:after { - content: "\f005"; - color: #d2d2d2; -} -.br-theme-fontawesome-stars .br-widget a.br-active:after, -.br-theme-fontawesome-stars .br-widget a.br-selected:after { - color: #edb867; -} -.br-theme-fontawesome-stars .br-widget .br-current-rating { - display: none; -} -.br-theme-fontawesome-stars .br-readonly a { - cursor: default; -} -.basic-tree li { - list-style-type: none; - margin: 0; - padding: 10px 5px 0; - position: relative; - color: #110a57; -} -.basic-tree li:before { - border-left: 1px solid #999; - bottom: 50px; - height: 100%; - top: 0; - width: 1px; -} -.basic-tree li:after, -.basic-tree li:before { - content: ""; - left: -20px; - position: absolute; - right: auto; -} -.basic-tree li:after { - border-top: 1px solid #999; - height: 20px; - top: 25px; - width: 25px; -} -.basic-tree li:last-child:before { - height: 30px; -} -.basic-tree li.t-parent > span { - cursor: pointer; -} -.basic-tree li.t-parent > span:hover { - color: #32bdea; -} -.basic-tree > ul > li:after, -.basic-tree > ul > li:before { - border: 0; -} -.flex-tree li { - position: relative; - list-style: none; - margin: 0; -} -.flex-tree li:before { - border-left: 1px solid #999; - bottom: 50px; - height: 100%; - top: 0; - width: 1px; -} -.flex-tree li:after, -.flex-tree li:before { - content: ""; - left: -20px; - position: absolute; - right: auto; - left: -25px; -} -.flex-tree li:after { - border-top: 1px solid #999; - height: 20px; - top: 25px; - width: 25px; - top: 12px; -} -.flex-tree li:last-child:before { - height: 25px; -} -.flex-tree li label, -.flex-tree li span, -.flex-tree li span label { - cursor: pointer; -} -.flex-tree li span.open:after { - content: "\025BE"; -} -.flex-tree li span.closed:after, -.flex-tree li span.open:after { - display: inline-block; - font: 400 16px/1 Arial, Helvetica Neue, Helvetica, sans-serif; - width: 20px; - margin-top: 4px; - padding-left: 3px; - color: #ababab; -} -.flex-tree li span.closed:after { - content: "\025BE"; - content: "\025B4"; -} -.flex-tree > ul > li:after, -.flex-tree > ul > li:before { - border: 0; -} -.flex-tree label { - font-weight: 400; -} -.flex-tree label.node { - font-weight: 700; -} -.flex-tree input[type="checkbox"] { - border: 1px solid #b4b9be; - background: #fff; - color: #555; - clear: none; - cursor: pointer; - display: inline-block; - line-height: 0; - height: 16px; - margin: -4px 4px 0 0; - outline: 0; - padding: 0; - text-align: center; - vertical-align: middle; - width: 16px; - min-width: 16px; - -webkit-appearance: none; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - transition: border-color 0.05s ease-in-out; -} -.flex-tree input[type="checkbox"]:focus { - border-color: #5b9dd9; - box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); -} -.flex-tree input[type="checkbox"]:checked { - background: #32bdea; - border: none; -} -.flex-tree input[type="checkbox"]:checked:before { - float: left; - display: inline-block; - vertical-align: middle; - width: 16px; - font: 400 20px/1 Arial, Helvetica Neue, Helvetica, sans-serif; - -webkit-font-smoothing: antialiased; - content: "\02713"; - color: var(--white); - margin: 1px 0 0; - font-size: 17px !important; -} -.flex-tree input[type="checkbox"]:indeterminate:before { - float: left; - display: inline-block; - vertical-align: middle; - width: 16px; - font: 400 20px/1 Arial, Helvetica Neue, Helvetica, sans-serif; - -webkit-font-smoothing: antialiased; - content: "\02043"; - color: #32bdea; - margin: -4px 0 0 -1px; -} -.flex-tree input[type="checkbox"].indeterminate { - background-color: #eee; -} -.ic-square { - width: 20px; - height: 20px; - background: transparent; - border: 1px solid #676e8a; - text-align: center; - line-height: 19px; - font-size: 12px; -} -.tree-box { - margin: 0; -} -.iq-footer { - padding: 0 15px; - margin-left: 260px; - width: calc(100vw - 264px); - background: #fff; - box-shadow: none; - transition: all 0.3s ease-in-out; -} -.iq-footer ul li a { - color: #676e8a; -} -.iq-footer ul li a:hover { - color: #32bdea; - text-decoration: none; -} -body.tab-horizontal .iq-footer { - margin-left: 0; - width: 100%; -} -.iq-mt--70 { - margin-top: -70px; -} -.banner-main-text { - position: absolute; - left: 15%; - bottom: 13%; -} -.nav.nav-pills.style-three { - margin-top: 10px; -} -.nav.nav-pills.style-three .nav-link.active:before, -.nav.nav-pills.style-three .nav-link:hover:before { - display: inline-block; - width: 100%; - height: 3px; - background: #32bdea; - content: ""; - position: absolute; - left: 0; - bottom: 0; -} -.nav.nav-pills.style-three .nav-link:before { - width: 0; - transition: all 0.3s ease-in-out; - height: 3px; - background: #32bdea; - content: ""; - position: absolute; - right: 0; - bottom: 0; -} -.nav.nav-pills.style-three a { - background: transparent; - position: relative; - margin-right: 30px; - padding: 10px 0; -} -.nav.nav-pills.style-three a:last-child { - margin-right: 0; -} -.iq-card-body.banner-box { - padding-bottom: 0; -} -@media (min-width: 1300px) { - body.sidebar-main .iq-footer { - margin-left: 70px; - width: calc(100vw - 74px); - } -} -@media (max-width: 1299px) { - .iq-footer { - padding: 0 15px; - margin-left: 0; - width: 100%; - } - body.sidebar-main .iq-footer { - padding: 15px 10px; - margin-left: 0; - width: 100%; - } - .without-right-sidebar .iq-footer { - width: 100%; - } -} -@media (max-width: 991px) { - .iq-footer { - padding: 0; - } - .iq-footer, - .iq-footer .col-lg-6.text-right { - text-align: center !important; - } -} -.clear { - clear: both; -} -@media (min-width: 1300px) { - .iq-menu-horizontal .iq-sidebar-menu li .iq-submenu.iq-submenu-data { - position: static; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-sidebar-logo { - display: none !important; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li:first-child a { - padding-left: 0; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a:hover { - color: #32bdea; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li li .iq-arrow-right { - transform: rotate(0deg); - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li ul { - display: block; - position: absolute; - top: 100%; - padding: 10px 0; - min-width: 200px; - background: #fff; - z-index: 9; - transition: all 0.3s ease-in-out; - display: none; - animation: c 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; - transform: translateY(100%); - border-radius: 10px; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu .iq-submenu li a { - padding: 12px 13px 12px 15px; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu > li:hover > a { - color: #32bdea; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li.menu-open .iq-arrow-right { - transform: rotate(90deg); - } - .iq-menu-horizontal .iq-sidebar-menu li:hover > .iq-submenu { - display: block; - transition: all 0.3s ease-in-out; - } - .iq-menu-horizontal .iq-sidebar-menu li:hover > .iq-submenu.iq-submenu-data { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - transition: all 0.3s ease-in-out; - } - .iq-menu-horizontal .iq-sidebar-menu li > .iq-submenu.iq-submenu-data { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - visibility: visible; - left: 100%; - top: 0; - transform-origin: left center 0; - } - .iq-menu-horizontal .iq-sidebar-menu li > .iq-submenu .iq-arrow-right { - margin-right: 0; - } - .iq-menu-horizontal .sub-scrll { - max-height: 315px; - overflow-y: scroll; - overflow-x: hidden; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li:hover .iq-arrow-right { - transform: rotate(90deg); - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li:hover li .iq-arrow-right { - transform: rotate(0deg); - } -} -@media (max-width: 1299px) { - .iq-menu-horizontal { - position: fixed; - left: 0; - right: 0; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - top: 0; - width: 0; - background: #fff; - height: 100vh; - z-index: 9; - overflow-y: scroll; - overflow-x: hidden; - transition: all 0.3s ease-in-out; - } - .iq-menu-horizontal ul.iq-menu { - display: block !important; - background: #fff; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a { - padding: 15px 20px 15px 30px; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a:hover { - color: #32bdea; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li ul { - position: static; - box-shadow: none; - } - .iq-menu-horizontal ul.iq-menu li a[aria-expanded="true"] .iq-arrow-right { - transform: rotate(90deg); - } - .sidebar-main .iq-menu-horizontal { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - width: 260px; - transition: all 0.3s ease-in-out; - } -} -.table { - border: 1px solid #dcdfe8; - border-radius: 10px; - overflow: hidden; - color: #110a57; -} -.table.table-dark td, -.table.table-dark th { - border-color: #110a57; - color: #fff; -} -.table p, -.table span { - color: #676e8a; -} -.table .ligth { - white-space: nowrap; -} -.table .ligth th { - padding: 15px 20px !important; - text-transform: capitalize; - font-size: 17px; - line-height: 22px; - background: #f4f5fa; - color: #110a57; - border: 0; - font-weight: 700 !important; -} -.table .ligth.ligth-data th:first-child, -.table .ligth.ligth-data th:last-child { - text-align: center; - background-image: none; -} -.table .ligth-body tr td:first-child, -.table .ligth-body tr td:last-child { - text-align: center; -} -.table .ligth-body .list-action { - justify-content: center; -} -.table td { - padding: 15px 20px !important; - border: 0; - border-bottom: 1px solid #dcdfe8; -} -.table label, -.table td { - color: #110a57; -} -.btn.add-list { - padding: 0.5rem 1rem; -} -.dropdown-bg.btn { - background: #f4f5fa; - font-size: 14px; -} -.dropdown-bg.btn i { - margin-right: 0; -} -.dropdown-menu { - animation: x 0.4s ease forwards; -} -.bg-blue { - color: #fff !important; - background-color: #32bdea !important; -} -a.bg-blue:focus, -a.bg-blue:hover, -button.bg-blue:focus, -button.bg-blue:hover { - color: #fff !important; - background-color: #16a5d3 !important; -} -.bg-indigo { - color: #fff !important; - background-color: #6610f2 !important; -} -a.bg-indigo:focus, -a.bg-indigo:hover, -button.bg-indigo:focus, -button.bg-indigo:hover { - color: #fff !important; - background-color: #510bc4 !important; -} -.bg-pink { - color: #fff !important; - background-color: #e83e8c !important; -} -a.bg-pink:focus, -a.bg-pink:hover, -button.bg-pink:focus, -button.bg-pink:hover { - color: #fff !important; - background-color: #d91a72 !important; -} -.bg-red { - color: #fff !important; - background-color: #e08db4 !important; -} -a.bg-red:focus, -a.bg-red:hover, -button.bg-red:focus, -button.bg-red:hover { - color: #fff !important; - background-color: #d5659a !important; -} -.bg-yellow { - color: #fff !important; - background-color: #ff9770 !important; -} -a.bg-yellow:focus, -a.bg-yellow:hover, -button.bg-yellow:focus, -button.bg-yellow:hover { - color: #fff !important; - background-color: #ff723d !important; -} -.bg-green { - color: #fff !important; - background-color: #78c091 !important; -} -a.bg-green:focus, -a.bg-green:hover, -button.bg-green:focus, -button.bg-green:hover { - color: #fff !important; - background-color: #55b075 !important; -} -.bg-teal { - color: #fff !important; - background-color: #20c997 !important; -} -a.bg-teal:focus, -a.bg-teal:hover, -button.bg-teal:focus, -button.bg-teal:hover { - color: #fff !important; - background-color: #199d76 !important; -} -.bg-cyan { - color: #fff !important; - background-color: #7ee2ff !important; -} -a.bg-cyan:focus, -a.bg-cyan:hover, -button.bg-cyan:focus, -button.bg-cyan:hover { - color: #fff !important; - background-color: #4bd7ff !important; -} -.bg-white { - color: #212529 !important; - background-color: #fff !important; -} -a.bg-white:focus, -a.bg-white:hover, -button.bg-white:focus, -button.bg-white:hover { - color: #fff !important; - background-color: #e6e6e6 !important; -} -.bg-gray { - color: #fff !important; - background-color: #6c757d !important; -} -a.bg-gray:focus, -a.bg-gray:hover, -button.bg-gray:focus, -button.bg-gray:hover { - color: #fff !important; - background-color: #545b62 !important; -} -.bg-gray-dark { - color: #fff !important; - background-color: #01041b !important; -} -a.bg-gray-dark:focus, -a.bg-gray-dark:hover, -button.bg-gray-dark:focus, -button.bg-gray-dark:hover { - color: #fff !important; - background-color: #000 !important; -} -.bg-gradient-blue { - background: #32bdea linear-gradient(180deg, #51c7ed, #32bdea) repeat-x !important; -} -.bg-gradient-indigo { - background: #6610f2 linear-gradient(180deg, #7d34f4, #6610f2) repeat-x !important; -} -.bg-gradient-pink { - background: #e83e8c linear-gradient(180deg, #eb5b9d, #e83e8c) repeat-x !important; -} -.bg-gradient-red { - background: #e08db4 linear-gradient(180deg, #e59ebf, #e08db4) repeat-x !important; -} -.bg-gradient-yellow { - background: #ff9770 linear-gradient(180deg, #ffa785, #ff9770) repeat-x !important; -} -.bg-gradient-green { - background: #78c091 linear-gradient(180deg, #8cc9a2, #78c091) repeat-x !important; -} -.bg-gradient-teal { - background: #20c997 linear-gradient(180deg, #41d1a7, #20c997) repeat-x !important; -} -.bg-gradient-cyan { - background: #7ee2ff linear-gradient(180deg, #91e6ff, #7ee2ff) repeat-x !important; -} -.bg-gradient-white { - background: #fff linear-gradient(180deg, #fff, #fff) repeat-x !important; -} -.bg-gradient-gray { - background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important; -} -.bg-gradient-gray-dark { - background: #01041b linear-gradient(180deg, #272a3d, #01041b) repeat-x !important; -} -.bg-gradient-primary { - background: #32bdea linear-gradient(180deg, #51c7ed, #32bdea) repeat-x !important; -} -.bg-gradient-secondary { - background: #ff7e41 linear-gradient(180deg, #ff915e, #ff7e41) repeat-x !important; -} -.bg-gradient-success { - background: #78c091 linear-gradient(180deg, #8cc9a2, #78c091) repeat-x !important; -} -.bg-gradient-info { - background: #7ee2ff linear-gradient(180deg, #91e6ff, #7ee2ff) repeat-x !important; -} -.bg-gradient-warning { - background: #ff9770 linear-gradient(180deg, #ffa785, #ff9770) repeat-x !important; -} -.bg-gradient-danger { - background: #e08db4 linear-gradient(180deg, #e59ebf, #e08db4) repeat-x !important; -} -.bg-gradient-light { - background: #c7cbd3 linear-gradient(180deg, #cfd3da, #c7cbd3) repeat-x !important; -} -.bg-gradient-dark { - background: #01041b linear-gradient(180deg, #272a3d, #01041b) repeat-x !important; -} -.bg-gradient-orange { - background: #ff7e41 linear-gradient(180deg, #ff915e, #ff7e41) repeat-x !important; -} -.bg-gradient-purple { - background: #4731b6 linear-gradient(180deg, #6350c1, #4731b6) repeat-x !important; -} -.bg-gradient-skyblue { - background: #158df7 linear-gradient(180deg, #389ef8, #158df7) repeat-x !important; -} -.bg-gradient-light-gray { - background: #f4f5fa linear-gradient(180deg, #f6f7fb, #f4f5fa) repeat-x !important; -} -.bg-primary { - color: #fff !important; - background-color: #32bdea !important; -} -a.bg-primary:focus, -a.bg-primary:hover, -button.bg-primary:focus, -button.bg-primary:hover { - color: #fff !important; - background-color: #16a5d3 !important; -} -.badge-primary { - color: #fff !important; - background-color: #32bdea !important; -} -a.badge-primary:focus, -a.badge-primary:hover, -button.badge-primary:focus, -button.badge-primary:hover { - color: #fff !important; - background-color: #16a5d3 !important; -} -.bg-secondary { - color: #fff !important; - background-color: #ff7e41 !important; -} -a.bg-secondary:focus, -a.bg-secondary:hover, -button.bg-secondary:focus, -button.bg-secondary:hover { - color: #fff !important; - background-color: #ff5b0e !important; -} -.badge-secondary { - color: #fff !important; - background-color: #ff7e41 !important; -} -a.badge-secondary:focus, -a.badge-secondary:hover, -button.badge-secondary:focus, -button.badge-secondary:hover { - color: #fff !important; - background-color: #ff5b0e !important; -} -.bg-success { - color: #fff !important; - background-color: #78c091 !important; -} -a.bg-success:focus, -a.bg-success:hover, -button.bg-success:focus, -button.bg-success:hover { - color: #fff !important; - background-color: #55b075 !important; -} -.badge-success { - color: #fff !important; - background-color: #78c091 !important; -} -a.badge-success:focus, -a.badge-success:hover, -button.badge-success:focus, -button.badge-success:hover { - color: #fff !important; - background-color: #55b075 !important; -} -.bg-info { - color: #fff !important; - background-color: #7ee2ff !important; -} -a.bg-info:focus, -a.bg-info:hover, -button.bg-info:focus, -button.bg-info:hover { - color: #fff !important; - background-color: #4bd7ff !important; -} -.badge-info { - color: #fff !important; - background-color: #7ee2ff !important; -} -a.badge-info:focus, -a.badge-info:hover, -button.badge-info:focus, -button.badge-info:hover { - color: #fff !important; - background-color: #4bd7ff !important; -} -.bg-warning { - color: #fff !important; - background-color: #ff9770 !important; -} -a.bg-warning:focus, -a.bg-warning:hover, -button.bg-warning:focus, -button.bg-warning:hover { - color: #fff !important; - background-color: #ff723d !important; -} -.badge-warning { - color: #fff !important; - background-color: #ff9770 !important; -} -a.badge-warning:focus, -a.badge-warning:hover, -button.badge-warning:focus, -button.badge-warning:hover { - color: #fff !important; - background-color: #ff723d !important; -} -.bg-danger { - color: #fff !important; - background-color: #e08db4 !important; -} -a.bg-danger:focus, -a.bg-danger:hover, -button.bg-danger:focus, -button.bg-danger:hover { - color: #fff !important; - background-color: #d5659a !important; -} -.badge-danger { - color: #fff !important; - background-color: #e08db4 !important; -} -a.badge-danger:focus, -a.badge-danger:hover, -button.badge-danger:focus, -button.badge-danger:hover { - color: #fff !important; - background-color: #d5659a !important; -} -.bg-light { - color: #212529 !important; - background-color: #c7cbd3 !important; -} -a.bg-light:focus, -a.bg-light:hover, -button.bg-light:focus, -button.bg-light:hover { - color: #fff !important; - background-color: #aab0bd !important; -} -.badge-light { - color: #212529 !important; - background-color: #c7cbd3 !important; -} -a.badge-light:focus, -a.badge-light:hover, -button.badge-light:focus, -button.badge-light:hover { - color: #fff !important; - background-color: #aab0bd !important; -} -.bg-dark { - color: #fff !important; - background-color: #01041b !important; -} -a.bg-dark:focus, -a.bg-dark:hover, -button.bg-dark:focus, -button.bg-dark:hover { - color: #fff !important; - background-color: #000 !important; -} -.badge-dark { - color: #fff !important; - background-color: #01041b !important; -} -a.badge-dark:focus, -a.badge-dark:hover, -button.badge-dark:focus, -button.badge-dark:hover { - color: #fff !important; - background-color: #000 !important; -} -.bg-orange { - color: #fff !important; - background-color: #ff7e41 !important; -} -a.bg-orange:focus, -a.bg-orange:hover, -button.bg-orange:focus, -button.bg-orange:hover { - color: #fff !important; - background-color: #ff5b0e !important; -} -.badge-orange { - color: #fff !important; - background-color: #ff7e41 !important; -} -a.badge-orange:focus, -a.badge-orange:hover, -button.badge-orange:focus, -button.badge-orange:hover { - color: #fff !important; - background-color: #ff5b0e !important; -} -.bg-purple { - color: #fff !important; - background-color: #4731b6 !important; -} -a.bg-purple:focus, -a.bg-purple:hover, -button.bg-purple:focus, -button.bg-purple:hover { - color: #fff !important; - background-color: #37268e !important; -} -.badge-purple { - color: #fff !important; - background-color: #4731b6 !important; -} -a.badge-purple:focus, -a.badge-purple:hover, -button.badge-purple:focus, -button.badge-purple:hover { - color: #fff !important; - background-color: #37268e !important; -} -.bg-skyblue { - color: #fff !important; - background-color: #158df7 !important; -} -a.bg-skyblue:focus, -a.bg-skyblue:hover, -button.bg-skyblue:focus, -button.bg-skyblue:hover { - color: #fff !important; - background-color: #0773d2 !important; -} -.badge-skyblue { - color: #fff !important; - background-color: #158df7 !important; -} -a.badge-skyblue:focus, -a.badge-skyblue:hover, -button.badge-skyblue:focus, -button.badge-skyblue:hover { - color: #fff !important; - background-color: #0773d2 !important; -} -.bg-light-gray { - color: #212529 !important; - background-color: #f4f5fa !important; -} -a.bg-light-gray:focus, -a.bg-light-gray:hover, -button.bg-light-gray:focus, -button.bg-light-gray:hover { - color: #fff !important; - background-color: #d1d5ea !important; -} -.badge-light-gray { - color: #212529 !important; - background-color: #f4f5fa !important; -} -a.badge-light-gray:focus, -a.badge-light-gray:hover, -button.badge-light-gray:focus, -button.badge-light-gray:hover { - color: #fff !important; - background-color: #d1d5ea !important; -} -.bg-primary-light { - color: #1289ae !important; - background-color: #c6edf9 !important; -} -a.bg-primary-light:focus, -a.bg-primary-light:hover, -button.bg-primary-light:focus, -button.bg-primary-light:hover { - color: #1289ae !important; - background-color: #98def4 !important; -} -.bg-secondary-light { - color: #ca4100 !important; - background-color: #ffdbca !important; -} -a.bg-secondary-light:focus, -a.bg-secondary-light:hover, -button.bg-secondary-light:focus, -button.bg-secondary-light:hover { - color: #ca4100 !important; - background-color: #ffb897 !important; -} -.bg-success-light { - color: #408759 !important; - background-color: #d9ede0 !important; -} -a.bg-success-light:focus, -a.bg-success-light:hover, -button.bg-success-light:focus, -button.bg-success-light:hover { - color: #408759 !important; - background-color: #b6ddc4 !important; -} -.bg-info-light { - color: #00aadb !important; - background-color: #dbf7ff !important; -} -a.bg-info-light:focus, -a.bg-info-light:hover, -button.bg-info-light:focus, -button.bg-info-light:hover { - color: #00aadb !important; - background-color: #a8ecff !important; -} -.bg-warning-light { - color: #d73b00 !important; - background-color: #ffe2d7 !important; -} -a.bg-warning-light:focus, -a.bg-warning-light:hover, -button.bg-warning-light:focus, -button.bg-warning-light:hover { - color: #d73b00 !important; - background-color: #ffbda4 !important; -} -.bg-danger-light { - color: #a72f68 !important; - background-color: #f6dfea !important; -} -a.bg-danger-light:focus, -a.bg-danger-light:hover, -button.bg-danger-light:focus, -button.bg-danger-light:hover { - color: #a72f68 !important; - background-color: #ebb7d0 !important; -} -.bg-light-light { - color: #616982 !important; - background-color: #eff0f3 !important; -} -a.bg-light-light:focus, -a.bg-light-light:hover, -button.bg-light-light:focus, -button.bg-light-light:hover { - color: #616982 !important; - background-color: #d2d5dd !important; -} -.bg-dark-light { - color: #393a3f !important; - background-color: #b8b9bf !important; -} -a.bg-dark-light:focus, -a.bg-dark-light:hover, -button.bg-dark-light:focus, -button.bg-dark-light:hover { - color: #393a3f !important; - background-color: #9d9fa7 !important; -} -.bg-orange-light { - color: #ca4100 !important; - background-color: #ffdbca !important; -} -a.bg-orange-light:focus, -a.bg-orange-light:hover, -button.bg-orange-light:focus, -button.bg-orange-light:hover { - color: #ca4100 !important; - background-color: #ffb897 !important; -} -.bg-purple-light { - color: #3b2d84 !important; - background-color: #cbc5eb !important; -} -a.bg-purple-light:focus, -a.bg-purple-light:hover, -button.bg-purple-light:focus, -button.bg-purple-light:hover { - color: #3b2d84 !important; - background-color: #a99fde !important; -} -.bg-skyblue-light { - color: #0663b6 !important; - background-color: #bddffd !important; -} -a.bg-skyblue-light:focus, -a.bg-skyblue-light:hover, -button.bg-skyblue-light:focus, -button.bg-skyblue-light:hover { - color: #0663b6 !important; - background-color: #8cc7fc !important; -} -.bg-light-gray-light { - color: #3f3fbc !important; - background-color: #fcfcfe !important; -} -a.bg-light-gray-light:focus, -a.bg-light-gray-light:hover, -button.bg-light-gray-light:focus, -button.bg-light-gray-light:hover { - color: #3f3fbc !important; - background-color: #d6d6f1 !important; -} -.bg-body { - background: #fff; -} -.avatar-30 { - height: 30px; - width: 30px; - line-height: 30px; - min-width: 30px; -} -.avatar-35 { - height: 35px; - width: 35px; - line-height: 35px; - min-width: 35px; -} -.avatar-40 { - height: 40px; - width: 40px; - line-height: 40px; - min-width: 40px; -} -.avatar-45 { - height: 45px; - width: 45px; - line-height: 45px; - min-width: 45px; -} -.avatar-50 { - height: 50px; - width: 50px; - line-height: 50px; - min-width: 50px; -} -.avatar-60 { - height: 60px; - width: 60px; - line-height: 60px; - min-width: 60px; -} -.avatar-70 { - height: 70px; - width: 70px; - line-height: 70px; - min-width: 70px; -} -.avatar-80 { - height: 80px; - width: 80px; - line-height: 80px; - min-width: 80px; -} -.avatar-90 { - height: 90px; - width: 90px; - line-height: 90px; - min-width: 90px; -} -.avatar-100 { - height: 100px; - width: 100px; - line-height: 100px; - min-width: 100px; -} -.avatar-110 { - height: 110px; - width: 110px; - line-height: 110px; - min-width: 110px; -} -.avatar-120 { - height: 120px; - width: 120px; - line-height: 120px; - min-width: 120px; -} -.avatar-130 { - height: 130px; - width: 130px; - line-height: 130px; - min-width: 130px; -} -.avatar-155 { - height: 155px; - width: 155px; - line-height: 155px; - min-width: 155px; -} -.avatar-235 { - height: 235px; - width: 235px; - line-height: 235px; - min-width: 235px; -} -.font-size-12 { - font-size: 12px !important; -} -.font-size-14 { - font-size: 14px !important; -} -.font-size-16 { - font-size: 16px !important; -} -.font-size-18 { - font-size: 18px !important; -} -.font-size-20 { - font-size: 20px !important; -} -.font-size-32 { - font-size: 32px !important; -} -.font-size-40 { - font-size: 40px !important; -} -.font-weight-300 { - font-weight: 300 !important; -} -.font-weight-400 { - font-weight: 400 !important; -} -.font-weight-500 { - font-weight: 500 !important; -} -.font-weight-600 { - font-weight: 600 !important; -} -.font-weight-700 { - font-weight: 700 !important; -} -.font-weight-800 { - font-weight: 800 !important; -} -.font-weight-900 { - font-weight: 900 !important; -} -.text-underline { - text-decoration: underline; -} -.text-through { - text-decoration: line-through; -} -@media (min-width: 576px) { - .text-xs-chirag { - font-size: 12 !important; - } -} -.text-lg, -.text-sm, -.text-xl { - font-size: 12 !important; -} -.line-height-100 { - line-height: 1; -} -.line-height-110 { - line-height: 1.1; -} -.line-height-120 { - line-height: 1.2; -} -.line-height-130 { - line-height: 1.3; -} -.line-height-140 { - line-height: 1.4; -} -.line-height-150 { - line-height: 1.5; -} -.line-height-160 { - line-height: 1.6; -} -.line-height-170 { - line-height: 1.7; -} -.line-height-180 { - line-height: 1.8; -} -.letter-spacing-1 { - letter-spacing: 0.0625rem; -} -.letter-spacing-15 { - letter-spacing: 0.09375rem; -} -.letter-spacing-2 { - letter-spacing: 0.125rem; -} -.text-blue { - color: #32bdea !important; -} -a.text-blue:focus, -a.text-blue:hover { - color: #1393bc !important; -} -.text-indigo { - color: #6610f2 !important; -} -a.text-indigo:focus, -a.text-indigo:hover { - color: #4709ac !important; -} -.text-purple { - color: #4731b6 !important; -} -a.text-purple:focus, -a.text-purple:hover { - color: #2f217a !important; -} -.text-pink { - color: #e83e8c !important; -} -a.text-pink:focus, -a.text-pink:hover { - color: #c21766 !important; -} -.text-red { - color: #e08db4 !important; -} -a.text-red:focus, -a.text-red:hover { - color: #d0518c !important; -} -.text-orange { - color: #ff7e41 !important; -} -a.text-orange:focus, -a.text-orange:hover { - color: #f44e00 !important; -} -.text-yellow { - color: #ff9770 !important; -} -a.text-yellow:focus, -a.text-yellow:hover { - color: #ff5f24 !important; -} -.text-green { - color: #78c091 !important; -} -a.text-green:focus, -a.text-green:hover { - color: #4ba169 !important; -} -.text-teal { - color: #20c997 !important; -} -a.text-teal:focus, -a.text-teal:hover { - color: #158765 !important; -} -.text-cyan { - color: #7ee2ff !important; -} -a.text-cyan:focus, -a.text-cyan:hover { - color: #32d1ff !important; -} -.text-white { - color: #fff !important; -} -a.text-white:focus, -a.text-white:hover { - color: #d9d9d9 !important; -} -.text-gray { - color: #6c757d !important; -} -a.text-gray:focus, -a.text-gray:hover { - color: #494f54 !important; -} -.text-gray-dark { - color: #01041b !important; -} -a.text-gray-dark:focus, -a.text-gray-dark:hover { - color: #000 !important; -} -.text-skyblue { - color: #158df7 !important; -} -a.text-skyblue:focus, -a.text-skyblue:hover { - color: #0665b9 !important; -} /*! -Animate.css - http://daneden.me/animate -Licensed under the MIT license - -Copyright (c) 2013 Daniel Eden - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ -.animated { - animation-duration: 1s; - animation-fill-mode: both; -} -.animated.hinge { - animation-duration: 2s; -} -@keyframes g { - 0%, - 20%, - 50%, - 80%, - to { - transform: translateY(0); - } - 40% { - transform: translateY(-30px); - } - 60% { - transform: translateY(-15px); - } -} -.bounce { - animation-name: g; -} -@keyframes h { - 0%, - 50%, - to { - opacity: 1; - } - 25%, - 75% { - opacity: 0; - } -} -.flash { - animation-name: h; -} -@keyframes i { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.1); - } - to { - transform: scale(1); - } -} -.pulse { - animation-name: i; -} -@keyframes j { - 0%, - to { - transform: translateX(0); - } - 10%, - 30%, - 50%, - 70%, - 90% { - transform: translateX(-10px); - } - 20%, - 40%, - 60%, - 80% { - transform: translateX(10px); - } -} -.shake { - animation-name: j; -} -@keyframes k { - 20% { - transform: rotate(15deg); - } - 40% { - transform: rotate(-10deg); - } - 60% { - transform: rotate(5deg); - } - 80% { - transform: rotate(-5deg); - } - to { - transform: rotate(0deg); - } -} -.swing { - transform-origin: top center; - animation-name: k; -} -@keyframes l { - 0% { - transform: scale(1); - } - 10%, - 20% { - transform: scale(0.9) rotate(-3deg); - } - 30%, - 50%, - 70%, - 90% { - transform: scale(1.1) rotate(3deg); - } - 40%, - 60%, - 80% { - transform: scale(1.1) rotate(-3deg); - } - to { - transform: scale(1) rotate(0); - } -} -.tada { - animation-name: l; -} -@keyframes m { - 0% { - transform: translateX(0); - } - 15% { - transform: translateX(-25%) rotate(-5deg); - } - 30% { - transform: translateX(20%) rotate(3deg); - } - 45% { - transform: translateX(-15%) rotate(-3deg); - } - 60% { - transform: translateX(10%) rotate(2deg); - } - 75% { - transform: translateX(-5%) rotate(-1deg); - } - to { - transform: translateX(0); - } -} -.wobble { - animation-name: m; -} -@keyframes n { - 0% { - opacity: 0; - transform: scale(0.3); - } - 50% { - opacity: 1; - transform: scale(1.05); - } - 70% { - transform: scale(0.9); - } - to { - transform: scale(1); - } -} -.bounceIn { - animation-name: n; -} -@keyframes o { - 0% { - opacity: 0; - transform: translateY(-2000px); - } - 60% { - opacity: 1; - transform: translateY(30px); - } - 80% { - transform: translateY(-10px); - } - to { - transform: translateY(0); - } -} -.bounceInDown { - animation-name: o; -} -@keyframes p { - 0% { - opacity: 0; - transform: translateX(-2000px); - } - 60% { - opacity: 1; - transform: translateX(30px); - } - 80% { - transform: translateX(-10px); - } - to { - transform: translateX(0); - } -} -.bounceInLeft { - animation-name: p; -} -@keyframes q { - 0% { - opacity: 0; - transform: translateX(2000px); - } - 60% { - opacity: 1; - transform: translateX(-30px); - } - 80% { - transform: translateX(10px); - } - to { - transform: translateX(0); - } -} -.bounceInRight { - animation-name: q; -} -@keyframes r { - 0% { - opacity: 0; - transform: translateY(2000px); - } - 60% { - opacity: 1; - transform: translateY(-30px); - } - 80% { - transform: translateY(10px); - } - to { - transform: translateY(0); - } -} -.bounceInUp { - animation-name: r; -} -@keyframes s { - 0% { - transform: scale(1); - } - 25% { - transform: scale(0.95); - } - 50% { - opacity: 1; - transform: scale(1.1); - } - to { - opacity: 0; - transform: scale(0.3); - } -} -.bounceOut { - animation-name: s; -} -@keyframes t { - 0% { - transform: translateY(0); - } - 20% { - opacity: 1; - transform: translateY(-20px); - } - to { - opacity: 0; - transform: translateY(2000px); - } -} -.bounceOutDown { - animation-name: t; -} -@keyframes u { - 0% { - transform: translateX(0); - } - 20% { - opacity: 1; - transform: translateX(20px); - } - to { - opacity: 0; - transform: translateX(-2000px); - } -} -.bounceOutLeft { - animation-name: u; -} -@keyframes v { - 0% { - transform: translateX(0); - } - 20% { - opacity: 1; - transform: translateX(-20px); - } - to { - opacity: 0; - transform: translateX(2000px); - } -} -.bounceOutRight { - animation-name: v; -} -@keyframes w { - 0% { - transform: translateY(0); - } - 20% { - opacity: 1; - transform: translateY(20px); - } - to { - opacity: 0; - transform: translateY(-2000px); - } -} -.bounceOutUp { - animation-name: w; -} -@keyframes x { - 0% { - opacity: 0; - } - to { - opacity: 1; - } -} -.fadeIn { - animation-name: x; -} -@keyframes y { - 0% { - opacity: 0; - transform: translateY(-20px); - } - to { - opacity: 1; - transform: translateY(0); - } -} -.fadeInDown { - animation-name: y; -} -@keyframes z { - 0% { - opacity: 0; - transform: translateY(-2000px); - } - to { - opacity: 1; - transform: translateY(0); - } -} -.fadeInDownBig { - animation-name: z; -} -@keyframes A { - 0% { - opacity: 0; - transform: translateX(-20px); - } - to { - opacity: 1; - transform: translateX(0); - } -} -.fadeInLeft { - animation-name: A; -} -@keyframes B { - 0% { - opacity: 0; - transform: translateX(-2000px); - } - to { - opacity: 1; - transform: translateX(0); - } -} -.fadeInLeftBig { - animation-name: B; -} -@keyframes C { - 0% { - opacity: 0; - transform: translateX(20px); - } - to { - opacity: 1; - transform: translateX(0); - } -} -.fadeInRight { - animation-name: C; -} -@keyframes D { - 0% { - opacity: 0; - transform: translateX(2000px); - } - to { - opacity: 1; - transform: translateX(0); - } -} -.fadeInRightBig { - animation-name: D; -} -@keyframes E { - 0% { - opacity: 0; - transform: translateY(20px); - } - to { - opacity: 1; - transform: translateY(0); - } -} -.fadeInUp { - animation-name: E; -} -@keyframes F { - 0% { - opacity: 0; - transform: translateY(2000px); - } - to { - opacity: 1; - transform: translateY(0); - } -} -.fadeInUpBig { - animation-name: F; -} -@keyframes G { - 0% { - opacity: 1; - } - to { - opacity: 0; - } -} -.fadeOut { - animation-name: G; -} -@keyframes H { - 0% { - opacity: 1; - transform: translateY(0); - } - to { - opacity: 0; - transform: translateY(20px); - } -} -.fadeOutDown { - animation-name: H; -} -@keyframes I { - 0% { - opacity: 1; - transform: translateY(0); - } - to { - opacity: 0; - transform: translateY(2000px); - } -} -.fadeOutDownBig { - animation-name: I; -} -@keyframes J { - 0% { - opacity: 1; - transform: translateX(0); - } - to { - opacity: 0; - transform: translateX(-20px); - } -} -.fadeOutLeft { - animation-name: J; -} -@keyframes K { - 0% { - opacity: 1; - transform: translateX(0); - } - to { - opacity: 0; - transform: translateX(-2000px); - } -} -.fadeOutLeftBig { - animation-name: K; -} -@keyframes L { - 0% { - opacity: 1; - transform: translateX(0); - } - to { - opacity: 0; - transform: translateX(20px); - } -} -.fadeOutRight { - animation-name: L; -} -@keyframes M { - 0% { - opacity: 1; - transform: translateX(0); - } - to { - opacity: 0; - transform: translateX(2000px); - } -} -.fadeOutRightBig { - animation-name: M; -} -@keyframes N { - 0% { - opacity: 1; - transform: translateY(0); - } - to { - opacity: 0; - transform: translateY(-20px); - } -} -.fadeOutUp { - animation-name: N; -} -@keyframes O { - 0% { - opacity: 1; - transform: translateY(0); - } - to { - opacity: 0; - transform: translateY(-2000px); - } -} -.fadeOutUpBig { - animation-name: O; -} -@keyframes P { - 0% { - transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - animation-timing-function: ease-out; - } - 40% { - transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - animation-timing-function: ease-out; - } - 50% { - transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - animation-timing-function: ease-in; - } - 80% { - transform: perspective(400px) translateZ(0) rotateY(1turn) scale(0.95); - animation-timing-function: ease-in; - } - to { - transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1); - animation-timing-function: ease-in; - } -} -.animated.flip { - -webkit-backface-visibility: visible; - backface-visibility: visible; - animation-name: P; -} -@keyframes Q { - 0% { - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - 40% { - transform: perspective(400px) rotateX(-10deg); - } - 70% { - transform: perspective(400px) rotateX(10deg); - } - to { - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} -.flipInX { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - animation-name: Q; -} -@keyframes R { - 0% { - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - 40% { - transform: perspective(400px) rotateY(-10deg); - } - 70% { - transform: perspective(400px) rotateY(10deg); - } - to { - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} -.flipInY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - animation-name: R; -} -@keyframes S { - 0% { - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - to { - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} -.flipOutX { - animation-name: S; - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} -@keyframes T { - 0% { - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - to { - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} -.flipOutY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - animation-name: T; -} -@keyframes U { - 0% { - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - 60% { - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - 80% { - transform: translateX(0) skewX(-15deg); - opacity: 1; - } - to { - transform: translateX(0) skewX(0deg); - opacity: 1; - } -} -.lightSpeedIn { - animation-name: U; - animation-timing-function: ease-out; -} -@keyframes V { - 0% { - transform: translateX(0) skewX(0deg); - opacity: 1; - } - to { - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} -.lightSpeedOut { - animation-name: V; - animation-timing-function: ease-in; -} -@keyframes W { - 0% { - transform-origin: center center; - transform: rotate(-200deg); - opacity: 0; - } - to { - transform-origin: center center; - transform: rotate(0); - opacity: 1; - } -} -.rotateIn { - animation-name: W; -} -@keyframes X { - 0% { - transform-origin: left bottom; - transform: rotate(-90deg); - opacity: 0; - } - to { - transform-origin: left bottom; - transform: rotate(0); - opacity: 1; - } -} -.rotateInDownLeft { - animation-name: X; -} -@keyframes Y { - 0% { - transform-origin: right bottom; - transform: rotate(90deg); - opacity: 0; - } - to { - transform-origin: right bottom; - transform: rotate(0); - opacity: 1; - } -} -.rotateInDownRight { - animation-name: Y; -} -@keyframes Z { - 0% { - transform-origin: left bottom; - transform: rotate(90deg); - opacity: 0; - } - to { - transform-origin: left bottom; - transform: rotate(0); - opacity: 1; - } -} -.rotateInUpLeft { - animation-name: Z; -} -@keyframes ab { - 0% { - transform-origin: right bottom; - transform: rotate(-90deg); - opacity: 0; - } - to { - transform-origin: right bottom; - transform: rotate(0); - opacity: 1; - } -} -.rotateInUpRight { - animation-name: ab; -} -@keyframes bb { - 0% { - transform-origin: center center; - transform: rotate(0); - opacity: 1; - } - to { - transform-origin: center center; - transform: rotate(200deg); - opacity: 0; - } -} -.rotateOut { - animation-name: bb; -} -@keyframes cb { - 0% { - transform-origin: left bottom; - transform: rotate(0); - opacity: 1; - } - to { - transform-origin: left bottom; - transform: rotate(90deg); - opacity: 0; - } -} -.rotateOutDownLeft { - animation-name: cb; -} -@keyframes db { - 0% { - transform-origin: right bottom; - transform: rotate(0); - opacity: 1; - } - to { - transform-origin: right bottom; - transform: rotate(-90deg); - opacity: 0; - } -} -.rotateOutDownRight { - animation-name: db; -} -@keyframes eb { - 0% { - transform-origin: left bottom; - transform: rotate(0); - opacity: 1; - } - to { - transform-origin: left bottom; - transform: rotate(-90deg); - opacity: 0; - } -} -.rotateOutUpLeft { - animation-name: eb; -} -@keyframes fb { - 0% { - transform-origin: right bottom; - transform: rotate(0); - opacity: 1; - } - to { - transform-origin: right bottom; - transform: rotate(90deg); - opacity: 0; - } -} -.rotateOutUpRight { - animation-name: fb; -} -@keyframes gb { - 0% { - opacity: 0; - transform: translateY(-2000px); - } - to { - transform: translateY(0); - } -} -.slideInDown { - animation-name: gb; -} -@keyframes hb { - 0% { - opacity: 0; - transform: translateX(-2000px); - } - to { - transform: translateX(0); - } -} -.slideInLeft { - animation-name: hb; -} -@keyframes ib { - 0% { - opacity: 0; - transform: translateX(2000px); - } - to { - transform: translateX(0); - } -} -.slideInRight { - animation-name: ib; -} -@keyframes jb { - 0% { - transform: translateX(0); - } - to { - opacity: 0; - transform: translateX(-2000px); - } -} -.slideOutLeft { - animation-name: jb; -} -@keyframes kb { - 0% { - transform: translateX(0); - } - to { - opacity: 0; - transform: translateX(2000px); - } -} -.slideOutRight { - animation-name: kb; -} -@keyframes lb { - 0% { - transform: translateY(0); - } - to { - opacity: 0; - transform: translateY(-2000px); - } -} -.slideOutUp { - animation-name: lb; -} -@keyframes mb { - 0% { - transform: rotate(0); - transform-origin: top left; - animation-timing-function: ease-in-out; - } - 20%, - 60% { - transform: rotate(80deg); - transform-origin: top left; - animation-timing-function: ease-in-out; - } - 40% { - transform: rotate(60deg); - transform-origin: top left; - animation-timing-function: ease-in-out; - } - 80% { - transform: rotate(60deg) translateY(0); - opacity: 1; - transform-origin: top left; - animation-timing-function: ease-in-out; - } - to { - transform: translateY(700px); - opacity: 0; - } -} -.hinge { - animation-name: mb; -} -@keyframes nb { - 0% { - opacity: 0; - transform: translateX(-100%) rotate(-120deg); - } - to { - opacity: 1; - transform: translateX(0) rotate(0deg); - } -} -.rollIn { - animation-name: nb; -} -@keyframes ob { - 0% { - opacity: 1; - transform: translateX(0) rotate(0deg); - } - to { - opacity: 0; - transform: translateX(100%) rotate(120deg); - } -} -.rollOut { - animation-name: ob; -} -.swal2-popup.swal2-toast { - flex-direction: column; - align-items: stretch; - width: auto; - padding: 1.25em; - overflow-y: hidden; - background: #fff; - box-shadow: 0 0 0.625em #d9d9d9; -} -.swal2-popup.swal2-toast .swal2-header { - flex-direction: row; - padding: 0; -} -.swal2-popup.swal2-toast .swal2-title { - flex-grow: 1; - justify-content: flex-start; - margin: 0 0.625em; - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-loading { - justify-content: center; -} -.swal2-popup.swal2-toast .swal2-input { - height: 2em; - margin: 0.3125em auto; - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-validation-message { - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-footer { - margin: 0.5em 0 0; - padding: 0.5em 0 0; - font-size: 0.8em; -} -.swal2-popup.swal2-toast .swal2-close { - position: static; - width: 0.8em; - height: 0.8em; - line-height: 0.8; -} -.swal2-popup.swal2-toast .swal2-content { - justify-content: flex-start; - margin: 0 0.625em; - padding: 0; - font-size: 1em; - text-align: initial; -} -.swal2-popup.swal2-toast .swal2-html-container { - padding: 0.625em 0 0; -} -.swal2-popup.swal2-toast .swal2-html-container:empty { - padding: 0; -} -.swal2-popup.swal2-toast .swal2-icon { - width: 2em; - min-width: 2em; - height: 2em; - margin: 0 0.5em 0 0; -} -.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content { - display: flex; - align-items: center; - font-size: 1.8em; - font-weight: 700; -} -@media (-ms-high-contrast: active), (-ms-high-contrast: none) { - .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content { - font-size: 0.25em; - } -} -.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring { - width: 2em; - height: 2em; -} -.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] { - top: 0.875em; - width: 1.375em; -} -.swal2-popup.swal2-toast - .swal2-icon.swal2-error - [class^="swal2-x-mark-line"][class$="left"] { - left: 0.3125em; -} -.swal2-popup.swal2-toast - .swal2-icon.swal2-error - [class^="swal2-x-mark-line"][class$="right"] { - right: 0.3125em; -} -.swal2-popup.swal2-toast .swal2-actions { - flex: 1; - flex-basis: auto !important; - align-self: stretch; - width: auto; - height: 2.2em; - height: auto; - margin: 0 0.3125em; - margin-top: 0.3125em; - padding: 0; -} -.swal2-popup.swal2-toast .swal2-styled { - margin: 0.125em 0.3125em; - padding: 0.3125em 0.625em; - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-styled:focus { - box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-popup.swal2-toast .swal2-success { - border-color: #a5dc86; -} -.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"] { - position: absolute; - width: 1.6em; - height: 3em; - transform: rotate(45deg); - border-radius: 50%; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-circular-line"][class$="left"] { - top: -0.8em; - left: -0.5em; - transform: rotate(-45deg); - transform-origin: 2em 2em; - border-radius: 4em 0 0 4em; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-circular-line"][class$="right"] { - top: -0.25em; - left: 0.9375em; - transform-origin: 0 1.5em; - border-radius: 0 4em 4em 0; -} -.swal2-popup.swal2-toast .swal2-success .swal2-success-ring { - width: 2em; - height: 2em; -} -.swal2-popup.swal2-toast .swal2-success .swal2-success-fix { - top: 0; - left: 0.4375em; - width: 0.4375em; - height: 2.6875em; -} -.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"] { - height: 0.3125em; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-line"][class$="tip"] { - top: 1.125em; - left: 0.1875em; - width: 0.75em; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-line"][class$="long"] { - top: 0.9375em; - right: 0.1875em; - width: 1.375em; -} -.swal2-popup.swal2-toast - .swal2-success.swal2-icon-show - .swal2-success-line-tip { - animation: rb 0.75s; -} -.swal2-popup.swal2-toast - .swal2-success.swal2-icon-show - .swal2-success-line-long { - animation: sb 0.75s; -} -.swal2-popup.swal2-toast.swal2-show { - animation: pb 0.5s; -} -.swal2-popup.swal2-toast.swal2-hide { - animation: qb 0.1s forwards; -} -.swal2-container { - display: flex; - position: fixed; - z-index: 1060; - top: 0; - right: 0; - bottom: 0; - left: 0; - flex-direction: row; - align-items: center; - justify-content: center; - padding: 0.625em; - overflow-x: hidden; - transition: background-color 0.1s; - -webkit-overflow-scrolling: touch; -} -.swal2-container.swal2-backdrop-show, -.swal2-container.swal2-noanimation { - background: rgba(0, 0, 0, 0.4); -} -.swal2-container.swal2-backdrop-hide { - background: transparent !important; -} -.swal2-container.swal2-top { - align-items: flex-start; -} -.swal2-container.swal2-top-left, -.swal2-container.swal2-top-start { - align-items: flex-start; - justify-content: flex-start; -} -.swal2-container.swal2-top-end, -.swal2-container.swal2-top-right { - align-items: flex-start; - justify-content: flex-end; -} -.swal2-container.swal2-center { - align-items: center; -} -.swal2-container.swal2-center-left, -.swal2-container.swal2-center-start { - align-items: center; - justify-content: flex-start; -} -.swal2-container.swal2-center-end, -.swal2-container.swal2-center-right { - align-items: center; - justify-content: flex-end; -} -.swal2-container.swal2-bottom { - align-items: flex-end; -} -.swal2-container.swal2-bottom-left, -.swal2-container.swal2-bottom-start { - align-items: flex-end; - justify-content: flex-start; -} -.swal2-container.swal2-bottom-end, -.swal2-container.swal2-bottom-right { - align-items: flex-end; - justify-content: flex-end; -} -.swal2-container.swal2-bottom-end > :first-child, -.swal2-container.swal2-bottom-left > :first-child, -.swal2-container.swal2-bottom-right > :first-child, -.swal2-container.swal2-bottom-start > :first-child, -.swal2-container.swal2-bottom > :first-child { - margin-top: auto; -} -.swal2-container.swal2-grow-fullscreen > .swal2-modal { - display: flex !important; - flex: 1; - align-self: stretch; - justify-content: center; -} -.swal2-container.swal2-grow-row > .swal2-modal { - display: flex !important; - flex: 1; - align-content: center; - justify-content: center; -} -.swal2-container.swal2-grow-column { - flex: 1; - flex-direction: column; -} -.swal2-container.swal2-grow-column.swal2-bottom, -.swal2-container.swal2-grow-column.swal2-center, -.swal2-container.swal2-grow-column.swal2-top { - align-items: center; -} -.swal2-container.swal2-grow-column.swal2-bottom-left, -.swal2-container.swal2-grow-column.swal2-bottom-start, -.swal2-container.swal2-grow-column.swal2-center-left, -.swal2-container.swal2-grow-column.swal2-center-start, -.swal2-container.swal2-grow-column.swal2-top-left, -.swal2-container.swal2-grow-column.swal2-top-start { - align-items: flex-start; -} -.swal2-container.swal2-grow-column.swal2-bottom-end, -.swal2-container.swal2-grow-column.swal2-bottom-right, -.swal2-container.swal2-grow-column.swal2-center-end, -.swal2-container.swal2-grow-column.swal2-center-right, -.swal2-container.swal2-grow-column.swal2-top-end, -.swal2-container.swal2-grow-column.swal2-top-right { - align-items: flex-end; -} -.swal2-container.swal2-grow-column > .swal2-modal { - display: flex !important; - flex: 1; - align-content: center; - justify-content: center; -} -.swal2-container.swal2-no-transition { - transition: none !important; -} -.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not( - .swal2-top-left - ):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not( - .swal2-center-left - ):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not( - .swal2-bottom-end - ):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) - > .swal2-modal { - margin: auto; -} -@media (-ms-high-contrast: active), (-ms-high-contrast: none) { - .swal2-container .swal2-modal { - margin: 0 !important; - } -} -.swal2-popup { - display: none; - position: relative; - box-sizing: border-box; - flex-direction: column; - justify-content: center; - width: 32em; - max-width: 100%; - padding: 1.25em; - border: none; - border-radius: 5px; - background: #fff; - font-family: inherit; - font-size: 1rem; -} -.swal2-popup:focus { - outline: none; -} -.swal2-popup.swal2-loading { - overflow-y: hidden; -} -.swal2-header { - display: flex; - flex-direction: column; - align-items: center; - padding: 0 1.8em; -} -.swal2-title { - position: relative; - max-width: 100%; - margin: 0 0 0.4em; - padding: 0; - color: #595959; - font-size: 1.875em; - font-weight: 600; - text-align: center; - text-transform: none; - word-wrap: break-word; -} -.swal2-actions { - display: flex; - z-index: 1; - box-sizing: border-box; - flex-wrap: wrap; - align-items: center; - justify-content: center; - width: 100%; - margin: 1.25em auto 0; - padding: 0; -} -.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] { - opacity: 0.4; -} -.swal2-actions:not(.swal2-loading) .swal2-styled:hover { - background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); -} -.swal2-actions:not(.swal2-loading) .swal2-styled:active { - background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); -} -.swal2-loader { - display: none; - align-items: center; - justify-content: center; - width: 2.2em; - height: 2.2em; - margin: 0 1.875em; - animation: Ob 1.5s linear 0s infinite normal; - border-width: 0.25em; - border-style: solid; - border-radius: 100%; - border-color: #2778c4 transparent; -} -.swal2-styled { - margin: 0.3125em; - padding: 0.625em 1.1em; - box-shadow: none; - font-weight: 500; -} -.swal2-styled:not([disabled]) { - cursor: pointer; -} -.swal2-styled.swal2-confirm { - background: initial; - background-color: #2778c4; -} -.swal2-styled.swal2-confirm, -.swal2-styled.swal2-deny { - border: 0; - border-radius: 0.25em; - color: #fff; - font-size: 1em; -} -.swal2-styled.swal2-deny { - background: initial; - background-color: #d14529; -} -.swal2-styled.swal2-cancel { - border: 0; - border-radius: 0.25em; - background: initial; - background-color: #757575; - color: #fff; - font-size: 1em; -} -.swal2-styled:focus { - outline: none; - box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-styled::-moz-focus-inner { - border: 0; -} -.swal2-footer { - justify-content: center; - margin: 1.25em 0 0; - padding: 1em 0 0; - border-top: 1px solid #eee; - color: #545454; - font-size: 1em; -} -.swal2-timer-progress-bar-container { - position: absolute; - right: 0; - bottom: 0; - left: 0; - height: 0.25em; - overflow: hidden; - border-bottom-right-radius: 5px; - border-bottom-left-radius: 5px; -} -.swal2-timer-progress-bar { - width: 100%; - height: 0.25em; - background: rgba(0, 0, 0, 0.2); -} -.swal2-image { - max-width: 100%; - margin: 1.25em auto; -} -.swal2-close { - position: absolute; - z-index: 2; - top: 0; - right: 0; - align-items: center; - justify-content: center; - width: 1.2em; - height: 1.2em; - padding: 0; - overflow: hidden; - transition: color 0.1s ease-out; - border: none; - border-radius: 5px; - background: transparent; - color: #ccc; - font-family: serif; - font-size: 2.5em; - line-height: 1.2; - cursor: pointer; -} -.swal2-close:hover { - transform: none; - background: transparent; - color: #f27474; -} -.swal2-close:focus { - outline: none; - box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-close::-moz-focus-inner { - border: 0; -} -.swal2-content { - z-index: 1; - justify-content: center; - margin: 0; - padding: 0 1.6em; - color: #545454; - font-size: 1.125em; - font-weight: 400; - line-height: normal; - text-align: center; - word-wrap: break-word; -} -.swal2-checkbox, -.swal2-file, -.swal2-input, -.swal2-radio, -.swal2-select, -.swal2-textarea { - margin: 1em auto; -} -.swal2-file, -.swal2-input, -.swal2-textarea { - box-sizing: border-box; - width: 100%; - transition: border-color 0.3s, box-shadow 0.3s; - border: 1px solid #d9d9d9; - border-radius: 0.1875em; - background: inherit; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06); - color: inherit; - font-size: 1.125em; -} -.swal2-file.swal2-inputerror, -.swal2-input.swal2-inputerror, -.swal2-textarea.swal2-inputerror { - border-color: #f27474 !important; - box-shadow: 0 0 2px #f27474 !important; -} -.swal2-file:focus, -.swal2-input:focus, -.swal2-textarea:focus { - border: 1px solid #b4dbed; - outline: none; - box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-file::placeholder, -.swal2-input::placeholder, -.swal2-textarea::placeholder { - color: #ccc; -} -.swal2-range { - margin: 1em auto; - background: #fff; -} -.swal2-range input { - width: 80%; -} -.swal2-range output { - width: 20%; - color: inherit; - font-weight: 600; - text-align: center; -} -.swal2-range input, -.swal2-range output { - height: 2.625em; - padding: 0; - font-size: 1.125em; - line-height: 2.625em; -} -.swal2-input { - height: 2.625em; - padding: 0 0.75em; -} -.swal2-input[type="number"] { - max-width: 10em; -} -.swal2-file { - background: inherit; - font-size: 1.125em; -} -.swal2-textarea { - height: 6.75em; - padding: 0.75em; -} -.swal2-select { - min-width: 50%; - max-width: 100%; - padding: 0.375em 0.625em; - background: inherit; - color: inherit; - font-size: 1.125em; -} -.swal2-checkbox, -.swal2-radio { - align-items: center; - justify-content: center; - background: #fff; - color: inherit; -} -.swal2-checkbox label, -.swal2-radio label { - margin: 0 0.6em; - font-size: 1.125em; -} -.swal2-checkbox input, -.swal2-radio input { - flex-shrink: 0; - margin: 0 0.4em; -} -.swal2-input-label { - display: flex; - justify-content: center; - margin: 1em auto; -} -.swal2-validation-message { - align-items: center; - justify-content: center; - margin: 0 -2.7em; - padding: 0.625em; - overflow: hidden; - background: #f0f0f0; - color: #666; - font-size: 1em; - font-weight: 300; -} -.swal2-validation-message:before { - content: "!"; - display: inline-block; - width: 1.5em; - min-width: 1.5em; - height: 1.5em; - margin: 0 0.625em; - border-radius: 50%; - background-color: #f27474; - color: #fff; - font-weight: 600; - line-height: 1.5em; - text-align: center; -} -.swal2-icon { - position: relative; - box-sizing: content-box; - justify-content: center; - width: 5em; - height: 5em; - margin: 1.25em auto 1.875em; - border: 0.25em solid transparent; - border-radius: 50%; - border-color: #000; - font-family: inherit; - line-height: 5em; - cursor: default; - user-select: none; -} -.swal2-icon .swal2-icon-content { - display: flex; - align-items: center; - font-size: 3.75em; -} -.swal2-icon.swal2-error { - border-color: #f27474; - color: #f27474; -} -.swal2-icon.swal2-error .swal2-x-mark { - position: relative; - flex-grow: 1; -} -.swal2-icon.swal2-error [class^="swal2-x-mark-line"] { - display: block; - position: absolute; - top: 2.3125em; - width: 2.9375em; - height: 0.3125em; - border-radius: 0.125em; - background-color: #f27474; -} -.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] { - left: 1.0625em; - transform: rotate(45deg); -} -.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] { - right: 1em; - transform: rotate(-45deg); -} -.swal2-icon.swal2-error.swal2-icon-show { - animation: zb 0.5s; -} -.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark { - animation: yb 0.5s; -} -.swal2-icon.swal2-warning { - border-color: #facea8; - color: #f8bb86; -} -.swal2-icon.swal2-info { - border-color: #9de0f6; - color: #3fc3ee; -} -.swal2-icon.swal2-question { - border-color: #c9dae1; - color: #87adbd; -} -.swal2-icon.swal2-success { - border-color: #a5dc86; - color: #a5dc86; -} -.swal2-icon.swal2-success [class^="swal2-success-circular-line"] { - position: absolute; - width: 3.75em; - height: 7.5em; - transform: rotate(45deg); - border-radius: 50%; -} -.swal2-icon.swal2-success - [class^="swal2-success-circular-line"][class$="left"] { - top: -0.4375em; - left: -2.0635em; - transform: rotate(-45deg); - transform-origin: 3.75em 3.75em; - border-radius: 7.5em 0 0 7.5em; -} -.swal2-icon.swal2-success - [class^="swal2-success-circular-line"][class$="right"] { - top: -0.6875em; - left: 1.875em; - transform: rotate(-45deg); - transform-origin: 0 3.75em; - border-radius: 0 7.5em 7.5em 0; -} -.swal2-icon.swal2-success .swal2-success-ring { - position: absolute; - z-index: 2; - top: -0.25em; - left: -0.25em; - box-sizing: content-box; - width: 100%; - height: 100%; - border: 0.25em solid hsla(98, 55%, 69%, 0.3); - border-radius: 50%; -} -.swal2-icon.swal2-success .swal2-success-fix { - position: absolute; - z-index: 1; - top: 0.5em; - left: 1.625em; - width: 0.4375em; - height: 5.625em; - transform: rotate(-45deg); -} -.swal2-icon.swal2-success [class^="swal2-success-line"] { - display: block; - position: absolute; - z-index: 2; - height: 0.3125em; - border-radius: 0.125em; - background-color: #a5dc86; -} -.swal2-icon.swal2-success [class^="swal2-success-line"][class$="tip"] { - top: 2.875em; - left: 0.8125em; - width: 1.5625em; - transform: rotate(45deg); -} -.swal2-icon.swal2-success [class^="swal2-success-line"][class$="long"] { - top: 2.375em; - right: 0.5em; - width: 2.9375em; - transform: rotate(-45deg); -} -.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip { - animation: vb 0.75s; -} -.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long { - animation: wb 0.75s; -} -.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right { - animation: xb 4.25s ease-in; -} -.swal2-progress-steps { - flex-wrap: wrap; - align-items: center; - max-width: 100%; - margin: 0 0 1.25em; - padding: 0; - background: inherit; - font-weight: 600; -} -.swal2-progress-steps li { - display: inline-block; - position: relative; -} -.swal2-progress-steps .swal2-progress-step { - z-index: 20; - flex-shrink: 0; - width: 2em; - height: 2em; - border-radius: 2em; - background: #2778c4; - color: #fff; - line-height: 2em; - text-align: center; -} -.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step { - background: #2778c4; -} -.swal2-progress-steps - .swal2-progress-step.swal2-active-progress-step - ~ .swal2-progress-step { - background: #add8e6; - color: #fff; -} -.swal2-progress-steps - .swal2-progress-step.swal2-active-progress-step - ~ .swal2-progress-step-line { - background: #add8e6; -} -.swal2-progress-steps .swal2-progress-step-line { - z-index: 10; - flex-shrink: 0; - width: 2.5em; - height: 0.4em; - margin: 0 -1px; - background: #2778c4; -} -[class^="swal2"] { - -webkit-tap-highlight-color: transparent; -} -.swal2-show { - animation: tb 0.3s; -} -.swal2-hide { - animation: ub 0.15s forwards; -} -.swal2-noanimation { - transition: none; -} -.swal2-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -.swal2-rtl .swal2-close { - right: auto; - left: 0; -} -.swal2-rtl .swal2-timer-progress-bar { - right: 0; - left: auto; -} -@supports (-ms-accelerator: true) { - .swal2-range input { - width: 100% !important; - } - .swal2-range output { - display: none; - } -} -@media (-ms-high-contrast: active), (-ms-high-contrast: none) { - .swal2-range input { - width: 100% !important; - } - .swal2-range output { - display: none; - } -} -@keyframes pb { - 0% { - transform: translateY(-0.625em) rotate(2deg); - } - 33% { - transform: translateY(0) rotate(-2deg); - } - 66% { - transform: translateY(0.3125em) rotate(2deg); - } - to { - transform: translateY(0) rotate(0deg); - } -} -@keyframes qb { - to { - transform: rotate(1deg); - opacity: 0; - } -} -@keyframes rb { - 0% { - top: 0.5625em; - left: 0.0625em; - width: 0; - } - 54% { - top: 0.125em; - left: 0.125em; - width: 0; - } - 70% { - top: 0.625em; - left: -0.25em; - width: 1.625em; - } - 84% { - top: 1.0625em; - left: 0.75em; - width: 0.5em; - } - to { - top: 1.125em; - left: 0.1875em; - width: 0.75em; - } -} -@keyframes sb { - 0% { - top: 1.625em; - right: 1.375em; - width: 0; - } - 65% { - top: 1.25em; - right: 0.9375em; - width: 0; - } - 84% { - top: 0.9375em; - right: 0; - width: 1.125em; - } - to { - top: 0.9375em; - right: 0.1875em; - width: 1.375em; - } -} -@keyframes tb { - 0% { - transform: scale(0.7); - } - 45% { - transform: scale(1.05); - } - 80% { - transform: scale(0.95); - } - to { - transform: scale(1); - } -} -@keyframes ub { - 0% { - transform: scale(1); - opacity: 1; - } - to { - transform: scale(0.5); - opacity: 0; - } -} -@keyframes vb { - 0% { - top: 1.1875em; - left: 0.0625em; - width: 0; - } - 54% { - top: 1.0625em; - left: 0.125em; - width: 0; - } - 70% { - top: 2.1875em; - left: -0.375em; - width: 3.125em; - } - 84% { - top: 3em; - left: 1.3125em; - width: 1.0625em; - } - to { - top: 2.8125em; - left: 0.8125em; - width: 1.5625em; - } -} -@keyframes wb { - 0% { - top: 3.375em; - right: 2.875em; - width: 0; - } - 65% { - top: 3.375em; - right: 2.875em; - width: 0; - } - 84% { - top: 2.1875em; - right: 0; - width: 3.4375em; - } - to { - top: 2.375em; - right: 0.5em; - width: 2.9375em; - } -} -@keyframes xb { - 0% { - transform: rotate(-45deg); - } - 5% { - transform: rotate(-45deg); - } - 12% { - transform: rotate(-405deg); - } - to { - transform: rotate(-405deg); - } -} -@keyframes yb { - 0% { - margin-top: 1.625em; - transform: scale(0.4); - opacity: 0; - } - 50% { - margin-top: 1.625em; - transform: scale(0.4); - opacity: 0; - } - 80% { - margin-top: -0.375em; - transform: scale(1.15); - } - to { - margin-top: 0; - transform: scale(1); - opacity: 1; - } -} -@keyframes zb { - 0% { - transform: rotateX(100deg); - opacity: 0; - } - to { - transform: rotateX(0deg); - opacity: 1; - } -} -body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) { - overflow: hidden; -} -body.swal2-height-auto { - height: auto !important; -} -body.swal2-no-backdrop .swal2-container { - top: auto; - right: auto; - bottom: auto; - left: auto; - max-width: calc(100% - 0.625em * 2); - background-color: transparent !important; -} -body.swal2-no-backdrop .swal2-container > .swal2-modal { - box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); -} -body.swal2-no-backdrop .swal2-container.swal2-top { - top: 0; - left: 50%; - transform: translateX(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-top-left, -body.swal2-no-backdrop .swal2-container.swal2-top-start { - top: 0; - left: 0; -} -body.swal2-no-backdrop .swal2-container.swal2-top-end, -body.swal2-no-backdrop .swal2-container.swal2-top-right { - top: 0; - right: 0; -} -body.swal2-no-backdrop .swal2-container.swal2-center { - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} -body.swal2-no-backdrop .swal2-container.swal2-center-left, -body.swal2-no-backdrop .swal2-container.swal2-center-start { - top: 50%; - left: 0; - transform: translateY(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-center-end, -body.swal2-no-backdrop .swal2-container.swal2-center-right { - top: 50%; - right: 0; - transform: translateY(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-bottom { - bottom: 0; - left: 50%; - transform: translateX(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-bottom-left, -body.swal2-no-backdrop .swal2-container.swal2-bottom-start { - bottom: 0; - left: 0; -} -body.swal2-no-backdrop .swal2-container.swal2-bottom-end, -body.swal2-no-backdrop .swal2-container.swal2-bottom-right { - right: 0; - bottom: 0; -} -@media print { - body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) { - overflow-y: scroll !important; - } - body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) - > [aria-hidden="true"] { - display: none; - } - body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) - .swal2-container { - position: static !important; - } -} -body.swal2-toast-shown .swal2-container { - background-color: transparent; -} -body.swal2-toast-shown .swal2-container.swal2-top { - top: 0; - right: auto; - bottom: auto; - left: 50%; - transform: translateX(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-top-end, -body.swal2-toast-shown .swal2-container.swal2-top-right { - top: 0; - right: 0; - bottom: auto; - left: auto; -} -body.swal2-toast-shown .swal2-container.swal2-top-left, -body.swal2-toast-shown .swal2-container.swal2-top-start { - top: 0; - right: auto; - bottom: auto; - left: 0; -} -body.swal2-toast-shown .swal2-container.swal2-center-left, -body.swal2-toast-shown .swal2-container.swal2-center-start { - top: 50%; - right: auto; - bottom: auto; - left: 0; - transform: translateY(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-center { - top: 50%; - right: auto; - bottom: auto; - left: 50%; - transform: translate(-50%, -50%); -} -body.swal2-toast-shown .swal2-container.swal2-center-end, -body.swal2-toast-shown .swal2-container.swal2-center-right { - top: 50%; - right: 0; - bottom: auto; - left: auto; - transform: translateY(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-bottom-left, -body.swal2-toast-shown .swal2-container.swal2-bottom-start { - top: auto; - right: auto; - bottom: 0; - left: 0; -} -body.swal2-toast-shown .swal2-container.swal2-bottom { - top: auto; - right: auto; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-bottom-end, -body.swal2-toast-shown .swal2-container.swal2-bottom-right { - top: auto; - right: 0; - bottom: 0; - left: auto; -} -.croppy-round .cropper-face, -.croppy-round .cropper-view-box { - border-radius: 50%; -} -@media screen and (max-width: 640px) { - .dataTables_wrapper .dataTables_filter, - .dataTables_wrapper .dataTables_length { - text-align: left !important; - } -} -.scroller { - overflow-y: auto; - scrollbar-color: #32bdea #88dffb; - scrollbar-width: thin; -} -.scroller::-webkit-scrollbar-thumb { - background-color: #32bdea; -} -.scroller::-webkit-scrollbar-track { - background-color: #88dffb; -} -.scroller::-moz-scrollbar-thumb { - background-color: #32bdea; -} -.scroller::-moz-scrollbar-track { - background-color: #88dffb; -} -::-webkit-scrollbar { - width: 8px; - border-radius: 20px; -} -::-moz-scrollbar { - width: 8px; - border-radius: 20px; -} -::-webkit-scrollbar-track { - background: #dcdfe8; - border-radius: 20px; -} -::-webkit-scrollbar-thumb, -::-webkit-scrollbar-thumb:hover { - background: #01041b; - border-radius: 20px; -} -::-moz-scrollbar-thumb, -::-moz-scrollbar-thumb:hover { - background: #01041b; - border-radius: 20px; -} -::-webkit-scrollbar { - width: 4px; - height: 8px; - border-radius: 10px; -} -::-moz-scrollbar { - width: 4px; - height: 8px; - border-radius: 10px; -} -.scrollbar-thumb, -.scrollbar-track-y { - width: 4px !important; -} -body { - font-family: Lato, sans-serif; - font-weight: 400; - font-style: normal; - font-size: 16px; - line-height: 29px; - padding: 0; - margin: 0; - color: #676e8a; - background: #fff; -} -a:hover { - text-decoration: none; -} -.btn i { - margin-right: 5px; -} -.iq-mb-3 { - margin-bottom: 30px !important; -} -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 600; -} -button:focus { - outline: none; -} -.line-height { - line-height: normal; -} -.rounded-normal, -.rounded-small { - border-radius: 10px; -} -:focus { - outline: none; -} -.text-break { - word-break: break-all; -} -.border-none { - border: none !important; -} -.breadcrumb-item + .breadcrumb-item:before { - margin-top: 5px; -} -.user-list-files { - justify-content: flex-end; -} -.user-list-files a { - padding: 10px 15px; - margin: 0 0 0 10px; - border-radius: 5px; - line-height: normal; -} -code { - color: #e08db4; -} -.slick-loading .slick-list { - background: transparent !important; -} -ul.iq-edit-profile li a { - padding: 1rem !important; - text-align: center; -} -.change-mode { - margin-right: 0; - margin-top: 0; -} -.change-mode .custom-switch.custom-switch-icon .custom-control-input { - height: 100%; -} -.change-mode - .custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:after { - transform: translateX(1.6rem); -} -.change-mode - .custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:before { - background-color: #0d0d0d; - border-color: #0d0d0d; -} -.change-mode .custom-switch.custom-switch-icon label.custom-control-label { - height: 31px; - width: 30px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label:after { - top: 0; - left: 0; - width: 35px; - height: 30px; - border-radius: 5px 0 0 5px; - background-color: #32bdea; - border-color: #32bdea; - z-index: 0; - display: none; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label:before { - width: 38px; - height: 38px; - top: 0; - left: 0; - background-color: #fff; - border: 1px solid #dcdfe8; - border-radius: 10px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-left { - top: 5px; - z-index: 1; - left: 11px; - line-height: 24px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-left - i { - font-size: 16px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-right { - right: 3px; - top: 5px; - line-height: 24px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-right - i { - font-size: 16px; -} -.custom-control-input:focus ~ .custom-control-label:before { - box-shadow: none !important; -} -g[aria-describedby="id-22-description"] { - stroke: none; -} -@media (min-width: 1400px) { - .container, - .container-lg, - .container-md, - .container-sm, - .container-xl { - max-width: 1300px; - } -} -@media (max-width: 1300px) { - .flatpickr-months .flatpickr-next-month, - .flatpickr-months .flatpickr-prev-month, - .flatpickr-rContainer { - padding-right: 40px; - } - .flatpickr-current-month { - left: 7.5%; - } -} -@media (max-width: 767px) { - .table { - width: 100%; - max-width: 100%; - margin-bottom: 1rem; - display: block; - overflow-x: auto; - } - .tree { - display: inline-table; - } -} -@media (max-width: 575px) { - .user-list-files { - justify-content: center; - margin-top: 15px; - } -} -.content-page { - overflow: hidden; - margin-left: 260px; - padding: 105px 15px 0; - min-height: 100vh; - transition: all 0.3s ease-in-out; -} -@media (min-width: 1300px) { - body.sidebar-main .content-page { - margin-left: 70px; - } - body.sidebar-main .iq-menu-bt-sidebar { - display: block; - margin-left: auto; - margin-right: auto; - padding-left: 0; - } -} -@media (max-width: 1299px) { - .content-page { - margin-left: 0; - padding: 95px 15px 0; - } -} -@media (max-width: 991px) { - .content-page { - padding: 75px 0 0; - } -} -@media (max-width: 479px) { - .welcome-content { - display: block !important; - text-align: center; - } - .welcome-content .breadcrumb { - justify-content: center; - } -} -label { - color: #01041b; -} -.table td, -.table th { - vertical-align: middle; -} -.form-control { - height: 45px; - line-height: 45px; - background: #fff; - border: 1px solid #dcdfe8; - font-size: 14px; - color: #676e8a; - border-radius: 10px; - box-shadow: none; -} -.form-control:focus { - color: #01041b; - border-color: #32bdea; - box-shadow: none; -} -.form-control-sm { - height: 30px; - line-height: 30px; -} -.form-control-lg { - height: 50px; - line-height: 50px; -} -.input-group .input-group-append .input-group-text, -.input-group .input-group-prepend .input-group-text { - border: 1px solid #bfc9d4; -} -textarea.form-control { - background-color: #fff; - line-height: 28px; -} -#editor { - height: 375px; -} -.uploader-file { - display: block; - clear: both; - margin: 0 auto; - width: 100%; - max-width: 600px; -} -.uploader-file label { - float: left; - clear: both; - width: 100%; - padding: 2rem 1.5rem; - text-align: center; - background: #fff; - border-radius: 7px; - border: 3px solid #eee; - transition: all 0.3s ease-in-out; - user-select: none; -} -.uploader-file label.hover { - border: 3px solid; - box-shadow: inset 0 0 0 6px #eee; -} -.uploader-file label.hover #start-one i.fa { - transform: scale(0.8); - -webkit-opacity: 0.3; - -moz-opacity: 0.3; - -ms-opacity: 0.3; - -o-opacity: 0.3; - opacity: 0.3; -} -.uploader-file #start-one { - float: left; - clear: both; - width: 100%; -} -.uploader-file #start-one i.fa { - font-size: 50px; - margin-bottom: 1rem; - transition: all 0.3s ease-in-out; -} -.uploader-file #start-one.hidden { - display: none; -} -.uploader-file #response { - float: left; - clear: both; - width: 100%; -} -.uploader-file #response #messages { - margin-bottom: 0.5rem; -} -.uploader-file #response.hidden { - display: none; -} -.uploader-file #file-image { - display: inline; - margin: 0 auto 0.5rem; - width: auto; - height: auto; - max-width: 180px; -} -.uploader-file #file-image.hidden { - display: none; -} -.uploader-file #notimage { - display: block; - float: left; - clear: both; - width: 100%; -} -.uploader-file #notimage.hidden { - display: none; -} -.uploader-file .progress, -.uploader-file progress { - display: inline; - clear: both; - margin: 0 auto; - width: 100%; - max-width: 180px; - height: 8px; - border: 0; - border-radius: 4px; - background-color: #eee; - overflow: hidden; -} -.uploader-file input[type="file"] { - display: none; -} -.uploader-file div { - margin: 0 0 0.5rem; - color: #5f6982; -} -.spin { - animation: spin 2s infinite linear; -} -.input-group .input-group-append .input-group-text, -.input-group .input-group-prepend .input-group-text { - border: 1px solid #dcdfe8; - background-color: #fff; -} -.custom-select { - height: 46px; - border: 1px solid #dcdfe8; -} -.dropone.dropdown-toggle:after { - display: none; -} -.input-group-sm > .custom-select, -.input-group-sm > .form-control:not(textarea) { - height: 30px; -} -.input-group-lg > .custom-select, -.input-group-lg > .form-control:not(textarea) { - height: 50px; -} -.input-group-text.text-area { - padding: 1.9rem 0.75rem; -} -.custom-file-label:after { - background-color: #fff; - color: #676e8a; -} -.custom-file-input:focus ~ .custom-file-label { - border-color: #32bdea; - box-shadow: none; -} -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #32bdea; - background-color: transparent; -} -table.dataTable thead td, -table.dataTable thead th { - padding: 10px !important; -} -.table-striped tbody tr:nth-of-type(odd) { - background-color: #fff; -} -.table-bordered, -.table-bordered td, -.table-bordered th { - border: 1px solid #dcdfe8; -} -.dataTables_wrapper .dataTables_filter, -.dataTables_wrapper .dataTables_info, -.dataTables_wrapper .dataTables_length, -.dataTables_wrapper .dataTables_paginate, -.dataTables_wrapper .dataTables_processing { - color: #676e8a; -} -.dataTables_wrapper .dataTables_paginate .paginate_button { - padding: 0; - margin: 0; -} -.dataTables_wrapper .dataTables_paginate .paginate_button:hover { - color: #01041b !important; - border-radius: 10px; - background: #88dffb !important; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button { - padding: 0 10px; - border-radius: 10px; - margin: 0 3px; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button.current { - padding: 3px 10px; - color: #32bdea !important; - border: 1px solid #32bdea !important; - background: #88dffb !important; - border-radius: 10px; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover { - color: #32bdea !important; - border: 1px solid #32bdea !important; - background: #88dffb !important; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button:hover { - color: #01041b !important; - border: 1px solid #32bdea !important; - background: #88dffb !important; -} -.dataTables_wrapper .dataTables_filter input { - border: 1px solid #dcdfe8; - background-color: transparent; - border-radius: 10px; -} -table.dataTable thead td, -table.dataTable thead th { - padding: 10px 18px; - border-bottom: 1px solid #dcdfe8 !important; -} -table.dataTable thead th { - color: #110a57 !important; -} -table.dataTable.no-footer { - border-bottom: 1px solid #dcdfe8 !important; -} -.dataTables_wrapper .dataTables_paginate .paginate_button { - box-shadow: none !important; - outline: none !important; -} -.dataTables_wrapper .dataTables_info { - padding-top: 15px !important; -} -.dataTables_wrapper .dataTables_length label, -.dataTables_wrapper .dataTables_length select { - border-color: #dcdfe8 !important; -} -.custom-control-label:after, -.custom-control-label:before { - top: 0.25rem; -} -.custom-switch .custom-control-label:after { - top: calc(0.25rem + 2px); -} -.select2-container--default .select2-selection--multiple { - height: 45px; - line-height: 34px; - background: #fafbfe; - border: 1px solid #f1f1f1; - font-size: 14px; - color: #535f6b; - border-radius: 5px; -} -#form-wizard1 { - position: relative; -} -#form-wizard1 input[type="file"] { - line-height: 27px; -} -#form-wizard1 fieldset:not(:first-of-type) { - display: none; -} -#form-wizard2, -#form-wizard3 { - position: relative; -} -.steps { - font-size: 20px; - color: #676e8a; - font-weight: 400; - text-align: right; -} -#top-tab-list { - margin: 0 -10px 60px; - overflow: hidden; - color: #676e8a; -} -#top-tab-list .active { - color: #32bdea; -} -#top-tab-list li { - list-style-type: none; - font-size: 18px; - width: 25%; - float: left; - text-align: left; - position: relative; - font-weight: 400; -} -#top-tab-list li i { - display: inline-block; - text-align: center; - height: 50px; - width: 50px; - line-height: 50px; - font-size: 20px; - border-radius: 50%; - margin: 0 15px 0 0; - color: #fff; - background: #32bdea; -} -#top-tab-list li a { - background: #88dffb; - color: #32bdea; - display: block; - padding: 15px; - margin: 0 10px; - border-radius: 10px; - text-decoration: none; -} -#top-tab-list li.active a { - color: #fff; - background: #32bdea; -} -#top-tab-list li.active i { - background-color: #fff; - color: #32bdea; -} -#top-tab-list li.active.done a { - background: #78c091; -} -#top-tab-list li.active.done i { - color: #78c091; -} -#top-tab-list li#confirm.active a { - background: #78c091; -} -#top-tab-list li#confirm.active i { - color: #78c091; -} -.fit-image { - width: 100%; - object-fit: cover; -} -@media (max-width: 991px) { - #top-tab-list li a { - margin: 0 5px; - padding: 15px 8px; - } -} -@media (max-width: 767px) { - #top-tab-list li { - width: 100%; - margin-bottom: 15px; - } -} -.stepwizard-row { - display: block; - margin: 0 -20px; -} -.stepwizard-row .wizard-step a.btn { - background: #fff; - color: #676e8a; - font-size: 18px; - font-weight: 400; - display: block; - padding: 50px 15px; - margin: 10px 20px; - border-radius: 10px; - text-decoration: none; - border: 1px solid #88dffb; -} -.stepwizard-row .wizard-step i { - display: block; - text-align: center; - height: 65px; - width: 65px; - line-height: 65px; - font-size: 25px; - border-radius: 50%; - margin: 0 auto 20px; - color: #fff; - background: #32bdea; -} -.stepwizard-row #user.active a { - background: #88dffb; - border-color: #32bdea; -} -.stepwizard-row #document.active a { - background: #f1c8db; - border-color: #e08db4; -} -.stepwizard-row #bank.active a { - background: #a0d9b4; - border-color: #78c091; -} -.stepwizard-row #confirm.active a { - background: #ffaa8a; - border-color: #ff9770; -} -.stepwizard-row .wizard-step#user i { - background: #88dffb; - color: #32bdea; -} -.stepwizard-row .wizard-step#document i { - background: #f1c8db; - color: #e08db4; -} -.stepwizard-row .wizard-step#bank i { - background: #a0d9b4; - color: #78c091; -} -.stepwizard-row .wizard-step#confirm i { - background: #ffaa8a; - color: #ff9770; -} -.stepwizard-row .wizard-step.active i { - background-color: #fff !important; -} -.stepwizard-row .wizard-step#document.active i { - background: #f1c8db; - color: #e08db4; -} -.stepwizard-row .wizard-step#bank.active i { - background: #a0d9b4; - color: #78c091; -} -.stepwizard-row .wizard-step#confirm.active i { - background: #ffaa8a; - color: #ff9770; -} -.stepwizard { - display: table; - width: 100%; - position: relative; -} -.setup-content { - margin-top: 60px; -} -.wizard-step { - font-size: 18px; - width: 25%; - float: left; - position: relative; - font-weight: 400; - text-align: center; -} -.has-error .checkbox, -.has-error .checkbox-inline, -.has-error .control-label, -.has-error .help-block, -.has-error .radio, -.has-error .radio-inline { - color: #e08db4; -} -.has-error .form-control { - border: 1px solid #e08db4; - -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - box-shadow: none; -} -@media (max-width: 767px) { - .wizard-step { - width: 50%; - } -} -@media (max-width: 479px) { - .wizard-step { - width: 100%; - } -} -#form-wizard3 fieldset:not(:first-of-type) { - display: none; -} -#top-tabbar-vertical { - overflow: hidden; - color: #676e8a; - margin: 0 -20px 60px; -} -#top-tabbar-vertical .active { - color: #32bdea; -} -#top-tabbar-vertical li { - list-style-type: none; - font-size: 18px; - width: 100%; - float: left; - position: relative; - font-weight: 400; -} -#top-tabbar-vertical li i { - display: inline-block; - text-align: center; - height: 50px; - width: 50px; - line-height: 50px; - font-size: 20px; - border-radius: 50%; - margin: 0 20px 0 0; -} -#top-tabbar-vertical li a { - background: #fff; - color: #000; - display: block; - padding: 20px 15px; - margin: 10px 20px; - border-radius: 10px; - text-decoration: none; - border: 1px solid #88dffb; -} -#top-tabbar-vertical li.step1 i { - background: #88dffb; - color: #32bdea; -} -#top-tabbar-vertical li.step2 i { - background: #f1c8db; - color: #e08db4; -} -#top-tabbar-vertical li.step3 i { - background: #a0d9b4; - color: #78c091; -} -#top-tabbar-vertical li.step4 i { - background: #ffaa8a; - color: #ff9770; -} -#top-tabbar-vertical li.active a { - border-color: transparent; -} -#top-tabbar-vertical li.active i { - background-color: #fff; - color: #32bdea; - background: #fff !important; -} -#top-tabbar-vertical .step1.active a { - background: #88dffb; -} -#top-tabbar-vertical .step2.active a { - background: #f1c8db; -} -#top-tabbar-vertical .step3.active a { - background: #a0d9b4; -} -#top-tabbar-vertical .step4.active a { - background: #ffaa8a; -} -.iq-icons-list { - line-height: 50px; - margin-bottom: 15px; - display: inline-block; -} -.iq-icons-list i { - height: 50px; -} -.iq-icons-list .icon, -.iq-icons-list i { - text-align: center; - vertical-align: middle; - font-size: 22px; - width: 40px; - line-height: 50px; - margin-right: 10px; - display: inline-block; -} -.iq-icons-list .icon { - height: 40px; -} -.iq-icons-list span { - display: inline-block; - vertical-align: middle; -} -.iq-card-icon { - height: 60px; - width: 60px; - display: inline-block; - line-height: 60px; - text-align: center; - font-size: 22px; -} -.ion-icon { - height: 15px; - width: 15px; - line-height: 15px; - font-size: 22px; - margin-right: 10px; -} -.iq-iconbox { - height: 50px; - width: 50px; - line-height: 50px; - text-align: center; - font-size: 25px; - border-radius: 10px; -} -.iq-icon-box { - height: 64px; - width: 64px; - min-width: 64px; - line-height: 64px; - text-align: center; - margin-right: 10px; - font-size: 26px; - text-decoration: none; -} -.card.iq-border-box { - border-bottom: 4px solid; -} -.profile-icon { - height: 40px; - width: 40px; - line-height: 40px; - text-align: center; - font-size: 20px; - font-weight: 700; - border-radius: 50%; -} -.iq-error { - width: 100%; - overflow: hidden; - display: inline-block; -} -.iq-error h1.text-in-box { - position: absolute; - top: 0; - left: 0; - right: 0; - font-size: 8em; - font-weight: 700; -} -.iq-error-img { - position: static; - display: inline-block; - margin-bottom: 20px; -} -.error-500 .iq-error-img { - width: 100%; -} -.height-self-center { - height: 100vh; - border-radius: 10px; -} -.iq-maintenance img { - width: 20%; -} -@media (max-width: 767px) { - .iq-error h1.text-in-box { - font-size: 5em; - } -} -@media (max-width: 479px) { - .iq-error h1.text-in-box { - font-size: 4em; - } - .iq-error h2 { - font-size: 1.5em; - } -} -.login-content { - position: relative; - height: 100vh; - z-index: 99; -} -.login-content .floating-label label { - color: #676e8a; - font-size: 14px; - font-weight: 400; - position: absolute; - pointer-events: none; - left: 12px; - top: 50%; - transform: translateY(-50%); - transition: all 0.3s ease-in-out; -} -.login-content .form-control { - border-color: #c7cbd3; -} -.login-content .form-control:focus { - border-color: #32bdea; -} -.login-content .custom-control-label:before { - background-color: #fff; -} -.login-content .custom-control-label.control-label-1 { - line-height: 24px; -} -.login-content .auth-card { - position: relative; - overflow: hidden; - width: 100%; - min-height: 480px; - height: auto; - margin: 15px auto; - display: block; -} -.login-content .auth-card .auth-content { - min-height: 480px; - height: 100% !important; -} -.floating-label { - position: relative; - margin-bottom: 20px; -} -.floating-input:focus ~ label { - color: #32bdea; - top: 0; - left: 6px; - font-size: 10px; - background: #fff; - padding: 5px 8px; -} -.floating-input:not(:placeholder-shown) { - color: #676e8a; - border: 1px solid #dcdfe8; -} -.floating-input:not(:placeholder-shown) ~ label { - top: 0; - font-size: 14px; - background: #fff; - padding: 5px 8px; -} -@media (min-width: 992px) { - .lb-img { - left: 0; - width: 213px; - } - .lb-img, - .rb-img { - position: absolute; - bottom: 0; - } - .rb-img { - right: 0; - width: 194px; - } - .cnf-mail { - width: 80%; - } -} -@media (max-width: 991px) { - .lb-img, - .rb-img { - display: none; - } -} -@media (max-width: 575px) { - .content-right { - display: none; - } -} -.iq-timeline { - margin: 0 0 0 20px; - padding: 0; - width: 100%; -} -.iq-timeline li { - margin-left: 35px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -.iq-timeline li .timeline-dots { - position: absolute; - top: 20px; - left: -54px; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #fff; - height: 40px; - width: 40px; - line-height: 25px; - text-align: center; -} -.iq-timeline:before { - content: ""; - position: absolute; - left: 50%; - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} -.timeline-page .iq-timeline ul li { - width: 50%; - padding: 5px 30px 40px; - cursor: pointer; - margin: 0; -} -.timeline-page .iq-timeline ul li:nth-child(odd) { - float: left; - text-align: right; - clear: both; -} -.timeline-page .iq-timeline ul li:nth-child(odd) .timeline-dots { - right: -8px; - left: auto; -} -.timeline-page .iq-timeline ul li:nth-child(odd) .time { - padding-left: 10px; - right: -145px; - -ms-box-shadow: 0 0 0 3px rgba(80, 181, 255, 0.3); - -o-box-shadow: 0 0 0 3px rgba(80, 181, 255, 0.3); - box-shadow: 0 0 0 3px rgba(80, 181, 255, 0.3); -} -.timeline-page .iq-timeline ul li:nth-child(2n) { - float: right; - text-align: left; - clear: both; -} -.timeline-page .iq-timeline ul li:nth-child(2n) .timeline-dots { - left: -8px; - right: auto; -} -.timeline-page .iq-timeline ul li:nth-child(2n) .time { - text-align: right; - padding-right: 10px; - left: -145px; - -ms-box-shadow: 0 0 0 3px rgba(73, 240, 211, 0.3); - -o-box-shadow: 0 0 0 3px rgba(73, 240, 211, 0.3); - box-shadow: 0 0 0 3px rgba(73, 240, 211, 0.3); -} -.timeline-page .iq-timeline ul li .time { - position: absolute; - top: 15px; - background-color: #32bdea; - color: #fff; - text-align: left; - width: 120px; - height: 28px; - line-height: 28px; - border-radius: 20px; -} -.timeline-page .iq-timeline li .timeline-dots { - height: 15px; - width: 15px; - background: #fff !important; -} -.timeline-page .iq-timeline0 ul li { - width: 50%; - padding: 5px 30px 40px; - cursor: pointer; - margin: 0; -} -.timeline-page .iq-timeline0 ul li:nth-child(odd) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} -.timeline-page .iq-timeline0 ul li:nth-child(odd) .timeline-dots, -.timeline-page .iq-timeline0 ul li:nth-child(odd) .timeline-dots.timeline-dot1 { - left: 12px; - right: auto; -} -.timeline-page .iq-timeline0 ul li:nth-child(2n) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} -.timeline-page .iq-timeline0 ul li:nth-child(2n) .timeline-dots, -.timeline-page .iq-timeline0 ul li:nth-child(2n) .timeline-dots.timeline-dot1 { - left: 12px; - right: auto; -} -.timeline-page .iq-timeline0 li .timeline-dots { - height: 15px; - width: 15px; - background: #fff !important; -} -.timeline-page .iq-timeline0 li .timeline-dots1 { - position: absolute; - top: 0; - left: 0; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #fff; - height: 40px; - width: 40px; - line-height: 25px; - text-align: center; -} -.timeline-page .iq-timeline0 li .timeline-dots.timeline-dot1 { - height: 15px; - width: 15px; -} -.timeline-page .iq-timeline1 ul li { - width: 50%; - padding: 20px 30px 0; - cursor: pointer; - margin: 0; -} -.timeline-page .iq-timeline1 ul li:nth-child(odd) { - float: left; - text-align: right; - clear: both; - margin-left: -19px; -} -.timeline-page .iq-timeline1 ul li:nth-child(odd) .timeline-dots { - right: -28px; - left: auto; -} -.timeline-page .iq-timeline1 ul li:nth-child(2n) { - float: right; - text-align: left; - clear: both; - margin-right: -20px; -} -.timeline-page .iq-timeline1 ul li:nth-child(2n) .timeline-dots { - left: -27px; - right: auto; -} -.timeline-page .iq-timeline2 ul li:nth-child(2n), -.timeline-page .iq-timeline2 ul li:nth-child(odd) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} -.timeline-page .iq-timeline2:before { - content: ""; - position: absolute; - left: 30px; - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} -.timeline-page .iq-timeline2 .content-date { - position: absolute; - top: 0; - left: 0; - width: 60px; - height: 60px; - line-height: 22px; - padding-top: 8px; - text-align: center; - margin-left: 0; - border-radius: 100%; -} -.timeline-page .iq-timeline2 .content-date .date { - display: block; - font-size: 20px; - font-weight: 700; -} -.iq-timeline0 li { - margin-left: 35px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -.iq-timeline0 li .timeline-dots { - position: absolute; - top: 20px; - left: -54px; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #fff; - height: 40px; - width: 40px; - line-height: 25px; - text-align: center; -} -.iq-timeline0:before { - content: ""; - position: absolute; - left: 20px; - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} -.iq-timeline1 li { - margin-left: 35px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -.iq-timeline1 li .timeline-dots { - position: absolute; - top: 20px; - left: -54px; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #fff; - height: 15px; - width: 15px; - line-height: 25px; - text-align: center; -} -.iq-timeline1:before { - content: ""; - position: absolute; - left: 50%; - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} -.iq-timeline2 li { - margin-left: 0; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -@media (max-width: 575px) { - .timeline-page .iq-timeline ul li { - padding-left: 10px; - padding-right: 10px; - } - .timeline-page .iq-timeline ul li .time { - width: 90px; - } - .timeline-page .iq-timeline ul li:nth-child(odd) .time { - right: -115px; - } - .timeline-page .iq-timeline ul li:nth-child(2n) .time { - left: -115px; - } -} -.active-faq a.accordion-title { - display: block; - padding-right: 45px; -} -.iq-accordion.career-style.faq-style .iq-accordion-block { - padding: 10px 5px; - border-radius: 10px; -} -.iq-accordion.career-style.faq-style .iq-accordion-block .accordion-title span { - padding-left: 0; -} -.iq-accordion.career-style.faq-style .iq-accordion-block .accordion-details p { - padding-left: 15px; - padding-top: 15px; - padding-bottom: 15px; -} -.iq-accordion.career-style.faq-style .accordion-title:before { - display: inline-block; - cursor: pointer; - content: ""; - font-family: remixicon; - position: absolute; - top: -8px; - right: 15px; - color: #1e1e1e; - font-size: 16px; - line-height: 16px; - font-weight: 400; - transition: all 0.3s ease-in-out; - border-radius: 10px; - width: 45px; - height: 45px; - line-height: 45px; - text-align: center; - border-radius: 90px; -} -.iq-accordion.career-style.faq-style - .iq-accordion-block.accordion-active - .accordion-title:before { - content: ""; - display: inline-block; - border-radius: 90px; -} -.iq-accordion.career-style.faq-style .active-faq .row { - background: transparent; - padding: 10px 0; -} -.iq-accordion.career-style .iq-accordion-block { - margin-bottom: 30px; -} -.iq-accordion.career-style .iq-accordion-block .accordion-title span { - font-size: 16px; - display: table-cell; - color: #01041b; -} -#loading { - background-color: #fff; - height: 100%; - width: 100%; - position: fixed; - margin-top: 0; - top: 0; - left: 0; - bottom: 0; - overflow: hidden !important; - right: 0; - z-index: 999999; -} -#loading-center { - background: url(../../assets/loader.gif) no-repeat scroll 50%; - background-size: 20%; - width: 100%; - height: 100%; - position: relative; -} -.loader { - width: 3em; - height: 3em; - margin: auto; - left: 0; - right: 0; - top: 0; - bottom: 0; - position: absolute; -} -@keyframes Ab { - 0%, - to { - box-shadow: 0 -2.6em 0 0 #4788ff, 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2), - 2.5em 0 0 0 rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.2), - 0 2.5em 0 0 rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.2), - -2.6em 0 0 0 rgba(71, 136, 255, 0.5), - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.7); - } - 12.5% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.7), 1.8em -1.8em 0 0 #4788ff, - 2.5em 0 0 0 rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.2), - 0 2.5em 0 0 rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.2), - -2.6em 0 0 0 rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.5); - } - 25% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.5), - 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.7), 2.5em 0 0 0 #4788ff, - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.2), - 0 2.5em 0 0 rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.2), - -2.6em 0 0 0 rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2); - } - 37.5% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.5), - 2.5em 0 0 0 rgba(71, 136, 255, 0.7), 1.75em 1.75em 0 0 #4788ff, - 0 2.5em 0 0 rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.2), - -2.6em 0 0 0 rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2); - } - 50% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2), - 2.5em 0 0 0 rgba(71, 136, 255, 0.5), - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.7), 0 2.5em 0 0 #4788ff, - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.2), - -2.6em 0 0 0 rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2); - } - 62.5% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2), - 2.5em 0 0 0 rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.5), - 0 2.5em 0 0 rgba(71, 136, 255, 0.7), -1.8em 1.8em 0 0 #4788ff, - -2.6em 0 0 0 rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2); - } - 75% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2), - 2.5em 0 0 0 rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.2), - 0 2.5em 0 0 rgba(71, 136, 255, 0.5), - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.7), -2.6em 0 0 0 #4788ff, - -1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2); - } - 87.5% { - box-shadow: 0 -2.6em 0 0 rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0 rgba(71, 136, 255, 0.2), - 2.5em 0 0 0 rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0 rgba(71, 136, 255, 0.2), - 0 2.5em 0 0 rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0 rgba(71, 136, 255, 0.5), - -2.6em 0 0 0 rgba(71, 136, 255, 0.7), -1.8em -1.8em 0 0 #4788ff; - } -} -@keyframes Bb { - 0%, - to { - transform: translateX(0); - } - 75% { - transform: translateX(30px); - } -} -@keyframes Cb { - 0%, - to { - transform: translateY(0); - } - 75% { - transform: translateY(30px); - } -} -@keyframes Db { - 0%, - to { - transform: translate(0); - } - 75% { - transform: translate(30px, 30px); - } -} -@keyframes Eb { - 0% { - transform: rotateX(35deg) rotateY(-45deg) rotate(0deg); - } - to { - transform: rotateX(35deg) rotateY(-45deg) rotate(1turn); - } -} -@keyframes Fb { - 0% { - transform: rotateX(50deg) rotateY(10deg) rotate(0deg); - } - to { - transform: rotateX(50deg) rotateY(10deg) rotate(1turn); - } -} -@keyframes Gb { - 0% { - transform: rotateX(35deg) rotateY(55deg) rotate(0deg); - } - to { - transform: rotateX(35deg) rotateY(55deg) rotate(1turn); - } -} -@keyframes Hb { - 0% { - transform: rotate(0); - } - 50% { - transform: rotateY(180deg); - } - to { - transform: rotateY(180deg) rotateX(180deg); - } -} -@keyframes Ib { - 0%, - to { - transform: translate(0) rotate(0); - } - 25% { - transform: translate(40px, 40px) rotate(45deg); - } - 50% { - transform: translateY(80px) rotate(0deg); - } - 75% { - transform: translate(-40px, 40px) rotate(45deg); - } -} -@keyframes Jb { - 0% { - transform: rotate(0deg); - border-radius: 50%; - } - 50% { - transform: rotate(90deg); - border-radius: 0; - } - to { - transform: rotate(180deg); - border-radius: 50%; - } -} -@keyframes Kb { - to { - transform: rotate(1turn); - } -} -@keyframes Lb { - 0% { - transform: scale(0); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 50% { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - to { - transform: scale(1); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} -@keyframes Mb { - 0% { - transform: rotate(0deg); - } - to { - transform: rotate(-1turn); - } -} -@keyframes Nb { - 0% { - border-width: 0; - } - to { - border-width: 10px; - } -} -@keyframes Ob { - 0% { - transform: rotate(0deg); - } - to { - transform: rotate(1turn); - } -} -.iq-loader-box { - height: 150px; - text-align: center; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - vertical-align: middle; - -ms-flex-pack: center; - justify-content: center; -} -.iq-loader-box [class*="loader-"] { - display: inline-block; - width: 60px; - height: 60px; - color: inherit; - vertical-align: middle; - position: relative; - border-radius: 50%; -} -.iq-loader-box .iq-loader-1 { - width: 1em; - height: 1em; - border-radius: 50%; - position: relative; - text-indent: -9999em; - animation: Ab 1.1s infinite ease; - transform: translateZ(0); -} -.iq-loader-box .iq-loader-2 { - border: 7px double #37e6b0; - animation: Ob 1s linear infinite; -} -.iq-loader-box .iq-loader-2:after, -.iq-loader-box .iq-loader-2:before { - content: ""; - position: absolute; - width: 12px; - height: 12px; - background: #37e6b0; - border-radius: 50%; - bottom: 0; - right: 37px; -} -.iq-loader-box .iq-loader-2:after { - left: 37px; - top: 0; -} -.iq-loader-box .iq-loader-3 { - position: relative; - border-radius: 50%; - display: inline-block; - vertical-align: middle; -} -.iq-loader-box .iq-loader-3 .loader-outter { - position: absolute; - border: 4px solid #f50057; - border-left-color: transparent; - border-bottom: 0; - width: 100%; - height: 100%; - border-radius: 50%; - animation: Ob 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; -} -.iq-loader-box .iq-loader-3 .loader-inner { - position: absolute; - border: 4px solid #f50057; - border-radius: 50%; - width: 40px; - height: 40px; - left: calc(50% - 20px); - top: calc(50% - 20px); - border-right: 0; - border-top-color: transparent; - animation: Mb 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; -} -.iq-loader-box .iq-loader-4 { - border: 0.2em solid transparent; - border-top-color: #fe721c; - border-bottom-color: #fe721c; - border-radius: 50%; - position: relative; - animation: 1s Ob linear infinite; -} -.iq-loader-box .iq-loader-4:before { - transform: rotate(135deg); - right: -0.3em; - top: -0.05em; -} -.iq-loader-box .iq-loader-4:after, -.iq-loader-box .iq-loader-4:before { - content: ""; - display: block; - width: 0; - height: 0; - position: absolute; - border: 0.2em solid transparent; - border-bottom-color: #fe721c; -} -.iq-loader-box .iq-loader-4:after { - transform: rotate(-45deg); - left: -0.3em; - bottom: -0.05em; -} -.iq-loader-box .iq-loader-5 { - width: 100px; - height: 100px; - border-radius: 100%; - position: relative; - margin: 0 auto; -} -.iq-loader-box .iq-loader-5 span { - display: block; - position: absolute; - left: calc(50% - 20px); - top: calc(50% - 20px); - width: 20px; - height: 20px; - background-color: var(--info); -} -.iq-loader-box .iq-loader-5 span:first-child { - animation: Bb 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-5 span:nth-child(2) { - animation: Cb 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-5 span:nth-child(3) { - animation: Db 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-6 .inner { - position: absolute; - box-sizing: border-box; - width: 100%; - height: 100%; - border-radius: 50%; -} -.iq-loader-box .iq-loader-6 .inner1 { - left: 0; - top: 0; - animation: Eb 1s linear infinite; - border-bottom: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-6 .inner2 { - right: 0; - top: 0; - animation: Fb 1s linear infinite; - border-right: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-6 .inner3 { - right: 0; - bottom: 0; - animation: Gb 1s linear infinite; - border-top: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-7:before { - content: ""; - position: absolute; - left: 0; - width: 50px; - height: 50px; - background-color: #3498db; - animation: Hb 1s infinite; -} -.iq-loader-box .iq-loader-8 { - border: 1.2em solid transparent; - border-left-color: #d0bac2; - border-right-color: #d0bac2; - border-radius: 50%; - animation: 1s Ob linear infinite; -} -.iq-loader-box .iq-loader-9 { - margin: 60px auto; - font-size: 10px; - position: relative; - text-indent: -9999em; - border-top: 1.1em solid rgba(255, 107, 208, 0.2); - border-right: 1.1em solid rgba(255, 107, 208, 0.2); - border-bottom: 1.1em solid rgba(255, 107, 208, 0.2); - border-left: 1.1em solid #ff6bd0; - transform: translateZ(0); - animation: Ob 1.1s infinite linear; -} -.iq-loader-box .iq-loader-9, -.iq-loader-box .iq-loader-9:after { - border-radius: 50%; - width: 7em; - height: 7em; -} -.iq-loader-box .iq-loader-10:after, -.iq-loader-box .iq-loader-10:before { - content: ""; - width: 20px; - height: 20px; - position: absolute; - top: -10px; - left: calc(50% - 10px); - background-color: #3450db; - animation: Ib 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-10:after { - bottom: 0; - animation-delay: 0.5s; -} -.iq-loader-box .iq-loader-11 { - background: #000; -} -.iq-loader-box .iq-loader-11:before { - content: ""; - position: absolute; - border-radius: 50%; - width: 25px; - height: 25px; - margin: 0 0 0 -12px; - background-color: #fff; - top: auto; - bottom: 0; - left: 50%; - transform-origin: 50% 0; - animation: Ob 1s infinite linear; -} -.iq-loader-box .iq-loader-12 { - animation: Jb 1s infinite linear; - background: #6dca5c; -} -.iq-loader-box .iq-loader-13 { - border-top: 0.2em solid #a7a4ca; - border-right: 0.2em solid transparent; - animation: Kb 1s linear infinite; - border-radius: 100%; - position: relative; -} -.iq-loader-box .iq-loader-14 { - border: 0 solid transparent; - border-radius: 50%; - position: relative; -} -.iq-loader-box .iq-loader-14:before { - animation: Lb 1s linear infinite; - animation-delay: 1s; -} -.iq-loader-box .iq-loader-14:after, -.iq-loader-box .iq-loader-14:before { - content: ""; - border: 1em solid #13d7eb; - border-radius: 50%; - width: inherit; - height: inherit; - position: absolute; - top: 0; - left: 0; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; -} -.iq-loader-box .iq-loader-14:after { - animation: Lb 1s linear infinite; - animation-delay: 0.5s; -} -.iq-loader-box .iq-loader-15 { - border: 6px groove #7e57c2; - transform: rotate(1turn); - transition: all 1s ease; - animation: Mb 1s ease-out alternate infinite; -} -.iq-loader-box .iq-loader-15 .loader-inner { - border: 0 inset #9575cd; - border-radius: 50%; - width: 100%; - height: 100%; - animation: Nb 1s ease-out alternate infinite; -} -.iq-loader-box .iq-loader-16 { - width: 70px; - height: 70px; - border: 5px dashed #b3a57c; - animation: Ob 2s linear both infinite; -} -.treegrid-indent { - width: 0; - height: 16px; - display: inline-block; - position: relative; -} -.tab-content .table tbody tr, -.table-data .table tbody tr { - color: #000; -} -.treegrid-expander { - width: 0; - height: 16px; - display: inline-block; - position: relative; - left: -17px; - cursor: pointer; -} -.glyphicon.glyphicon-chevron-right:before { - position: absolute; - content: "\EA6E"; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} -.glyphicon.glyphicon-chevron-down:before { - position: absolute; - content: "\EA4E"; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} -.glyphicon.glyphicon-plus:before { - content: "\EA13"; -} -.glyphicon.glyphicon-minus:before, -.glyphicon.glyphicon-plus:before { - position: absolute; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} -.glyphicon.glyphicon-minus:before { - content: "\F1AF"; -} -.grid-m { - margin-bottom: 30px; -} -.grid-m:nth-last-child(-n + 4) { - margin-bottom: 0; -} -.g-box { - background: #fff; -} -.g-desc { - border: 1px solid rgba(210, 201, 255, 0.4); -} -.masonry .item { - width: 25%; - padding: 10px; - display: block; -} -.masonry .item a { - cursor: zoom-in; -} -.masonry .item img { - width: 100%; -} -.grid-sizer { - width: 25%; - padding: 10px; - display: block; -} -.b-radius-top { - border-radius: 10px 10px 0 0; -} -.b-radius-bottom { - border-radius: 0 0 10px 10px; -} -.hover-effects { - overflow: hidden; - position: relative; -} -.hover-effects a { - cursor: pointer; -} -.hover-effects:hover .effect-1 { - transform: scale3d(1.2, 1.2, 1); -} -.hover-effects:hover .effect-2 { - transform: scale(1); -} -.hover-effects:hover .effect-3 { - margin-left: 0; -} -.hover-effects:hover .effect-4 { - transform: rotate(0) scale(1); -} -.hover-effects:hover .ovrlay-1-a, -.hover-effects:hover .ovrlay-1-b { - left: 0; - top: 0; -} -.hover-effects:hover .ovrlay-2-a, -.hover-effects:hover .ovrlay-2-b { - left: 0; -} -.hover-effects:hover .ovrlay-3-a, -.hover-effects:hover .ovrlay-3-b { - transform: scale(1); -} -.hover-effects:hover .ovrlay-4-a, -.hover-effects:hover .ovrlay-4-b { - top: 0; -} -.hover-effects:hover .ovrlay-5 { - left: 0; - opacity: 1; - visibility: visible; -} -.hover-effects:hover .ovrlay-6 { - visibility: visible; - transform: perspective(600px) rotateX(0deg); -} -.hover-effects:hover .ovrlay-7 { - opacity: 1; - transform: perspective(400px) rotateX(0deg); -} -.hover-effects:hover .ovrlay-8 { - right: 0; -} -.hover-effects:hover .effect-8 { - right: 40px; -} -.effect-1, -.effect-2 { - transition: all 0.3s ease-in-out; -} -.effect-2 { - transform: scale(1.2); -} -.effect-3 { - margin-left: 30px; - transform: scale(1.3); -} -.effect-3, -.effect-4 { - transition: all 0.3s ease-in-out; -} -.effect-4 { - transform: rotate(12deg) scale(1.4); -} -.ovrlay-1-a { - left: -100%; - top: -100%; -} -.ovrlay-1-a, -.ovrlay-1-b { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - width: 100%; - transition: all 0.3s ease-in-out; -} -.ovrlay-1-b { - left: 100%; - top: 100%; -} -.ovrlay-2-a { - left: -100%; -} -.ovrlay-2-a, -.ovrlay-2-b { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - top: 0; - width: 100%; - transition: all 0.3s ease-in-out; -} -.ovrlay-2-b { - left: 100%; -} -.ovrlay-3-a { - top: 0; - top: 100%; -} -.ovrlay-3-a, -.ovrlay-3-a .ovrlay-3-b { - position: absolute; - background: rgba(0, 0, 0, 0.25); - height: 100%; - left: 0; - width: 100%; - transform: scale(0); -} -.ovrlay-3-a .ovrlay-3-b { - top: 0; - transition: all 0.3s ease-in-out; -} -.ovrlay-3-a .ovrlay-4-a { - transition: all 0.3s ease-in-out; - top: -100%; -} -.ovrlay-3-a .ovrlay-4-a, -.ovrlay-3-a .ovrlay-4-b { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - left: 0; - width: 100%; -} -.ovrlay-5 { - position: absolute; - background: #32bdea; - width: 100%; - height: 100%; - top: 0; - padding: 0 15px; - left: -100%; - z-index: 1; - overflow: auto; - visibility: hidden; - transition: all 0.3s ease-in-out; -} -.ovrlay-5, -.ovrlay-5 h4 { - color: #fff; -} -.ovrlay-6 { - background: #32bdea; - width: 100%; - position: absolute; - height: 100%; - top: 0; - left: 0; - overflow: auto; - visibility: hidden; - padding: 0 15px; - transform: perspective(600px) rotateX(-90deg); - transition: all 0.3s ease-in-out; -} -.ovrlay-6 h4, -.ovrlay-6 p { - color: #fff; -} -.ovrlay-8 { - background: #32bdea; - width: 40%; - height: 100%; - top: 0; - transition: all 0.3s ease-in-out; - position: absolute; - right: -40%; - overflow: auto; - padding: 0 10px; -} -.ovrlay-8 h4 { - color: #fff; -} -.ovrlay-8 .i-btn { - position: absolute; - bottom: 10px; - right: 10%; - width: 40px; - height: 40px; - line-height: 40px; - font-size: 17px; - border-radius: 50%; - border: 1px solid #fff; - background: transparent; - text-align: center; - transform: translateX(-50%); - color: #fff !important; -} -.ovrlay-7 { - position: absolute; - background: rgba(0, 0, 0, 0.8); - height: 100%; - left: 0; - top: 0; - width: 100%; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - transform: perspective(400px) rotateX(-90deg); - transform-origin: top; - transition: all 0.3s ease-in-out; -} -.ovrlay-7 .button { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 40px; - height: 40px; - border-radius: 50%; - background: #fff; - text-align: center; - line-height: 40px; -} -.ovrlay-7 .button i { - color: #32bdea; -} -.effect-8 { - width: 100%; - position: relative; - right: 0; - top: 0; - transition: all 0.3s ease-in-out; -} -.data-table .table th { - border-bottom-width: 1px; - border-top: none; -} -.dataTables_filter .form-control:focus, -.dataTables_length .form-control:focus { - background-color: #fff; - border-color: #32bdea; -} -@media (max-width: 991px) { - .masonry .grid-sizer, - .masonry .item { - width: 33.33%; - } -} -@media (max-width: 767px) { - .masonry .grid-sizer, - .masonry .item { - width: 100%; - padding: 0 0 18px; - } -} -.blog .image-block img.img-fluid { - background: #ceebee; -} -.blog-half .blog-meta { - height: 80px; - width: 80px; - line-height: 30px; - padding: 0 22px; - margin-top: -15px; - border-radius: 10px; - text-align: center; - margin-right: 20px; - display: inline-block; - position: relative; -} -.blog-half .blog-meta .date { - font-size: 30px; - font-weight: 500; - padding-top: 15px; - letter-spacing: 0; -} -.blog-half .blog-meta .month { - font-size: 16px; - font-weight: 500; -} -.blog-left .blog-description { - position: absolute; - bottom: 40px; - margin: 0 40px; - padding: 10px; - background: #fff; - left: 0; -} -.blog-date .blog-meta-date { - position: absolute; - top: 15px; - left: 15px; - height: 70px; - width: 70px; - line-height: 25px; - border-radius: 10px; - text-align: center; - background: #32bdea; - color: #fff; -} -.blog-date .blog-meta-date .date { - font-size: 30px; - font-weight: 500; - padding-top: 13px; -} -.blog-comments .blog-meta-date { - position: absolute; - bottom: 15px; - right: 15px; - height: 70px; - width: 70px; - line-height: 25px; - border-radius: 10px; - text-align: center; - background: #32bdea; - color: #fff; -} -.blog-comments .blog-meta-date .date { - font-size: 30px; - font-weight: 500; - padding-top: 13px; -} -.blog-detail .blog-meta { - padding: 12px 15px; - background: hsla(0, 0%, 75%, 0.35); - color: #01041b; -} -@media (max-width: 480px) { - .blog-half { - float: left; - width: 100% !important; - display: inline-block !important; - } - .blog-half, - .blog-half .blog-meta { - margin-bottom: 10px; - } -} -@keyframes Pb { - to { - background-position: -100px 0; - } -} -.p-card { - padding: 12px; -} -.profile-card { - background: #32bdea; - padding: 37px 0; - position: relative; - overflow: hidden; -} -.profile-card:before { - content: ""; - position: absolute; - right: -63px; - top: -3px; - width: 120px; - height: 120px; - border-radius: 10px; - background: hsla(0, 0%, 100%, 0.2); - transform: rotate(36deg); -} -.profile-card:after { - content: ""; - position: absolute; - left: -62px; - bottom: 9px; - width: 126px; - height: 125px; - border-radius: 35px; - background: #2771f9; - transform: rotate(28deg); -} -.profile-box { - background: #fff; - position: relative; - padding-bottom: 240px; - border-radius: 0 0 10px 10px; -} -.pro-content { - margin-top: -55px; - position: absolute; - background: #fff; - padding: 20px; - left: 20px; - right: 20px; - -ms-box-shadow: 0 2px 25px 0 rgba(45, 69, 95, 0.06); - -o-box-shadow: 0 2px 25px 0 rgba(45, 69, 95, 0.06); - box-shadow: 0 2px 25px 0 rgba(45, 69, 95, 0.06); -} -.p-icon { - width: 45px; - height: 45px; - border-radius: 10px; - background: #88dffb; - line-height: 45px; - color: #32bdea; - text-align: center; - font-size: 26px; -} -.eml { - word-break: break-all; -} -.iq-progress-bar.pro-skill { - height: 12px; -} -.iq-progress-bar.pro-skill > span { - background-image: linear-gradient( - 135deg, - transparent, - transparent 33%, - rgba(0, 0, 0, 0.1) 0, - rgba(0, 0, 0, 0.1) 66%, - transparent 0 - ); - background-size: 35px 20px, 100% 100%, 100% 100%; - border-radius: 10px; - position: relative; - animation: Pb 5s linear infinite; -} -.iq-progress-bar.pro-skill > span.bg1 { - background-color: #e08db4; -} -.iq-progress-bar.pro-skill > span.bg2 { - background-color: #ff9770; -} -.iq-progress-bar.pro-skill > span.bg3 { - background-color: #7ee2ff; -} -.social-ic { - background: #fff; - padding: 5px; -} -.social-ic a { - margin: 0 5px; - width: 40px; - height: 40px; - text-align: center; - line-height: 45px; - background: transparent; - position: relative; - z-index: 1; -} -.social-ic a i { - color: #676e8a; - font-size: 18px; - transition: all 0.3s ease-in-out; - position: relative; - z-index: 3; -} -.social-ic a:before { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 0; - opacity: 0; - background: #32bdea; - border-radius: 10px; - transition: all 0.3s ease-in-out; - z-index: 2; -} -.social-ic a:nth-child(2n):before { - top: 100%; -} -.social-ic a:nth-child(2n):hover:before { - top: 0; -} -.social-ic a:hover:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - height: 100%; -} -.social-ic a:hover i { - color: #fff !important; - transform: rotateY(1turn); -} -@media (max-width: 767px) { - .social-ic a { - width: 28px; - height: 28px; - line-height: 34px; - } - .social-ic a i { - font-size: 15px; - } -} -.logo-invoice { - height: 55px; -} -.print .card-title { - color: #fff; -} -.print .table thead { - background: #fff; -} -.print .table th, -.print .table thead th { - border: 0; -} -.print .table td { - border-top: 0; -} -.print .table tr { - border-top: 1px solid #dee2e6; -} -.print .table tr:first-child { - border-top: 0; -} -.btn-primary-dark { - background: #06a3d6; - color: #fff; -} -.btn-primary-dark:hover { - color: #fff; -} -.or-detail { - background: #fff; - border: 1px solid rgba(210, 201, 255, 0.4); -} -.or-detail p { - margin-bottom: 0; -} -.ttl-amt { - border-top: 1px solid rgba(210, 201, 255, 0.4); -} -#scroll1 { - position: relative; - width: 600px; - height: 250px; -} -.sweet_al .btn { - margin-right: 5px; -} -@media (max-width: 479px) { - .header-invoice { - display: block !important; - text-align: center; - } - .header-invoice .invoice-btn { - margin-top: 15px; - } -} -.pricing .table th { - border-top: none; - border-bottom: 1px solid #dee2e6; -} -.pricing .table td { - border-top: none !important; -} -.pricing .table tr { - border-bottom: 1px solid #dee2e6; -} -.pricing .table tr:last-child { - border-bottom: 0; -} -.prc-box { - background: #88dffb; - padding: 15px; - position: relative; - border-radius: 10px; -} -.type { - position: absolute; - background: #32bdea; - padding: 9px 25px; - color: #fff; - top: -15px; - left: 50%; - transform: translateX(-50%); - font-weight: 500; -} -.type:before { - right: -15px; - border-left: 15px solid #06a3d6; -} -.type:after, -.type:before { - position: absolute; - content: ""; - width: 0; - height: 0; - top: 0; - border-top: 15px solid transparent; -} -.type:after { - left: -15px; - border-right: 15px solid #06a3d6; -} -.prc-box.active { - background: #32bdea; -} -.prc-box.active .h3 { - color: #fff; -} -.prc-box.active .type { - background: #88dffb; - color: #01041b; -} -.prc-box.active .type:before { - border-left: 16px solid #06a3d6; - right: -16px; -} -.prc-box.active .type:after { - border-right: 16px solid #06a3d6; - left: -16px; -} -.prc-wrap { - border-bottom: none !important; -} -.i_close { - font-size: 22px; -} -.p-image { - position: absolute; - top: auto; - right: 6px; - bottom: 10px; - transition: all 0.3s ease; - background: #32bdea; - color: #fff; - border-radius: 50%; - height: 30px; - width: 30px; - line-height: 28px; - text-align: center; - font-size: 12px; - cursor: pointer; -} -.upload-button { - font-size: 1.5em; -} -.file-upload { - display: none; -} -.upload_profile { - position: relative; -} -.child-cell.active { - color: #32bdea; -} -.iq-social ul li a { - display: block; - text-align: center; - font-size: 16px; - line-height: 43px; -} -.card .pricing-radius-box { - border-radius: 60px 0 60px 0; -} -.pricing-header { - padding: 20px 0; - background: #f5f6f9; - border-radius: 10px 10px 50% 50%; - transition: all 0.3s ease-in-out; - margin-bottom: 20px; -} -.pricing-details .icon-data { - font-size: 50px; -} -.pricing-custom-tab .tab-pane.fade.active.show { - display: block; -} -.pricing-custom-tab .tab-pane.fade { - display: none; -} -.pricing-custom-tab li.nav-item .nav-link { - border: 1px solid #dcdfe8; - color: #01041b; - font-size: 16px; - padding: 12px 35px; - border-radius: 0; -} -.pricing-custom-tab li.nav-item .nav-link.active { - color: #fff; - background: #32bdea; -} -.pricing-custom-tab li.nav-item .star-circle { - background-color: #32bdea; - border-radius: 50%; - -ms-box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.5); - -o-box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.5); - box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.5); - color: #fff; - display: block; - font-size: 13px; - height: 25px; - padding: 0; - line-height: 23px; - text-align: center; - width: 20px; - position: absolute; - top: -14px; - left: -14px; - z-index: 1; -} -.nav-pills li { - position: relative; -} -#recent-hits-map { - height: 340px; -} -#reporting-chart-04 { - height: 400px; -} -.iq-avatars .iq-avatar { - margin-right: 10px; - margin-bottom: 10px; - position: relative; - display: inline-block; -} -.profile-icon.iq-icon-box { - height: 58px; - width: 58px; - line-height: 58px; - text-align: center; - margin-right: 10px; - font-size: 26px; - text-decoration: none; -} -.profile-overly { - position: absolute; - left: auto; - bottom: 0; - right: 0; - background: #fff; - padding: 10px 30px; - text-align: center; - border-radius: 10px 10px 0 0; -} -ul.iq-contact-rest li a p { - word-break: break-all; -} -.crm-p-image { - position: absolute; - top: auto; - left: 69px; - bottom: -9px; - transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); - border-radius: 50%; - height: 35px; - width: 35px; - text-align: center; - font-size: 12px; - line-height: 24px; - cursor: pointer; - border: 5px solid #fff; -} -.card-profile { - margin-top: -120px; - font-size: 16px; -} -.skill-number { - margin-right: 10px; - margin-left: 5px; -} -.profile-tab.nav-pills .nav-item { - margin-bottom: 10px; -} -.profile-tab.nav-pills .nav-item:first-child .nav-link { - margin-left: 0; -} -.profile-tab.nav-pills .nav-link { - font-size: 18px; - -webkit-opacity: 0.5; - -moz-opacity: 0.5; - -ms-opacity: 0.5; - -o-opacity: 0.5; - opacity: 0.5; - position: relative; - padding: 0 0 10px; - margin: 0 20px; -} -.profile-tab.nav-pills .nav-link:before { - content: ""; - border: 1px solid #110a57; - background: #110a57; - width: 100%; - height: 1px; - position: absolute; - left: 0; - bottom: 0; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - transition: all 0.3s ease-in-out; -} -.profile-tab.nav-pills .nav-link.active { - background: transparent; - color: #110a57; -} -.profile-tab.nav-pills .nav-link.active, -.profile-tab.nav-pills .nav-link.active:before, -.profile-tab.nav-pills .nav-link:hover { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.profile-tab.nav-pills .nav-link:hover { - background: transparent; - color: #110a57; -} -.profile-tab.nav-pills .nav-link:hover:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.profile-content { - font-size: 16px; -} -.profile-info { - position: relative; - padding: 0 10px; -} -.profile-info:before { - content: ""; - border-right: 1px solid #dcdfe8; - background: #dcdfe8; - height: 50px; - width: 1px; - position: absolute; - right: 0; - top: 30px; -} -.profile-info:first-child { - padding-left: 0; -} -.profile-info:last-child { - padding-right: 0; -} -.profile-info:last-child:before { - display: none; -} -.profile-info .profile-icon.icon { - line-height: 36px; -} -.profile-media { - position: relative; - padding-bottom: 40px; - z-index: 9; -} -.profile-media:before { - content: ""; - border-right: 2px solid #dcdfe8; - background: #dcdfe8; - height: 100%; - width: 1px; - position: absolute; - left: 9px; - top: 0; - z-index: -1; -} -.profile-dots { - height: 20px; - width: 20px; - border: 2px solid; - border-radius: 3px; - background: #fff; -} -.iq-progress-primary { - background: #16a5d3 !important; -} -.iq-progress-secondary { - background: #ff5b0e !important; -} -.iq-progress-success { - background: #55b075 !important; -} -.iq-progress-info { - background: #4bd7ff !important; -} -.iq-progress-warning { - background: #ff723d !important; -} -.iq-progress-danger { - background: #d5659a !important; -} -.iq-progress-light { - background: #aab0bd !important; -} -.iq-progress-dark { - background: #000 !important; -} -.iq-progress-orange { - background: #ff5b0e !important; -} -.iq-progress-purple { - background: #37268e !important; -} -.iq-progress-skyblue { - background: #0773d2 !important; -} -.iq-progress-light-gray { - background: #d1d5ea !important; -} -.icon-primary, -.icon-text-primary { - color: #0c5d77 !important; -} -.icon-secondary, -.icon-text-secondary { - color: #a73600 !important; -} -.icon-success, -.icon-text-success { - color: #336c47 !important; -} -.icon-info, -.icon-text-info { - color: #00b1e4 !important; -} -.icon-text-warning, -.icon-warning { - color: #d63a00 !important; -} -.icon-danger, -.icon-text-danger { - color: #a72d66 !important; -} -.icon-light, -.icon-text-light { - color: #717b90 !important; -} -.icon-dark, -.icon-text-dark { - color: #000 !important; -} -.icon-orange, -.icon-text-orange { - color: #a73600 !important; -} -.icon-purple, -.icon-text-purple { - color: #18113d !important; -} -.icon-skyblue, -.icon-text-skyblue { - color: #043d6f !important; -} -.icon-light-gray, -.icon-text-light-gray { - color: #8b95ca !important; -} -@media (max-width: 991px) { - .profile-info:before { - display: none; - } -} -@media (max-width: 575px) { - .card-profile { - margin-top: -70px; - } -} -@media (max-width: 479px) { - .profile-overly h3 { - font-size: 14px; - } -} -@media (max-width: 379px) { - .profile-tab.nav-pills .nav-item { - width: 100%; - } - .profile-tab.nav-pills .nav-item .nav-link { - margin: 0; - } -} -.vactormap-height { - width: 100%; - height: 400px; -} -.jvectormap-legend-title { - font-size: 12px; -} -.jvectormap-legend .jvectormap-legend-tick-sample { - height: 26px; -} -.jvectormap-legend-icons { - background: #fff; - border: 1px solid #000; - color: #000; -} -.subscriber-detail .title { - padding: 5px 20px; - line-height: 26px; -} -.subscriber-detail .iq-card-btn { - position: absolute; - top: 0; - left: -15px; - margin: 0 auto; - border: 4px solid #fff; - padding: 2px; - height: 40px; - width: 40px; - line-height: 22px; - font-size: 20px; -} -.subscriber-detail .iq-card-btn.title-instagram { - background-color: #d6249f !important; - background: radial-gradient( - circle at 30% 107%, - #fdf497 0, - #fdf497 5%, - #fd5949 45%, - #d6249f 60%, - #285aeb 90% - ) !important; - color: #fff; -} -.subscriber-detail .iq-card-btn.title-whatsapp { - background-color: #00e676 !important; - color: #fff; - text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.22); -} -.subscriber-detail .iq-card-btn.title-twitter { - background-color: #1da1f2 !important; - color: #fff; -} -.subscriber-detail .iq-card-btn.title-facebook { - background-color: #3b5998 !important; - background-image: linear-gradient(#4e69a2, #3b5998 50%) !important; - color: #fff; -} -.add-form-list .form-control.image-file { - line-height: 26px; -} -.bootstrap-select .dropdown-toggle { - padding: 0.375rem 0.75rem; - font-size: 14px; - height: 45px; - line-height: 45px; - border: 1px solid #dcdfe8; - border-radius: 10px; -} -.bootstrap-select .dropdown-toggle .filter-option-inner-inner { - font-weight: 400; - color: #676e8a; -} -.bootstrap-select .dropdown-toggle:focus { - outline: unset !important; -} -.bootstrap-select .dropdown-menu { - border: 1px solid #dcdfe8; - box-shadow: none; -} -.bootstrap-select .dropdown-menu li a:hover { - background-color: #fff; -} -.bootstrap-select .dropdown-menu li a.active { - background-color: #fff; - color: #110a57; -} -.bootstrap-select .dropdown-menu .inner { - border: unset; -} -.dataTables_wrapper .dataTables_length { - margin-bottom: 20px; -} -@media (max-width: 790px) { - .add-list { - margin-top: 20px; - } -} -.ui-kit .iq-top-navbar { - width: 100%; - padding: 0 15px; -} -.ui-kit .content-page { - margin: 0; -} -.ui-kit .iq-footer { - width: 100%; - margin: 0; -} -.ui-kit .header-logo { - display: flex; - align-items: flex-start; -} -.ui-kit .header-logo img { - height: 25px; -} -.ui-kit .section-content { - padding: 50px 0; -} -.ui-kit .section-content .buttons button { - margin-right: 10px; -} -.ui-kit .section-content .content-shadow-input { - background: #f4f5fa; - padding: 50px 0; - margin-bottom: 50px; -} -.ui-kit .section-content .form-control-alt { - box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.2); - border: 0; - transition: all 0.15s ease-in-out; -} -.dataTables_length label select { - margin: 0 8px; - padding: 3px; -} -.dataTables_filter input { - padding: 0 10px; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button.current { - padding: 0 10px; - color: #01041b !important; -} -.dataTables_wrapper .dataTables_info { - padding-top: 20px !important; -} -.dataTables_wrapper .dataTables_paginate { - padding-top: 15px !important; -} -.dataTables_wrapper .dataTables_filter { - margin-bottom: 20px; -} -.data-table .badge { - padding: 8px 10px; -} -.chat-page img { - border-radius: 10px; -} -#chat-search { - padding-left: 40px; -} -.form-group.chat-search-data > i { - position: absolute; - top: 8px; - left: 15px; - color: #32bdea; - font-size: 16px; -} -.chat-sidebar-name { - width: 100%; -} -.chat-sidebar-name h6 { - font-size: 14px; -} -.chat-sidebar-name span { - color: #676e8a; -} -.chat-msg-counter { - height: 15px; - width: 15px; - border-radius: 50%; - line-height: 16px; - margin: 0 auto; - font-size: 7px; -} -.chat-meta span { - font-size: 8px; -} -span.avatar-status { - position: absolute; - bottom: -10px; - top: auto; - left: auto; - right: -3px; -} -.iq-chat-ui li a { - text-decoration: none; - display: block; - padding: 15px 0; - border-bottom: 1px solid #dcdfe8; -} -.iq-chat-ui li a.active { - border-color: transparent; -} -.iq-chat-ui li:last-child a, -.iq-chat-ui li:nth-child(2) a, -.iq-chat-ui li:nth-child(6) a { - border: none; -} -.nav-pills li a.active { - color: #32bdea; - background-color: #88dffb; -} -.chat-sidebar-channel { - overflow-y: scroll; - overflow-x: hidden; - height: 53vh; - margin-bottom: 15px; -} -.chat-sidebar-channel .avatar { - position: relative; -} -.chat-sidebar-channel h5 { - border-bottom: 1px solid #dcdfe8; - padding-bottom: 10px; -} -.chat-data { - background: #88dffb; -} -.chat-data .tab-content { - position: relative; -} -.chat-header-icons .dropdown-toggle:empty:after { - display: none; -} -.chat-header-icons > a, -.chat-header-icons > span { - width: 40px; - height: 40px; - font-size: 20px; - margin: 0 5px 0 0; - color: #32bdea; - display: inline-block; - text-align: center; - line-height: 40px; - border-radius: 10px; - cursor: pointer; -} -.chat-content { - position: relative; - height: calc(100vh - 20rem); - text-align: center; - padding: 1.4rem; - overflow-y: scroll; - overflow-x: hidden; -} -.chat-content .chat-left .chat-message { - text-align: left; - float: left; - margin: 0 0.3rem 1.8rem 1.3rem; - color: #676e8a; - background-color: #fff; - -ms-box-shadow: 0 0 20px 0 rgba(44, 101, 144, 0.1); - -o-box-shadow: 0 0 20px 0 rgba(44, 101, 144, 0.1); - box-shadow: 0 0 20px 0 rgba(44, 101, 144, 0.1); -} -.chat-content .chat-body .chat-message p { - margin-bottom: 0; -} -.chat-button { - background: #fff; - color: #110a57; -} -.chat-button:hover { - background: #32bdea; - color: #fff; -} -.chat-user { - float: right; - text-align: center; -} -.chat-user span.chat-time { - display: block; - font-size: 12px; - font-weight: 500; -} -.chat-detail { - overflow: hidden; -} -.chat-detail .chat-message .chat-time { - position: absolute; - bottom: -20px; - right: 0; - color: #676e8a; - font-size: 0.8rem; - white-space: nowrap; -} -.chat-message { - position: relative; - float: right; - text-align: right; - padding: 0.75rem 1rem; - margin: 0 1.33rem 1.33rem 0.3rem; - clear: both; - word-break: break-word; - color: #fff; - background: #32bdea; - border-radius: 10px; - -ms-box-shadow: 0 2px 4px 0 #50b5ff; - -o-box-shadow: 0 2px 4px 0 #50b5ff; - box-shadow: 0 2px 4px 0 #50b5ff; -} -.chat-message > p { - margin: 0; -} -.chat-left .chat-message:after { - right: auto; - left: -7px; - border-width: 5px 7px 5px 0; - border-color: transparent #fff transparent transparent; -} -.chat-left .chat-user { - float: left; -} -.avatar { - position: relative; -} -.chat-start { - display: flex; - justify-content: center; - align-items: center; - height: 100%; - flex-direction: column; -} -.chat-page .content-page { - min-height: 93vh; -} -span.iq-start-icon { - font-size: 50px; - background: #fff; - width: 80px; - height: 80px; - line-height: 80px; - text-align: center; - border-radius: 50%; -} -.chat-attagement { - font-size: 20px; -} -.chat-attagement a { - color: #676e8a; -} -.chat-searchbar { - position: relative; -} -.chat-user-detail-popup { - position: absolute; - top: 0; - width: 360px; - background: #fff; - right: 0; - overflow: hidden; - left: auto; - z-index: 9; - height: 100%; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - transform: translateX(110%); - transition: all 0.3s ease-in-out; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - border-radius: 10px; - visibility: hidden; -} -.chat-user-detail-popup.show { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - visibility: visible; - transform: translateX(0); - transition: all 0.3s ease-in-out; -} -.chatuser-detail { - padding: 0 35px; -} -.chatuser-detail .title { - font-weight: 500; -} -.user-profile button.close-popup { - display: block; - font-size: 24px; -} -ul.user-status { - list-style: none; -} -#user-detail-popup { - position: absolute; - top: 0; - background: #fff; - right: 0; - overflow: hidden; - left: auto; - z-index: 9; - height: 100%; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - transform: translateX(-90%); - transition: all 0.3s ease-in-out; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - border-radius: 10px; - visibility: hidden; -} -#user-detail-popup .user-profile button.close-popup { - text-align: right; - width: 100%; -} -#user-detail-popup.show { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - visibility: visible; - transform: translateX(0); - transition: all 0.3s ease-in-out; -} -button.close-btn-res, -div.sidebar-toggle { - display: none; -} -@media (max-width: 991px) { - .chat-data-left { - position: absolute; - left: -15px; - max-width: 320px; - top: 0; - z-index: 9; - background: #fff; - transform: translateX(-100%); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - transition: all 0.3s ease-in-out; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - overflow-y: scroll; - height: 100%; - } - .chat-sidebar-channel { - overflow: auto; - height: auto; - } - .chat-search, - .chat-sidebar-channel { - padding-left: 0 !important; - } - .chat-data-left.show { - transform: translateX(0); - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - transition: all 0.3s ease-in-out; - } - button.close-btn-res { - display: block; - background: transparent; - border: none; - font-size: 20px; - font-weight: 600; - position: absolute; - top: 10px; - left: auto; - right: 0; - } - .chat-head header { - padding-left: 15px; - } - #chat-user-detail-popup { - overflow-y: scroll; - padding-bottom: 20px; - } - #user-detail-popup { - overflow: scroll; - } - div.sidebar-toggle { - display: block; - } - .sidebar-toggle { - background: #88dffb; - padding: 12px 10px; - margin-right: 15px; - border-radius: 10px; - height: 40px; - width: 40px; - line-height: 17px; - text-align: center; - color: #32bdea; - } - .chat-page .content-page { - min-height: 90vh; - } - .chat-page .chat-start { - height: 74vh; - } -} -@media (max-width: 767px) { - .chat-user-detail-popup { - width: 250px; - } -} -@media (max-width: 479px) { - .chat-head header { - overflow-x: scroll; - } -} -.iq-todo-page .search-link { - position: absolute; - top: 0; - left: 10px; - font-size: 18px; - line-height: 43px; - color: #676e8a; -} -.iq-todo-page .todo-search { - padding-left: 35px; -} -.iq-todo-page ul { - list-style: none; -} -.iq-todo-page ul li a { - color: #676e8a; - text-decoration: none; -} -.iq-todo-page ul ul li a { - padding-left: 25px; -} -.iq-todo-page ul > li > a { - padding: 10px 15px; - display: block; - border-radius: 10px; -} -.iq-todo-page ul > li[aria-expanded="true"] > a, -.iq-todo-page ul > li li.active a, -.iq-todo-page ul > li li:hover a { - color: #32bdea; - background: #88dffb; -} -.iq-todo-right .search-link { - position: absolute; - top: 0; - left: 10px; - font-size: 18px; - line-height: 43px; - color: #676e8a; -} -.iq-todo-right .todo-search { - padding-left: 35px; -} -.add-new-project > a { - padding: 0 15px; - color: #676e8a; - text-transform: capitalize; - text-decoration: none; -} -.notification-icon > span { - height: 13px; - width: 13px; - border-radius: 50%; - line-height: 15px; - font-size: 8px; - text-align: center; - position: absolute; - top: -5px; - left: auto; - right: -8px; -} -.todo-date { - font-size: 16px; -} -ul.todo-task-lists li:hover { - background: #88dffb; - transition: all 0.3s ease-in-out; -} -ul.todo-task-lists li.active-task { - background: #88dffb; -} -.media-support-info p { - line-height: normal; -} -.todo-task-list .sub-task { - display: none; -} -.todo-task-list .sub-task.show { - display: block; -} -.iq-email-list .iq-email-ui { - margin: 0; - padding: 0; -} -.iq-email-list .iq-email-ui li { - font-size: 16px; - color: #676e8a; - margin-bottom: 3px; - list-style-type: none; -} -.iq-email-list .iq-email-ui li:last-child { - margin-bottom: 0; -} -.iq-email-list .iq-email-ui li a { - color: #676e8a; - padding: 0; - display: inline-block; - width: 100%; - border-radius: 10px; - transition: all 0.3s ease-in-out; -} -.iq-email-list .iq-email-ui li a:hover { - text-decoration: none; - color: #32bdea; -} -.iq-email-list .iq-email-ui li i { - margin-right: 10px; -} -.iq-email-list .iq-email-ui li .badge { - float: right; - font-weight: 400; - margin-top: 3px; -} -.iq-email-list .iq-email-ui li.active a { - text-decoration: none; - color: #32bdea; -} -.iq-email-list .iq-email-ui.iq-email-label li { - margin-bottom: 10px; -} -.iq-email-list .iq-email-ui.iq-email-label li:last-child { - margin-bottom: 0; -} -.iq-email-to-list ul { - margin: 0; - padding: 0; -} -.iq-email-to-list ul li { - list-style-type: none; - font-size: 20px; - color: #676e8a; - margin: 0 5px 0 0; - float: left; -} -.iq-email-to-list ul li:first-child a { - background: none; - width: auto; -} -.iq-email-to-list ul li > a { - color: #32bdea; - text-align: center; - line-height: 38px; - display: inline-block; - font-size: 14px; - width: 40px; - height: 40px; - border-radius: 10px; - transition: all 0.3s ease-in-out; - background: #88dffb; -} -.iq-email-to-list ul li a:hover { - color: #32bdea; - text-decoration: none; -} -.iq-email-to-list ul li .custom-control-label:before { - top: 13px; - left: -20px; -} -.iq-email-to-list ul li.q-list a:hover { - color: #32bdea; - text-decoration: none; -} -.iq-email-search { - position: relative; -} -.iq-email-search .form-control { - height: 40px; - border: 1px solid #dcdfe8; - width: 170px; -} -.iq-email-search .search-link { - position: absolute; - top: 0; - right: 15px; - font-size: 18px; - line-height: 38px; - color: #32bdea; -} -.iq-email-search .search-link:hover { - text-decoration: none; -} -.iq-email-listbox .iq-email-sender-list { - margin: 15px 0 0; - padding: 0; - display: inline-block; - width: 100%; - overflow: hidden; -} -.iq-email-listbox .iq-email-sender-list > li { - list-style-type: none; - position: relative; - padding: 15px 20px; - border-top: 1px solid #dcdfe8; - display: inline-block; - width: 100%; - transition: all 0.3s ease-in-out; -} -.iq-email-listbox .iq-email-sender-list > li:hover { - background: #fff; - -ms-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - -o-box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); - box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.0392157); -} -.iq-email-listbox .iq-email-sender-list li a:hover { - text-decoration: none; -} -.iq-email-listbox .iq-email-sender-list li:hover .iq-social-media { - right: 0; -} -.iq-email-listbox .iq-email-sender-list li.iq-unread a { - color: #32bdea; - font-weight: 500; -} -.iq-email-listbox .iq-email-sender-list li.iq-unread li a { - color: #32bdea; -} -.iq-email-sender-info .iq-checkbox-mail { - display: block; - float: left; - cursor: pointer; - height: 20px; - width: 20px; - margin-top: 4px; -} -.iq-email-sender-info .iq-star-toggle { - display: block; - float: left; - color: #676e8a; - margin-left: 10px; - font-size: 18px; -} -.iq-email-sender-info .iq-email-title { - color: #676e8a; - position: absolute; - top: 0; - left: 85px; - right: 0; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; - margin-bottom: 0; - line-height: 62px; -} -.iq-email-content { - position: absolute; - top: 0; - left: 300px; - right: 0; - bottom: 0; - line-height: 62px; -} -.iq-email-content .iq-email-date { - position: absolute; - top: 0; - right: 20px; - width: 100px; - text-align: right; - padding-left: 10px; - color: #676e8a; -} -.iq-email-content .iq-email-subject { - position: absolute; - top: 0; - color: #676e8a; - left: 0; - right: 110px; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; -} -.iq-email-sender-list .iq-social-media { - position: absolute; - line-height: 62px; - right: -220px; - top: 0; - bottom: 0; - background: #fff; - font-size: 18px; - padding: 0 30px; - transition: all 0.3s ease-in-out; -} -.iq-inbox-details tr td { - padding: 5px 10px; -} -.iq-inbox-details tr td:first-child { - width: 75px; - color: #676e8a; -} -.iq-subject-info { - display: flex; - align-items: flex-start; -} -.iq-subject-status { - margin-left: 15px; - flex: 1; -} -.email-app-details.show { - visibility: visible; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - transform: translateX(0); -} -.email-app-details { - position: absolute; - display: block; - z-index: 6; - visibility: hidden; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - top: 0; - width: 100%; - transform: translateX(100%); - transition: all 0.3s ease-in-out; - height: 100%; - left: auto; - right: 0; - border-radius: 30px; -} -.email-app-details .card { - height: 100%; -} -.attegement ul { - padding: 0; - list-style: none; -} -.send-panel a { - height: 30px; - width: 30px; - text-align: center; - font-size: 18px; - line-height: 30px; - display: inline-block; - border-radius: 10px; - cursor: pointer; -} -.send-panel label { - margin-bottom: 0; -} -#compose-email-popup { - position: fixed; - max-width: 700px; - left: auto; - right: 0; - top: auto; - bottom: 0; - padding: 0 !important; - max-height: 555px; - width: 100%; - overflow-y: scroll; - overflow-x: hidden; -} -#compose-email-popup .iq-card { - border-radius: 10px 10px 0 0; -} -button.close-popup { - background: transparent; - color: #000; - border: none; - font-size: 20px; - line-height: 20px; -} -.compose-bottom { - border-top: 1px solid #676e8a; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #32bdea; - background: #88dffb; -} -.iq-social-media li { - list-style: none; - float: left; - margin-right: 10px; -} -.iq-social-media li a { - height: 30px; - width: 30px; - text-align: center; - font-size: 18px; - line-height: 30px; - display: inline-block; - border-radius: 10px; - color: #32bdea !important; -} -@media (max-width: 1699px) { - .email-form .select2-container { - width: 100% !important; - } -} -@media (max-width: 1199px) { - .iq-email-to-list { - overflow-x: scroll; - overflow-y: hidden; - } - .iq-email-to-list ul li { - margin: 0 5px 0 0; - } - .iq-email-to-list .justify-content-between { - float: left; - width: 900px; - } -} -@media (max-width: 479px) { - .send-buttons { - display: block !important; - } - .send-buttons .send-btn { - padding-left: 5px !important; - margin-bottom: 15px; - } -} -@media (max-width: 320px) { - .send-panel label { - margin-bottom: 8px; - } -} -.iq-icon-box-2 { - height: 60px; - width: 60px; - line-height: 55px; - text-align: center; - margin-right: 20px; - font-size: 26px; - border-radius: 10px; -} -.card-total-sale img { - max-height: 34px; -} -.layout-chart-1 { - position: relative; -} -.layout-chart-1:before { - content: ""; - height: 20px; - width: 20px; - border: 5px solid #ff7e41; - background: #fff; - border-radius: 50%; - position: absolute; - top: 20px; - right: 0; - z-index: 9; -} -.layout-chart-2 { - position: relative; -} -.layout-chart-2:before { - content: ""; - height: 20px; - width: 20px; - border: 5px solid #32bdea; - background: #fff; - border-radius: 50%; - position: absolute; - top: 20px; - right: 0; - z-index: 9; -} -.card-header .view-btn.light-gray { - background: #f4f5fa; -} -.progress.progress-round.conversation-bar { - width: 68px; - height: 68px; - line-height: 68px; -} -#layout1-chart-5 .apexcharts-legend { - margin-top: -10px !important; - inset: auto 0 0 !important; -} -.top-product .card-body { - padding: 20px !important; -} -.card-item-right img { - padding: 14px; -} -.card-item-right .style-text { - margin-left: 20px; -} -.card .card-header.order-detail { - padding-top: 30px; -} -i { - vertical-align: middle; -} -.top-product.slick-slider { - margin: 0 -10px; -} -.top-product.slick-slider .slick-slide { - padding: 0 10px; -} -@media (max-width: 533px) { - .progress-order-right { - margin-left: 10px !important; - } - .progress-value { - padding-right: 10px !important; - } -} -@media (max-width: 470px) { - .progress-order-right { - margin-left: 0 !important; - margin-top: 20px; - } - .progress-value { - padding-right: 20px !important; - border: 0 !important; - } - .card-item-right .style-text { - margin-left: 10px; - } -} -.slick-slider { - box-sizing: border-box; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-touch-callout: none; - -khtml-user-select: none; - -ms-touch-action: pan-y; - touch-action: pan-y; - -webkit-tap-highlight-color: transparent; -} -.slick-list, -.slick-slider { - position: relative; - display: block; -} -.slick-list { - overflow: hidden; - margin: 0; - padding: 0; -} -.slick-list:focus { - outline: none; -} -.slick-list.dragging { - cursor: pointer; - cursor: hand; -} -.slick-slider .slick-list, -.slick-slider .slick-track { - transform: translateZ(0); -} -.slick-track { - position: relative; - top: 0; - left: 0; - display: block; - margin-left: auto; - margin-right: auto; -} -.slick-track:after, -.slick-track:before { - display: table; - content: ""; -} -.slick-track:after { - clear: both; -} -.slick-loading .slick-track { - visibility: hidden; -} -.slick-slide { - display: none; - float: left; - height: 100%; - min-height: 1px; -} -[dir="rtl"] .slick-slide { - float: right; -} -.slick-slide img { - display: block; -} -.slick-slide.slick-loading img { - display: none; -} -.slick-slide.dragging img { - pointer-events: none; -} -.slick-initialized .slick-slide { - display: block; -} -.slick-loading .slick-slide { - visibility: hidden; -} -.slick-vertical .slick-slide { - display: block; - height: auto; - border: 1px solid transparent; -} -.slick-arrow.slick-hidden { - display: none; -} -.slick-loading .slick-list { - background: #fff url(ajax-loader.gif) 50% no-repeat; -} -@font-face { - font-family: slick; - font-weight: 400; - font-style: normal; - src: url(fonts/slick.eot); - src: url(fonts/slick.eot?#iefix) format("embedded-opentype"), - url(fonts/slick.woff) format("woff"), - url(fonts/slick.ttf) format("truetype"), - url(fonts/slick.svg#slick) format("svg"); -} -.slick-next, -.slick-prev { - font-size: 0; - line-height: 0; - position: absolute; - top: 50%; - display: block; - width: 20px; - height: 20px; - padding: 0; - transform: translateY(-50%); - cursor: pointer; - border: none; -} -.slick-next, -.slick-next:focus, -.slick-next:hover, -.slick-prev, -.slick-prev:focus, -.slick-prev:hover { - color: transparent; - outline: none; - background: transparent; -} -.slick-next:focus:before, -.slick-next:hover:before, -.slick-prev:focus:before, -.slick-prev:hover:before { - opacity: 1; -} -.slick-next.slick-disabled:before, -.slick-prev.slick-disabled:before { - opacity: 0.25; -} -.slick-next:before, -.slick-prev:before { - font-family: slick; - font-size: 20px; - line-height: 1; - opacity: 0.75; - color: #fff; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.slick-prev { - left: -25px; -} -[dir="rtl"] .slick-prev { - right: -25px; - left: auto; -} -.slick-prev:before { - content: "←"; -} -[dir="rtl"] .slick-prev:before { - content: "→"; -} -.slick-next { - right: -25px; -} -[dir="rtl"] .slick-next { - right: auto; - left: -25px; -} -.slick-next:before { - content: "→"; -} -[dir="rtl"] .slick-next:before { - content: "←"; -} -.slick-dotted.slick-slider { - margin-bottom: 30px; -} -.slick-dots { - position: absolute; - bottom: -25px; - display: block; - width: 100%; - padding: 0; - margin: 0; - list-style: none; - text-align: center; -} -.slick-dots li { - position: relative; - display: inline-block; - margin: 0 5px; - padding: 0; -} -.slick-dots li, -.slick-dots li button { - width: 20px; - height: 20px; - cursor: pointer; -} -.slick-dots li button { - font-size: 0; - line-height: 0; - display: block; - padding: 5px; - color: transparent; - border: 0; - outline: none; - background: transparent; -} -.slick-dots li button:focus, -.slick-dots li button:hover { - outline: none; -} -.slick-dots li button:focus:before, -.slick-dots li button:hover:before { - opacity: 1; -} -.slick-dots li button:before { - font-family: slick; - font-size: 6px; - line-height: 20px; - position: absolute; - top: 0; - left: 0; - width: 20px; - height: 20px; - content: "•"; - text-align: center; - opacity: 0.25; - color: #000; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.slick-dots li.slick-active button:before { - opacity: 0.75; - color: #000; -} -.mfp-bg { - z-index: 1042; - overflow: hidden; - background: #0b0b0b; - opacity: 0.8; -} -.mfp-bg, -.mfp-wrap { - top: 0; - left: 0; - width: 100%; - height: 100%; - position: fixed; -} -.mfp-wrap { - z-index: 1043; - outline: none !important; - -webkit-backface-visibility: hidden; -} -.mfp-container { - text-align: center; - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - padding: 0 8px; - box-sizing: border-box; -} -.mfp-container:before { - content: ""; - display: inline-block; - height: 100%; - vertical-align: middle; -} -.mfp-align-top .mfp-container:before { - display: none; -} -.mfp-content { - position: relative; - display: inline-block; - vertical-align: middle; - margin: 0 auto; - text-align: left; - z-index: 1045; -} -.mfp-ajax-holder .mfp-content, -.mfp-inline-holder .mfp-content { - width: 100%; - cursor: auto; -} -.mfp-ajax-cur { - cursor: progress; -} -.mfp-zoom-out-cur, -.mfp-zoom-out-cur .mfp-image-holder .mfp-close { - cursor: zoom-out; -} -.mfp-zoom { - cursor: pointer; - cursor: zoom-in; -} -.mfp-auto-cursor .mfp-content { - cursor: auto; -} -.mfp-arrow, -.mfp-close, -.mfp-counter, -.mfp-preloader { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; -} -.mfp-loading.mfp-figure { - display: none; -} -.mfp-hide { - display: none !important; -} -.mfp-preloader { - color: #ccc; - position: absolute; - top: 50%; - width: auto; - text-align: center; - margin-top: -0.8em; - left: 8px; - right: 8px; - z-index: 1044; -} -.mfp-preloader a { - color: #ccc; -} -.mfp-preloader a:hover { - color: #fff; -} -.mfp-s-error .mfp-content, -.mfp-s-ready .mfp-preloader { - display: none; -} -button.mfp-arrow, -button.mfp-close { - overflow: visible; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - display: block; - outline: none; - padding: 0; - z-index: 1046; - box-shadow: none; - touch-action: manipulation; -} -button::-moz-focus-inner { - padding: 0; - border: 0; -} -.mfp-close { - width: 44px; - height: 44px; - line-height: 44px; - position: absolute; - right: 0; - top: 0; - text-decoration: none; - text-align: center; - opacity: 0.65; - padding: 0 0 18px 10px; - color: #fff; - font-style: normal; - font-size: 28px; - font-family: Arial, Baskerville, monospace; -} -.mfp-close:focus, -.mfp-close:hover { - opacity: 1; -} -.mfp-close:active { - top: 1px; -} -.mfp-close-btn-in .mfp-close { - color: #333; -} -.mfp-iframe-holder .mfp-close, -.mfp-image-holder .mfp-close { - color: #fff; - right: -6px; - text-align: right; - padding-right: 6px; - width: 100%; -} -.mfp-counter { - position: absolute; - top: 0; - right: 0; - color: #ccc; - font-size: 12px; - line-height: 18px; - white-space: nowrap; -} -.mfp-arrow { - position: absolute; - opacity: 0.65; - margin: 0; - top: 50%; - margin-top: -55px; - padding: 0; - width: 90px; - height: 110px; - -webkit-tap-highlight-color: transparent; -} -.mfp-arrow:active { - margin-top: -54px; -} -.mfp-arrow:focus, -.mfp-arrow:hover { - opacity: 1; -} -.mfp-arrow:after, -.mfp-arrow:before { - content: ""; - display: block; - width: 0; - height: 0; - position: absolute; - left: 0; - top: 0; - margin-top: 35px; - margin-left: 35px; - border: medium inset transparent; -} -.mfp-arrow:after { - border-top-width: 13px; - border-bottom-width: 13px; - top: 8px; -} -.mfp-arrow:before { - border-top-width: 21px; - border-bottom-width: 21px; - opacity: 0.7; -} -.mfp-arrow-left { - left: 0; -} -.mfp-arrow-left:after { - border-right: 17px solid #fff; - margin-left: 31px; -} -.mfp-arrow-left:before { - margin-left: 25px; - border-right: 27px solid #3f3f3f; -} -.mfp-arrow-right { - right: 0; -} -.mfp-arrow-right:after { - border-left: 17px solid #fff; - margin-left: 39px; -} -.mfp-arrow-right:before { - border-left: 27px solid #3f3f3f; -} -.mfp-iframe-holder { - padding-top: 40px; - padding-bottom: 40px; -} -.mfp-iframe-holder .mfp-content { - line-height: 0; - width: 100%; - max-width: 900px; -} -.mfp-iframe-holder .mfp-close { - top: -40px; -} -.mfp-iframe-scaler { - width: 100%; - height: 0; - overflow: hidden; - padding-top: 56.25%; -} -.mfp-iframe-scaler iframe { - position: absolute; - display: block; - top: 0; - left: 0; - width: 100%; - height: 100%; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #000; -} -img.mfp-img { - width: auto; - max-width: 100%; - height: auto; - display: block; - box-sizing: border-box; - padding: 40px 0; - margin: 0 auto; -} -.mfp-figure, -img.mfp-img { - line-height: 0; -} -.mfp-figure:after { - content: ""; - position: absolute; - left: 0; - top: 40px; - bottom: 40px; - display: block; - right: 0; - width: auto; - height: auto; - z-index: -1; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #444; -} -.mfp-figure small { - color: #bdbdbd; - display: block; - font-size: 12px; - line-height: 14px; -} -.mfp-figure figure { - margin: 0; -} -.mfp-bottom-bar { - margin-top: -36px; - position: absolute; - top: 100%; - left: 0; - width: 100%; - cursor: auto; -} -.mfp-title { - text-align: left; - line-height: 18px; - color: #f3f3f3; - word-wrap: break-word; - padding-right: 36px; -} -.mfp-image-holder .mfp-content { - max-width: 100%; -} -.mfp-gallery .mfp-image-holder .mfp-figure { - cursor: pointer; -} -@media screen and (max-height: 300px), - screen and (max-width: 800px) and (orientation: landscape) { - .mfp-img-mobile .mfp-image-holder { - padding-left: 0; - padding-right: 0; - } - .mfp-img-mobile img.mfp-img { - padding: 0; - } - .mfp-img-mobile .mfp-figure:after { - top: 0; - bottom: 0; - } - .mfp-img-mobile .mfp-figure small { - display: inline; - margin-left: 5px; - } - .mfp-img-mobile .mfp-bottom-bar { - background: rgba(0, 0, 0, 0.6); - bottom: 0; - margin: 0; - top: auto; - padding: 3px 5px; - position: fixed; - box-sizing: border-box; - } - .mfp-img-mobile .mfp-bottom-bar:empty { - padding: 0; - } - .mfp-img-mobile .mfp-counter { - right: 5px; - top: 3px; - } - .mfp-img-mobile .mfp-close { - top: 0; - right: 0; - width: 35px; - height: 35px; - line-height: 35px; - background: rgba(0, 0, 0, 0.6); - position: fixed; - text-align: center; - padding: 0; - } -} -@media (max-width: 900px) { - .mfp-arrow { - transform: scale(0.75); - } - .mfp-arrow-left { - transform-origin: 0; - } - .mfp-arrow-right { - transform-origin: 100%; - } - .mfp-container { - padding-left: 6px; - padding-right: 6px; - } -} -.select2-container { - box-sizing: border-box; - display: inline-block; - margin: 0; - position: relative; - vertical-align: middle; -} -.select2-container .select2-selection--single { - box-sizing: border-box; - cursor: pointer; - display: block; - height: 28px; - user-select: none; - -webkit-user-select: none; -} -.select2-container .select2-selection--single .select2-selection__rendered { - display: block; - padding-left: 8px; - padding-right: 20px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.select2-container .select2-selection--single .select2-selection__clear { - position: relative; -} -.select2-container[dir="rtl"] - .select2-selection--single - .select2-selection__rendered { - padding-right: 8px; - padding-left: 20px; -} -.select2-container .select2-selection--multiple { - box-sizing: border-box; - cursor: pointer; - display: block; - min-height: 32px; - user-select: none; - -webkit-user-select: none; -} -.select2-container .select2-selection--multiple .select2-selection__rendered { - display: inline-block; - overflow: hidden; - padding-left: 8px; - text-overflow: ellipsis; - white-space: nowrap; -} -.select2-container .select2-search--inline { - float: left; -} -.select2-container .select2-search--inline .select2-search__field { - box-sizing: border-box; - border: none; - font-size: 100%; - margin-top: 5px; - padding: 0; -} -.select2-container - .select2-search--inline - .select2-search__field::-webkit-search-cancel-button { - -webkit-appearance: none; -} -.select2-dropdown { - background-color: #fff; - border: 1px solid #aaa; - border-radius: 4px; - box-sizing: border-box; - display: block; - position: absolute; - left: -100000px; - width: 100%; - z-index: 2; -} -.select2-results { - display: block; -} -.select2-results__options { - list-style: none; - margin: 0; - padding: 0; -} -.select2-results__option { - padding: 6px; - user-select: none; - -webkit-user-select: none; -} -.select2-results__option[aria-selected] { - cursor: pointer; -} -.select2-container--open .select2-dropdown { - left: 0; -} -.select2-container--open .select2-dropdown--above { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} -.select2-container--open .select2-dropdown--below { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.select2-search--dropdown { - display: block; - padding: 4px; -} -.select2-search--dropdown .select2-search__field { - padding: 4px; - width: 100%; - box-sizing: border-box; -} -.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { - -webkit-appearance: none; -} -.select2-search--dropdown.select2-search--hide { - display: none; -} -.select2-close-mask { - border: 0; - margin: 0; - padding: 0; - display: block; - position: fixed; - left: 0; - top: 0; - min-height: 100%; - min-width: 100%; - height: auto; - width: auto; - opacity: 0; - z-index: 1; - background-color: #fff; - filter: alpha(opacity=0); -} -.select2-hidden-accessible { - border: 0 !important; - clip: rect(0 0 0 0) !important; - -webkit-clip-path: inset(50%) !important; - clip-path: inset(50%) !important; - height: 1px !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 1px !important; - white-space: nowrap !important; -} -.select2-container--default .select2-selection--single { - background-color: #fff; - border: 1px solid #aaa; - border-radius: 4px; -} -.select2-container--default - .select2-selection--single - .select2-selection__rendered { - color: #444; - line-height: 28px; -} -.select2-container--default - .select2-selection--single - .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: 700; -} -.select2-container--default - .select2-selection--single - .select2-selection__placeholder { - color: #999; -} -.select2-container--default - .select2-selection--single - .select2-selection__arrow { - height: 26px; - position: absolute; - top: 1px; - right: 1px; - width: 20px; -} -.select2-container--default - .select2-selection--single - .select2-selection__arrow - b { - border-color: #888 transparent transparent; - border-style: solid; - border-width: 5px 4px 0; - height: 0; - left: 50%; - margin-left: -4px; - margin-top: -2px; - position: absolute; - top: 50%; - width: 0; -} -.select2-container--default[dir="rtl"] - .select2-selection--single - .select2-selection__clear { - float: left; -} -.select2-container--default[dir="rtl"] - .select2-selection--single - .select2-selection__arrow { - left: 1px; - right: auto; -} -.select2-container--default.select2-container--disabled - .select2-selection--single { - background-color: #eee; - cursor: default; -} -.select2-container--default.select2-container--disabled - .select2-selection--single - .select2-selection__clear { - display: none; -} -.select2-container--default.select2-container--open - .select2-selection--single - .select2-selection__arrow - b { - border-color: transparent transparent #888; - border-width: 0 4px 5px; -} -.select2-container--default .select2-selection--multiple { - background-color: #fff; - border: 1px solid #aaa; - border-radius: 4px; - cursor: text; -} -.select2-container--default - .select2-selection--multiple - .select2-selection__rendered { - box-sizing: border-box; - list-style: none; - margin: 0; - padding: 0 5px; - width: 100%; -} -.select2-container--default - .select2-selection--multiple - .select2-selection__rendered - li { - list-style: none; -} -.select2-container--default - .select2-selection--multiple - .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: 700; - margin-top: 5px; - margin-right: 10px; - padding: 1px; -} -.select2-container--default - .select2-selection--multiple - .select2-selection__choice { - background-color: #e4e4e4; - border: 1px solid #aaa; - border-radius: 4px; - cursor: default; - float: left; - margin-right: 5px; - margin-top: 5px; - padding: 0 5px; -} -.select2-container--default - .select2-selection--multiple - .select2-selection__choice__remove { - color: #999; - cursor: pointer; - display: inline-block; - font-weight: 700; - margin-right: 2px; -} -.select2-container--default - .select2-selection--multiple - .select2-selection__choice__remove:hover { - color: #333; -} -.select2-container--default[dir="rtl"] - .select2-selection--multiple - .select2-search--inline, -.select2-container--default[dir="rtl"] - .select2-selection--multiple - .select2-selection__choice { - float: right; -} -.select2-container--default[dir="rtl"] - .select2-selection--multiple - .select2-selection__choice { - margin-left: 5px; - margin-right: auto; -} -.select2-container--default[dir="rtl"] - .select2-selection--multiple - .select2-selection__choice__remove { - margin-left: 2px; - margin-right: auto; -} -.select2-container--default.select2-container--focus - .select2-selection--multiple { - border: 1px solid #000; - outline: 0; -} -.select2-container--default.select2-container--disabled - .select2-selection--multiple { - background-color: #eee; - cursor: default; -} -.select2-container--default.select2-container--disabled - .select2-selection__choice__remove { - display: none; -} -.select2-container--default.select2-container--open.select2-container--above - .select2-selection--multiple, -.select2-container--default.select2-container--open.select2-container--above - .select2-selection--single { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.select2-container--default.select2-container--open.select2-container--below - .select2-selection--multiple, -.select2-container--default.select2-container--open.select2-container--below - .select2-selection--single { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} -.select2-container--default .select2-search--dropdown .select2-search__field { - border: 1px solid #aaa; -} -.select2-container--default .select2-search--inline .select2-search__field { - background: transparent; - border: none; - outline: 0; - box-shadow: none; - -webkit-appearance: textfield; -} -.select2-container--default .select2-results > .select2-results__options { - max-height: 200px; - overflow-y: auto; -} -.select2-container--default .select2-results__option[role="group"] { - padding: 0; -} -.select2-container--default .select2-results__option[aria-disabled="true"] { - color: #999; -} -.select2-container--default .select2-results__option[aria-selected="true"] { - background-color: #ddd; -} -.select2-container--default .select2-results__option .select2-results__option { - padding-left: 1em; -} -.select2-container--default - .select2-results__option - .select2-results__option - .select2-results__group { - padding-left: 0; -} -.select2-container--default - .select2-results__option - .select2-results__option - .select2-results__option { - margin-left: -1em; - padding-left: 2em; -} -.select2-container--default - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option { - margin-left: -2em; - padding-left: 3em; -} -.select2-container--default - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option { - margin-left: -3em; - padding-left: 4em; -} -.select2-container--default - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option { - margin-left: -4em; - padding-left: 5em; -} -.select2-container--default - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option - .select2-results__option { - margin-left: -5em; - padding-left: 6em; -} -.select2-container--default - .select2-results__option--highlighted[aria-selected] { - background-color: #5897fb; - color: #fff; -} -.select2-container--default .select2-results__group { - cursor: default; - display: block; - padding: 6px; -} -.select2-container--classic .select2-selection--single { - background-color: #f7f7f7; - border: 1px solid #aaa; - border-radius: 4px; - outline: 0; - background-image: linear-gradient(180deg, #fff 50%, #eee); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEEEEEE",GradientType=0); -} -.select2-container--classic .select2-selection--single:focus { - border: 1px solid #5897fb; -} -.select2-container--classic - .select2-selection--single - .select2-selection__rendered { - color: #444; - line-height: 28px; -} -.select2-container--classic - .select2-selection--single - .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: 700; - margin-right: 10px; -} -.select2-container--classic - .select2-selection--single - .select2-selection__placeholder { - color: #999; -} -.select2-container--classic - .select2-selection--single - .select2-selection__arrow { - background-color: #ddd; - border: none; - border-left: 1px solid #aaa; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - height: 26px; - position: absolute; - top: 1px; - right: 1px; - width: 20px; - background-image: linear-gradient(180deg, #eee 50%, #ccc); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFCCCCCC",GradientType=0); -} -.select2-container--classic - .select2-selection--single - .select2-selection__arrow - b { - border-color: #888 transparent transparent; - border-style: solid; - border-width: 5px 4px 0; - height: 0; - left: 50%; - margin-left: -4px; - margin-top: -2px; - position: absolute; - top: 50%; - width: 0; -} -.select2-container--classic[dir="rtl"] - .select2-selection--single - .select2-selection__clear { - float: left; -} -.select2-container--classic[dir="rtl"] - .select2-selection--single - .select2-selection__arrow { - border: none; - border-right: 1px solid #aaa; - border-radius: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - left: 1px; - right: auto; -} -.select2-container--classic.select2-container--open .select2-selection--single { - border: 1px solid #5897fb; -} -.select2-container--classic.select2-container--open - .select2-selection--single - .select2-selection__arrow { - background: transparent; - border: none; -} -.select2-container--classic.select2-container--open - .select2-selection--single - .select2-selection__arrow - b { - border-color: transparent transparent #888; - border-width: 0 4px 5px; -} -.select2-container--classic.select2-container--open.select2-container--above - .select2-selection--single { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; - background-image: linear-gradient(180deg, #fff 0, #eee 50%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEEEEEE",GradientType=0); -} -.select2-container--classic.select2-container--open.select2-container--below - .select2-selection--single { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - background-image: linear-gradient(180deg, #eee 50%, #fff); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFFFFFFF",GradientType=0); -} -.select2-container--classic .select2-selection--multiple { - background-color: #fff; - border: 1px solid #aaa; - border-radius: 4px; - cursor: text; - outline: 0; -} -.select2-container--classic .select2-selection--multiple:focus { - border: 1px solid #5897fb; -} -.select2-container--classic - .select2-selection--multiple - .select2-selection__rendered { - list-style: none; - margin: 0; - padding: 0 5px; -} -.select2-container--classic - .select2-selection--multiple - .select2-selection__clear { - display: none; -} -.select2-container--classic - .select2-selection--multiple - .select2-selection__choice { - background-color: #e4e4e4; - border: 1px solid #aaa; - border-radius: 4px; - cursor: default; - float: left; - margin-right: 5px; - margin-top: 5px; - padding: 0 5px; -} -.select2-container--classic - .select2-selection--multiple - .select2-selection__choice__remove { - color: #888; - cursor: pointer; - display: inline-block; - font-weight: 700; - margin-right: 2px; -} -.select2-container--classic - .select2-selection--multiple - .select2-selection__choice__remove:hover { - color: #555; -} -.select2-container--classic[dir="rtl"] - .select2-selection--multiple - .select2-selection__choice { - float: right; - margin-left: 5px; - margin-right: auto; -} -.select2-container--classic[dir="rtl"] - .select2-selection--multiple - .select2-selection__choice__remove { - margin-left: 2px; - margin-right: auto; -} -.select2-container--classic.select2-container--open - .select2-selection--multiple { - border: 1px solid #5897fb; -} -.select2-container--classic.select2-container--open.select2-container--above - .select2-selection--multiple { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.select2-container--classic.select2-container--open.select2-container--below - .select2-selection--multiple { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} -.select2-container--classic .select2-search--dropdown .select2-search__field { - border: 1px solid #aaa; - outline: 0; -} -.select2-container--classic .select2-search--inline .select2-search__field { - outline: 0; - box-shadow: none; -} -.select2-container--classic .select2-dropdown { - background-color: #fff; - border: 1px solid transparent; -} -.select2-container--classic .select2-dropdown--above { - border-bottom: none; -} -.select2-container--classic .select2-dropdown--below { - border-top: none; -} -.select2-container--classic .select2-results > .select2-results__options { - max-height: 200px; - overflow-y: auto; -} -.select2-container--classic .select2-results__option[role="group"] { - padding: 0; -} -.select2-container--classic .select2-results__option[aria-disabled="true"] { - color: grey; -} -.select2-container--classic - .select2-results__option--highlighted[aria-selected] { - background-color: #3875d7; - color: #fff; -} -.select2-container--classic .select2-results__group { - cursor: default; - display: block; - padding: 6px; -} -.select2-container--classic.select2-container--open .select2-dropdown { - border-color: #5897fb; -} -/*! - * Quill Editor v1.3.7 - * https://quilljs.com/ - * Copyright (c) 2014, Jason Chen - * Copyright (c) 2013, salesforce.com - */ -.ql-container { - box-sizing: border-box; - font-family: Helvetica, Arial, sans-serif; - font-size: 13px; - height: 100%; - margin: 0; - position: relative; -} -.ql-container.ql-disabled .ql-tooltip { - visibility: hidden; -} -.ql-container.ql-disabled .ql-editor ul[data-checked] > li:before { - pointer-events: none; -} -.ql-clipboard { - left: -100000px; - height: 1px; - overflow-y: hidden; - position: absolute; - top: 50%; -} -.ql-clipboard p { - margin: 0; - padding: 0; -} -.ql-editor { - box-sizing: border-box; - line-height: 1.42; - height: 100%; - outline: none; - overflow-y: auto; - padding: 12px 15px; - tab-size: 4; - -moz-tab-size: 4; - text-align: left; - white-space: pre-wrap; - word-wrap: break-word; -} -.ql-editor > * { - cursor: text; -} -.ql-editor blockquote, -.ql-editor h1, -.ql-editor h2, -.ql-editor h3, -.ql-editor h4, -.ql-editor h5, -.ql-editor h6, -.ql-editor ol, -.ql-editor p, -.ql-editor pre, -.ql-editor ul { - margin: 0; - padding: 0; - counter-reset: a b c d e f g h i; -} -.ql-editor ol, -.ql-editor ul { - padding-left: 1.5em; -} -.ql-editor ol > li, -.ql-editor ul > li { - list-style-type: none; -} -.ql-editor ul > li:before { - content: "\2022"; -} -.ql-editor ul[data-checked="false"], -.ql-editor ul[data-checked="true"] { - pointer-events: none; -} -.ql-editor ul[data-checked="false"] > li *, -.ql-editor ul[data-checked="true"] > li * { - pointer-events: all; -} -.ql-editor ul[data-checked="false"] > li:before, -.ql-editor ul[data-checked="true"] > li:before { - color: #777; - cursor: pointer; - pointer-events: all; -} -.ql-editor ul[data-checked="true"] > li:before { - content: "\2611"; -} -.ql-editor ul[data-checked="false"] > li:before { - content: "\2610"; -} -.ql-editor li:before { - display: inline-block; - white-space: nowrap; - width: 1.2em; -} -.ql-editor li:not(.ql-direction-rtl):before { - margin-left: -1.5em; - margin-right: 0.3em; - text-align: right; -} -.ql-editor li.ql-direction-rtl:before { - margin-left: 0.3em; - margin-right: -1.5em; -} -.ql-editor ol li:not(.ql-direction-rtl), -.ql-editor ul li:not(.ql-direction-rtl) { - padding-left: 1.5em; -} -.ql-editor ol li.ql-direction-rtl, -.ql-editor ul li.ql-direction-rtl { - padding-right: 1.5em; -} -.ql-editor ol li { - counter-reset: a b c d e f g h i; - counter-increment: j; -} -.ql-editor ol li:before { - content: counter(j, decimal) ". "; -} -.ql-editor ol li.ql-indent-1 { - counter-increment: a; -} -.ql-editor ol li.ql-indent-1:before { - content: counter(a, lower-alpha) ". "; -} -.ql-editor ol li.ql-indent-1 { - counter-reset: b c d e f g h i; -} -.ql-editor ol li.ql-indent-2 { - counter-increment: b; -} -.ql-editor ol li.ql-indent-2:before { - content: counter(b, lower-roman) ". "; -} -.ql-editor ol li.ql-indent-2 { - counter-reset: c d e f g h i; -} -.ql-editor ol li.ql-indent-3 { - counter-increment: c; -} -.ql-editor ol li.ql-indent-3:before { - content: counter(c, decimal) ". "; -} -.ql-editor ol li.ql-indent-3 { - counter-reset: d e f g h i; -} -.ql-editor ol li.ql-indent-4 { - counter-increment: d; -} -.ql-editor ol li.ql-indent-4:before { - content: counter(d, lower-alpha) ". "; -} -.ql-editor ol li.ql-indent-4 { - counter-reset: e f g h i; -} -.ql-editor ol li.ql-indent-5 { - counter-increment: e; -} -.ql-editor ol li.ql-indent-5:before { - content: counter(e, lower-roman) ". "; -} -.ql-editor ol li.ql-indent-5 { - counter-reset: f g h i; -} -.ql-editor ol li.ql-indent-6 { - counter-increment: f; -} -.ql-editor ol li.ql-indent-6:before { - content: counter(f, decimal) ". "; -} -.ql-editor ol li.ql-indent-6 { - counter-reset: g h i; -} -.ql-editor ol li.ql-indent-7 { - counter-increment: g; -} -.ql-editor ol li.ql-indent-7:before { - content: counter(g, lower-alpha) ". "; -} -.ql-editor ol li.ql-indent-7 { - counter-reset: h i; -} -.ql-editor ol li.ql-indent-8 { - counter-increment: h; -} -.ql-editor ol li.ql-indent-8:before { - content: counter(h, lower-roman) ". "; -} -.ql-editor ol li.ql-indent-8 { - counter-reset: i; -} -.ql-editor ol li.ql-indent-9 { - counter-increment: i; -} -.ql-editor ol li.ql-indent-9:before { - content: counter(i, decimal) ". "; -} -.ql-editor .ql-indent-1:not(.ql-direction-rtl) { - padding-left: 3em; -} -.ql-editor li.ql-indent-1:not(.ql-direction-rtl) { - padding-left: 4.5em; -} -.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right { - padding-right: 3em; -} -.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right { - padding-right: 4.5em; -} -.ql-editor .ql-indent-2:not(.ql-direction-rtl) { - padding-left: 6em; -} -.ql-editor li.ql-indent-2:not(.ql-direction-rtl) { - padding-left: 7.5em; -} -.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right { - padding-right: 6em; -} -.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right { - padding-right: 7.5em; -} -.ql-editor .ql-indent-3:not(.ql-direction-rtl) { - padding-left: 9em; -} -.ql-editor li.ql-indent-3:not(.ql-direction-rtl) { - padding-left: 10.5em; -} -.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right { - padding-right: 9em; -} -.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right { - padding-right: 10.5em; -} -.ql-editor .ql-indent-4:not(.ql-direction-rtl) { - padding-left: 12em; -} -.ql-editor li.ql-indent-4:not(.ql-direction-rtl) { - padding-left: 13.5em; -} -.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right { - padding-right: 12em; -} -.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right { - padding-right: 13.5em; -} -.ql-editor .ql-indent-5:not(.ql-direction-rtl) { - padding-left: 15em; -} -.ql-editor li.ql-indent-5:not(.ql-direction-rtl) { - padding-left: 16.5em; -} -.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right { - padding-right: 15em; -} -.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right { - padding-right: 16.5em; -} -.ql-editor .ql-indent-6:not(.ql-direction-rtl) { - padding-left: 18em; -} -.ql-editor li.ql-indent-6:not(.ql-direction-rtl) { - padding-left: 19.5em; -} -.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right { - padding-right: 18em; -} -.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right { - padding-right: 19.5em; -} -.ql-editor .ql-indent-7:not(.ql-direction-rtl) { - padding-left: 21em; -} -.ql-editor li.ql-indent-7:not(.ql-direction-rtl) { - padding-left: 22.5em; -} -.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right { - padding-right: 21em; -} -.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right { - padding-right: 22.5em; -} -.ql-editor .ql-indent-8:not(.ql-direction-rtl) { - padding-left: 24em; -} -.ql-editor li.ql-indent-8:not(.ql-direction-rtl) { - padding-left: 25.5em; -} -.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right { - padding-right: 24em; -} -.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right { - padding-right: 25.5em; -} -.ql-editor .ql-indent-9:not(.ql-direction-rtl) { - padding-left: 27em; -} -.ql-editor li.ql-indent-9:not(.ql-direction-rtl) { - padding-left: 28.5em; -} -.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right { - padding-right: 27em; -} -.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right { - padding-right: 28.5em; -} -.ql-editor .ql-video { - display: block; - max-width: 100%; -} -.ql-editor .ql-video.ql-align-center { - margin: 0 auto; -} -.ql-editor .ql-video.ql-align-right { - margin: 0 0 0 auto; -} -.ql-editor .ql-bg-black { - background-color: #000; -} -.ql-editor .ql-bg-red { - background-color: #e60000; -} -.ql-editor .ql-bg-orange { - background-color: #f90; -} -.ql-editor .ql-bg-yellow { - background-color: #ff0; -} -.ql-editor .ql-bg-green { - background-color: #008a00; -} -.ql-editor .ql-bg-blue { - background-color: #06c; -} -.ql-editor .ql-bg-purple { - background-color: #93f; -} -.ql-editor .ql-color-white { - color: #fff; -} -.ql-editor .ql-color-red { - color: #e60000; -} -.ql-editor .ql-color-orange { - color: #f90; -} -.ql-editor .ql-color-yellow { - color: #ff0; -} -.ql-editor .ql-color-green { - color: #008a00; -} -.ql-editor .ql-color-blue { - color: #06c; -} -.ql-editor .ql-color-purple { - color: #93f; -} -.ql-editor .ql-font-serif { - font-family: Georgia, Times New Roman, serif; -} -.ql-editor .ql-font-monospace { - font-family: Monaco, Courier New, monospace; -} -.ql-editor .ql-size-small { - font-size: 0.75em; -} -.ql-editor .ql-size-large { - font-size: 1.5em; -} -.ql-editor .ql-size-huge { - font-size: 2.5em; -} -.ql-editor .ql-direction-rtl { - direction: rtl; - text-align: inherit; -} -.ql-editor .ql-align-center { - text-align: center; -} -.ql-editor .ql-align-justify { - text-align: justify; -} -.ql-editor .ql-align-right { - text-align: right; -} -.ql-editor.ql-blank:before { - color: rgba(0, 0, 0, 0.6); - content: attr(data-placeholder); - font-style: italic; - left: 15px; - pointer-events: none; - position: absolute; - right: 15px; -} -.ql-snow.ql-toolbar:after, -.ql-snow .ql-toolbar:after { - clear: both; - content: ""; - display: table; -} -.ql-snow.ql-toolbar button, -.ql-snow .ql-toolbar button { - background: none; - border: none; - cursor: pointer; - display: inline-block; - float: left; - height: 24px; - padding: 3px 5px; - width: 28px; -} -.ql-snow.ql-toolbar button svg, -.ql-snow .ql-toolbar button svg { - float: left; - height: 100%; -} -.ql-snow.ql-toolbar button:active:hover, -.ql-snow .ql-toolbar button:active:hover { - outline: none; -} -.ql-snow.ql-toolbar input.ql-image[type="file"], -.ql-snow .ql-toolbar input.ql-image[type="file"] { - display: none; -} -.ql-snow.ql-toolbar .ql-picker-item.ql-selected, -.ql-snow .ql-toolbar .ql-picker-item.ql-selected, -.ql-snow.ql-toolbar .ql-picker-item:hover, -.ql-snow .ql-toolbar .ql-picker-item:hover, -.ql-snow.ql-toolbar .ql-picker-label.ql-active, -.ql-snow .ql-toolbar .ql-picker-label.ql-active, -.ql-snow.ql-toolbar .ql-picker-label:hover, -.ql-snow .ql-toolbar .ql-picker-label:hover, -.ql-snow.ql-toolbar button.ql-active, -.ql-snow .ql-toolbar button.ql-active, -.ql-snow.ql-toolbar button:focus, -.ql-snow .ql-toolbar button:focus, -.ql-snow.ql-toolbar button:hover, -.ql-snow .ql-toolbar button:hover { - color: #06c; -} -.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill, -.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill, -.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill, -.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill, -.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill, -.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill, -.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, -.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, -.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, -.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill, -.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, -.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, -.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill, -.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill, -.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, -.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, -.ql-snow.ql-toolbar button.ql-active .ql-fill, -.ql-snow .ql-toolbar button.ql-active .ql-fill, -.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill, -.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill, -.ql-snow.ql-toolbar button:focus .ql-fill, -.ql-snow .ql-toolbar button:focus .ql-fill, -.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill, -.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill, -.ql-snow.ql-toolbar button:hover .ql-fill, -.ql-snow .ql-toolbar button:hover .ql-fill, -.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill, -.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill { - fill: #06c; -} -.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke, -.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke, -.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, -.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, -.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke, -.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke, -.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter, -.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter, -.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, -.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke, -.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, -.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, -.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, -.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke, -.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter, -.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter, -.ql-snow.ql-toolbar button.ql-active .ql-stroke, -.ql-snow .ql-toolbar button.ql-active .ql-stroke, -.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter, -.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter, -.ql-snow.ql-toolbar button:focus .ql-stroke, -.ql-snow .ql-toolbar button:focus .ql-stroke, -.ql-snow.ql-toolbar button:focus .ql-stroke-miter, -.ql-snow .ql-toolbar button:focus .ql-stroke-miter, -.ql-snow.ql-toolbar button:hover .ql-stroke, -.ql-snow .ql-toolbar button:hover .ql-stroke, -.ql-snow.ql-toolbar button:hover .ql-stroke-miter, -.ql-snow .ql-toolbar button:hover .ql-stroke-miter { - stroke: #06c; -} -@media (pointer: coarse) { - .ql-snow.ql-toolbar button:hover:not(.ql-active), - .ql-snow .ql-toolbar button:hover:not(.ql-active) { - color: #444; - } - .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill, - .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill, - .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill, - .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill { - fill: #444; - } - .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke, - .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke, - .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter, - .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter { - stroke: #444; - } -} -.ql-snow, -.ql-snow * { - box-sizing: border-box; -} -.ql-snow .ql-hidden { - display: none; -} -.ql-snow .ql-out-bottom, -.ql-snow .ql-out-top { - visibility: hidden; -} -.ql-snow .ql-tooltip { - position: absolute; - transform: translateY(10px); -} -.ql-snow .ql-tooltip a { - cursor: pointer; - text-decoration: none; -} -.ql-snow .ql-tooltip.ql-flip { - transform: translateY(-10px); -} -.ql-snow .ql-formats { - display: inline-block; - vertical-align: middle; -} -.ql-snow .ql-formats:after { - clear: both; - content: ""; - display: table; -} -.ql-snow .ql-stroke { - fill: none; - stroke: #444; - stroke-linecap: round; - stroke-linejoin: round; - stroke-width: 2; -} -.ql-snow .ql-stroke-miter { - fill: none; - stroke: #444; - stroke-miterlimit: 10; - stroke-width: 2; -} -.ql-snow .ql-fill, -.ql-snow .ql-stroke.ql-fill { - fill: #444; -} -.ql-snow .ql-empty { - fill: none; -} -.ql-snow .ql-even { - fill-rule: evenodd; -} -.ql-snow .ql-stroke.ql-thin, -.ql-snow .ql-thin { - stroke-width: 1; -} -.ql-snow .ql-transparent { - opacity: 0.4; -} -.ql-snow .ql-direction svg:last-child { - display: none; -} -.ql-snow .ql-direction.ql-active svg:last-child { - display: inline; -} -.ql-snow .ql-direction.ql-active svg:first-child { - display: none; -} -.ql-snow .ql-editor h1 { - font-size: 2em; -} -.ql-snow .ql-editor h2 { - font-size: 1.5em; -} -.ql-snow .ql-editor h3 { - font-size: 1.17em; -} -.ql-snow .ql-editor h4 { - font-size: 1em; -} -.ql-snow .ql-editor h5 { - font-size: 0.83em; -} -.ql-snow .ql-editor h6 { - font-size: 0.67em; -} -.ql-snow .ql-editor a { - text-decoration: underline; -} -.ql-snow .ql-editor blockquote { - border-left: 4px solid #ccc; - margin-bottom: 5px; - margin-top: 5px; - padding-left: 16px; -} -.ql-snow .ql-editor code, -.ql-snow .ql-editor pre { - background-color: #f0f0f0; - border-radius: 3px; -} -.ql-snow .ql-editor pre { - white-space: pre-wrap; - margin-bottom: 5px; - margin-top: 5px; - padding: 5px 10px; -} -.ql-snow .ql-editor code { - font-size: 85%; - padding: 2px 4px; -} -.ql-snow .ql-editor pre.ql-syntax { - background-color: #23241f; - color: #f8f8f2; - overflow: visible; -} -.ql-snow .ql-editor img { - max-width: 100%; -} -.ql-snow .ql-picker { - color: #444; - display: inline-block; - float: left; - font-size: 14px; - font-weight: 500; - height: 24px; - position: relative; - vertical-align: middle; -} -.ql-snow .ql-picker-label { - cursor: pointer; - display: inline-block; - height: 100%; - padding-left: 8px; - padding-right: 2px; - position: relative; - width: 100%; -} -.ql-snow .ql-picker-label:before { - display: inline-block; - line-height: 22px; -} -.ql-snow .ql-picker-options { - background-color: #fff; - display: none; - min-width: 100%; - padding: 4px 8px; - position: absolute; - white-space: nowrap; -} -.ql-snow .ql-picker-options .ql-picker-item { - cursor: pointer; - display: block; - padding-bottom: 5px; - padding-top: 5px; -} -.ql-snow .ql-picker.ql-expanded .ql-picker-label { - color: #ccc; - z-index: 2; -} -.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill { - fill: #ccc; -} -.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke { - stroke: #ccc; -} -.ql-snow .ql-picker.ql-expanded .ql-picker-options { - display: block; - margin-top: -1px; - top: 100%; - z-index: 1; -} -.ql-snow .ql-color-picker, -.ql-snow .ql-icon-picker { - width: 28px; -} -.ql-snow .ql-color-picker .ql-picker-label, -.ql-snow .ql-icon-picker .ql-picker-label { - padding: 2px 4px; -} -.ql-snow .ql-color-picker .ql-picker-label svg, -.ql-snow .ql-icon-picker .ql-picker-label svg { - right: 4px; -} -.ql-snow .ql-icon-picker .ql-picker-options { - padding: 4px 0; -} -.ql-snow .ql-icon-picker .ql-picker-item { - height: 24px; - width: 24px; - padding: 2px 4px; -} -.ql-snow .ql-color-picker .ql-picker-options { - padding: 3px 5px; - width: 152px; -} -.ql-snow .ql-color-picker .ql-picker-item { - border: 1px solid transparent; - float: left; - height: 16px; - margin: 2px; - padding: 0; - width: 16px; -} -.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg { - position: absolute; - margin-top: -9px; - right: 0; - top: 50%; - width: 18px; -} -.ql-snow - .ql-picker.ql-font - .ql-picker-item[data-label]:not([data-label=""]):before, -.ql-snow - .ql-picker.ql-font - .ql-picker-label[data-label]:not([data-label=""]):before, -.ql-snow - .ql-picker.ql-header - .ql-picker-item[data-label]:not([data-label=""]):before, -.ql-snow - .ql-picker.ql-header - .ql-picker-label[data-label]:not([data-label=""]):before, -.ql-snow - .ql-picker.ql-size - .ql-picker-item[data-label]:not([data-label=""]):before, -.ql-snow - .ql-picker.ql-size - .ql-picker-label[data-label]:not([data-label=""]):before { - content: attr(data-label); -} -.ql-snow .ql-picker.ql-header { - width: 98px; -} -.ql-snow .ql-picker.ql-header .ql-picker-item:before, -.ql-snow .ql-picker.ql-header .ql-picker-label:before { - content: "Normal"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before, -.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before { - content: "Heading 1"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before, -.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before { - content: "Heading 2"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before, -.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before { - content: "Heading 3"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before, -.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before { - content: "Heading 4"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before, -.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before { - content: "Heading 5"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before, -.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before { - content: "Heading 6"; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before { - font-size: 2em; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before { - font-size: 1.5em; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before { - font-size: 1.17em; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before { - font-size: 1em; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before { - font-size: 0.83em; -} -.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before { - font-size: 0.67em; -} -.ql-snow .ql-picker.ql-font { - width: 108px; -} -.ql-snow .ql-picker.ql-font .ql-picker-item:before, -.ql-snow .ql-picker.ql-font .ql-picker-label:before { - content: "Sans Serif"; -} -.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]:before, -.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]:before { - content: "Serif"; -} -.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]:before, -.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]:before { - content: "Monospace"; -} -.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]:before { - font-family: Georgia, Times New Roman, serif; -} -.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]:before { - font-family: Monaco, Courier New, monospace; -} -.ql-snow .ql-picker.ql-size { - width: 98px; -} -.ql-snow .ql-picker.ql-size .ql-picker-item:before, -.ql-snow .ql-picker.ql-size .ql-picker-label:before { - content: "Normal"; -} -.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]:before, -.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]:before { - content: "Small"; -} -.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]:before, -.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]:before { - content: "Large"; -} -.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]:before, -.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]:before { - content: "Huge"; -} -.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]:before { - font-size: 10px; -} -.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]:before { - font-size: 18px; -} -.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]:before { - font-size: 32px; -} -.ql-snow .ql-color-picker.ql-background .ql-picker-item { - background-color: #fff; -} -.ql-snow .ql-color-picker.ql-color .ql-picker-item { - background-color: #000; -} -.ql-toolbar.ql-snow { - border: 1px solid #ccc; - box-sizing: border-box; - font-family: Helvetica Neue, Helvetica, Arial, sans-serif; - padding: 8px; -} -.ql-toolbar.ql-snow .ql-formats { - margin-right: 15px; -} -.ql-toolbar.ql-snow .ql-picker-label { - border: 1px solid transparent; -} -.ql-toolbar.ql-snow .ql-picker-options { - border: 1px solid transparent; - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); -} -.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label, -.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options { - border-color: #ccc; -} -.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected, -.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover { - border-color: #000; -} -.ql-toolbar.ql-snow + .ql-container.ql-snow { - border-top: 0; -} -.ql-snow .ql-tooltip { - background-color: #fff; - border: 1px solid #ccc; - box-shadow: 0 0 5px #ddd; - color: #444; - padding: 5px 12px; - white-space: nowrap; -} -.ql-snow .ql-tooltip:before { - content: "Visit URL:"; - line-height: 26px; - margin-right: 8px; -} -.ql-snow .ql-tooltip input[type="text"] { - display: none; - border: 1px solid #ccc; - font-size: 13px; - height: 26px; - margin: 0; - padding: 3px 5px; - width: 170px; -} -.ql-snow .ql-tooltip a.ql-preview { - display: inline-block; - max-width: 200px; - overflow-x: hidden; - text-overflow: ellipsis; - vertical-align: top; -} -.ql-snow .ql-tooltip a.ql-action:after { - border-right: 1px solid #ccc; - content: "Edit"; - margin-left: 16px; - padding-right: 8px; -} -.ql-snow .ql-tooltip a.ql-remove:before { - content: "Remove"; - margin-left: 8px; -} -.ql-snow .ql-tooltip a { - line-height: 26px; -} -.ql-snow .ql-tooltip.ql-editing a.ql-preview, -.ql-snow .ql-tooltip.ql-editing a.ql-remove { - display: none; -} -.ql-snow .ql-tooltip.ql-editing input[type="text"] { - display: inline-block; -} -.ql-snow .ql-tooltip.ql-editing a.ql-action:after { - border-right: 0; - content: "Save"; - padding-right: 0; -} -.ql-snow .ql-tooltip[data-mode="link"]:before { - content: "Enter link:"; -} -.ql-snow .ql-tooltip[data-mode="formula"]:before { - content: "Enter formula:"; -} -.ql-snow .ql-tooltip[data-mode="video"]:before { - content: "Enter video:"; -} -.ql-snow a { - color: #06c; -} -.ql-container.ql-snow { - border: 1px solid #ccc; -} -table.dataTable { - clear: both; - margin-top: 6px !important; - margin-bottom: 6px !important; - max-width: none !important; - border-collapse: separate !important; - border-spacing: 0; -} -table.dataTable td, -table.dataTable th { - box-sizing: content-box; -} -table.dataTable td.dataTables_empty, -table.dataTable th.dataTables_empty { - text-align: center; -} -table.dataTable.nowrap td, -table.dataTable.nowrap th { - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_length label { - font-weight: 400; - text-align: left; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_length select { - width: auto; - display: inline-block; -} -div.dataTables_wrapper div.dataTables_filter { - text-align: right; -} -div.dataTables_wrapper div.dataTables_filter label { - font-weight: 400; - white-space: nowrap; - text-align: left; -} -div.dataTables_wrapper div.dataTables_filter input { - margin-left: 0.5em; - display: inline-block; - width: auto; -} -div.dataTables_wrapper div.dataTables_info { - padding-top: 0.85em; -} -div.dataTables_wrapper div.dataTables_paginate { - margin: 0; - white-space: nowrap; - text-align: right; -} -div.dataTables_wrapper div.dataTables_paginate ul.pagination { - margin: 2px 0; - white-space: nowrap; - justify-content: flex-end; -} -div.dataTables_wrapper div.dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 200px; - margin-left: -100px; - margin-top: -26px; - text-align: center; - padding: 1em 0; -} -table.dataTable > thead > tr > td:active, -table.dataTable > thead > tr > th:active { - outline: none; -} -table.dataTable > thead > tr > td:not(.sorting_disabled), -table.dataTable > thead > tr > th:not(.sorting_disabled) { - padding-right: 30px; -} -table.dataTable > thead .sorting, -table.dataTable > thead .sorting_asc, -table.dataTable > thead .sorting_asc_disabled, -table.dataTable > thead .sorting_desc, -table.dataTable > thead .sorting_desc_disabled { - cursor: pointer; - position: relative; -} -table.dataTable > thead .sorting:after, -table.dataTable > thead .sorting:before, -table.dataTable > thead .sorting_asc:after, -table.dataTable > thead .sorting_asc:before, -table.dataTable > thead .sorting_asc_disabled:after, -table.dataTable > thead .sorting_asc_disabled:before, -table.dataTable > thead .sorting_desc:after, -table.dataTable > thead .sorting_desc:before, -table.dataTable > thead .sorting_desc_disabled:after, -table.dataTable > thead .sorting_desc_disabled:before { - position: absolute; - bottom: 0.9em; - display: block; - opacity: 0.3; -} -table.dataTable > thead .sorting:before, -table.dataTable > thead .sorting_asc:before, -table.dataTable > thead .sorting_asc_disabled:before, -table.dataTable > thead .sorting_desc:before, -table.dataTable > thead .sorting_desc_disabled:before { - right: 1em; - content: "↑"; -} -table.dataTable > thead .sorting:after, -table.dataTable > thead .sorting_asc:after, -table.dataTable > thead .sorting_asc_disabled:after, -table.dataTable > thead .sorting_desc:after, -table.dataTable > thead .sorting_desc_disabled:after { - right: 0.5em; - content: "↓"; -} -table.dataTable > thead .sorting_asc:before, -table.dataTable > thead .sorting_desc:after { - opacity: 1; -} -table.dataTable > thead .sorting_asc_disabled:before, -table.dataTable > thead .sorting_desc_disabled:after { - opacity: 0; -} -div.dataTables_scrollHead table.dataTable { - margin-bottom: 0 !important; -} -div.dataTables_scrollBody table { - border-top: none; - margin-top: 0 !important; - margin-bottom: 0 !important; -} -div.dataTables_scrollBody table thead .sorting:after, -div.dataTables_scrollBody table thead .sorting:before, -div.dataTables_scrollBody table thead .sorting_asc:after, -div.dataTables_scrollBody table thead .sorting_asc:before, -div.dataTables_scrollBody table thead .sorting_desc:after, -div.dataTables_scrollBody table thead .sorting_desc:before { - display: none; -} -div.dataTables_scrollBody table tbody tr:first-child td, -div.dataTables_scrollBody table tbody tr:first-child th { - border-top: none; -} -div.dataTables_scrollFoot > .dataTables_scrollFootInner { - box-sizing: content-box; -} -div.dataTables_scrollFoot > .dataTables_scrollFootInner > table { - margin-top: 0 !important; - border-top: none; -} -@media screen and (max-width: 767px) { - div.dataTables_wrapper div.dataTables_filter, - div.dataTables_wrapper div.dataTables_info, - div.dataTables_wrapper div.dataTables_length, - div.dataTables_wrapper div.dataTables_paginate { - text-align: center; - } - div.dataTables_wrapper div.dataTables_paginate ul.pagination { - justify-content: center !important; - } -} -table.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) { - padding-right: 20px; -} -table.dataTable.table-sm .sorting:before, -table.dataTable.table-sm .sorting_asc:before, -table.dataTable.table-sm .sorting_desc:before { - top: 5px; - right: 0.85em; -} -table.dataTable.table-sm .sorting:after, -table.dataTable.table-sm .sorting_asc:after, -table.dataTable.table-sm .sorting_desc:after { - top: 5px; -} -table.table-bordered.dataTable { - border-right-width: 0; -} -table.table-bordered.dataTable td, -table.table-bordered.dataTable th { - border-left-width: 0; -} -table.table-bordered.dataTable td:last-child, -table.table-bordered.dataTable th:last-child { - border-right-width: 1px; -} -div.dataTables_scrollHead table.table-bordered, -table.table-bordered.dataTable tbody td, -table.table-bordered.dataTable tbody th { - border-bottom-width: 0; -} -div.table-responsive > div.dataTables_wrapper > div.row { - margin: 0; -} -div.table-responsive - > div.dataTables_wrapper - > div.row - > div[class^="col-"]:first-child { - padding-left: 0; -} -div.table-responsive - > div.dataTables_wrapper - > div.row - > div[class^="col-"]:last-child { - padding-right: 0; -} -/*! - * Cropper.js v1.5.12 - * https://fengyuanchen.github.io/cropperjs - * - * Copyright 2015-present Chen Fengyuan - * Released under the MIT license - * - * Date: 2021-06-12T08:00:11.623Z - */ -.cropper-container { - direction: ltr; - font-size: 0; - line-height: 0; - position: relative; - -ms-touch-action: none; - touch-action: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.cropper-container img { - image-orientation: 0deg; - display: block; - height: 100%; - max-height: none !important; - max-width: none !important; - min-height: 0 !important; - min-width: 0 !important; - width: 100%; -} -.cropper-canvas, -.cropper-crop-box, -.cropper-drag-box, -.cropper-modal, -.cropper-wrap-box { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; -} -.cropper-canvas, -.cropper-wrap-box { - overflow: hidden; -} -.cropper-drag-box { - background-color: #fff; - opacity: 0; -} -.cropper-modal { - background-color: #000; - opacity: 0.5; -} -.cropper-view-box { - display: block; - height: 100%; - outline: 1px solid #39f; - outline-color: rgba(51, 153, 255, 0.75); - overflow: hidden; - width: 100%; -} -.cropper-dashed { - border: 0 dashed #eee; - display: block; - opacity: 0.5; - position: absolute; -} -.cropper-dashed.dashed-h { - border-bottom-width: 1px; - border-top-width: 1px; - height: 33.33333%; - left: 0; - top: 33.33333%; - width: 100%; -} -.cropper-dashed.dashed-v { - border-left-width: 1px; - border-right-width: 1px; - height: 100%; - left: 33.33333%; - top: 0; - width: 33.33333%; -} -.cropper-center { - display: block; - height: 0; - left: 50%; - opacity: 0.75; - position: absolute; - top: 50%; - width: 0; -} -.cropper-center:after, -.cropper-center:before { - background-color: #eee; - content: " "; - display: block; - position: absolute; -} -.cropper-center:before { - height: 1px; - left: -3px; - top: 0; - width: 7px; -} -.cropper-center:after { - height: 7px; - left: 0; - top: -3px; - width: 1px; -} -.cropper-face, -.cropper-line, -.cropper-point { - display: block; - height: 100%; - opacity: 0.1; - position: absolute; - width: 100%; -} -.cropper-face { - background-color: #fff; - left: 0; - top: 0; -} -.cropper-line { - background-color: #39f; -} -.cropper-line.line-e { - cursor: ew-resize; - right: -3px; - top: 0; - width: 5px; -} -.cropper-line.line-n { - cursor: ns-resize; - height: 5px; - left: 0; - top: -3px; -} -.cropper-line.line-w { - cursor: ew-resize; - left: -3px; - top: 0; - width: 5px; -} -.cropper-line.line-s { - bottom: -3px; - cursor: ns-resize; - height: 5px; - left: 0; -} -.cropper-point { - background-color: #39f; - height: 5px; - opacity: 0.75; - width: 5px; -} -.cropper-point.point-e { - cursor: ew-resize; - margin-top: -3px; - right: -3px; - top: 50%; -} -.cropper-point.point-n { - cursor: ns-resize; - left: 50%; - margin-left: -3px; - top: -3px; -} -.cropper-point.point-w { - cursor: ew-resize; - left: -3px; - margin-top: -3px; - top: 50%; -} -.cropper-point.point-s { - bottom: -3px; - cursor: s-resize; - left: 50%; - margin-left: -3px; -} -.cropper-point.point-ne { - cursor: nesw-resize; - right: -3px; - top: -3px; -} -.cropper-point.point-nw { - cursor: nwse-resize; - left: -3px; - top: -3px; -} -.cropper-point.point-sw { - bottom: -3px; - cursor: nesw-resize; - left: -3px; -} -.cropper-point.point-se { - bottom: -3px; - cursor: nwse-resize; - height: 20px; - opacity: 1; - right: -3px; - width: 20px; -} -@media (min-width: 768px) { - .cropper-point.point-se { - height: 15px; - width: 15px; - } -} -@media (min-width: 992px) { - .cropper-point.point-se { - height: 10px; - width: 10px; - } -} -@media (min-width: 1200px) { - .cropper-point.point-se { - height: 5px; - opacity: 0.75; - width: 5px; - } -} -.cropper-point.point-se:before { - background-color: #39f; - bottom: -50%; - content: " "; - display: block; - height: 200%; - opacity: 0; - position: absolute; - right: -50%; - width: 200%; -} -.cropper-invisible { - opacity: 0; -} -.cropper-bg { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC"); -} -.cropper-hide { - display: block; - height: 0; - position: absolute; - width: 0; -} -.cropper-hidden { - display: none !important; -} -.cropper-move { - cursor: move; -} -.cropper-crop { - cursor: crosshair; -} -.cropper-disabled .cropper-drag-box, -.cropper-disabled .cropper-face, -.cropper-disabled .cropper-line, -.cropper-disabled .cropper-point { - cursor: not-allowed; -} -/*! - * Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select) - * - * Copyright 2012-2020 SnapAppointments, LLC - * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) - */ -@keyframes a { - 0% { - opacity: 0.9; - } - to { - opacity: 0; - } -} -.bootstrap-select > select.bs-select-hidden, -select.bs-select-hidden, -select.selectpicker { - display: none !important; -} -.bootstrap-select { - width: 220px\0; - vertical-align: middle; -} -.bootstrap-select > .dropdown-toggle { - position: relative; - width: 100%; - text-align: right; - white-space: nowrap; - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; -} -.bootstrap-select > .dropdown-toggle:after { - margin-top: -1px; -} -.bootstrap-select > .dropdown-toggle.bs-placeholder, -.bootstrap-select > .dropdown-toggle.bs-placeholder:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder:hover { - color: #999; -} -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus, -.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover { - color: hsla(0, 0%, 100%, 0.5); -} -.bootstrap-select > select { - position: absolute !important; - bottom: 0; - left: 50%; - display: block !important; - width: 0.5px !important; - height: 100% !important; - padding: 0 !important; - opacity: 0 !important; - border: none; - z-index: 0 !important; -} -.bootstrap-select > select.mobile-device { - top: 0; - left: 0; - display: block !important; - width: 100% !important; - z-index: 1 !important; -} -.bootstrap-select.is-invalid .dropdown-toggle, -.error .bootstrap-select .dropdown-toggle, -.has-error .bootstrap-select .dropdown-toggle, -.was-validated .bootstrap-select select:invalid + .dropdown-toggle { - border-color: #b94a48; -} -.bootstrap-select.is-valid .dropdown-toggle, -.was-validated .bootstrap-select select:valid + .dropdown-toggle { - border-color: #28a745; -} -.bootstrap-select.fit-width { - width: auto !important; -} -.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not( - .input-group-btn - ) { - width: 220px; -} -.bootstrap-select .dropdown-toggle:focus, -.bootstrap-select > select.mobile-device:focus + .dropdown-toggle { - outline: thin dotted #333 !important; - outline: 5px auto -webkit-focus-ring-color !important; - outline-offset: -2px; -} -.bootstrap-select.form-control { - margin-bottom: 0; - padding: 0; - border: none; - height: auto; -} -:not(.input-group) > .bootstrap-select.form-control:not([class*="col-"]) { - width: 100%; -} -.bootstrap-select.form-control.input-group-btn { - float: none; - z-index: auto; -} -.form-inline .bootstrap-select, -.form-inline .bootstrap-select.form-control:not([class*="col-"]) { - width: auto; -} -.bootstrap-select:not(.input-group-btn), -.bootstrap-select[class*="col-"] { - float: none; - display: inline-block; - margin-left: 0; -} -.bootstrap-select.dropdown-menu-right, -.bootstrap-select[class*="col-"].dropdown-menu-right, -.row .bootstrap-select[class*="col-"].dropdown-menu-right { - float: right; -} -.form-group .bootstrap-select, -.form-horizontal .bootstrap-select, -.form-inline .bootstrap-select { - margin-bottom: 0; -} -.form-group-lg .bootstrap-select.form-control, -.form-group-sm .bootstrap-select.form-control { - padding: 0; -} -.form-group-lg .bootstrap-select.form-control .dropdown-toggle, -.form-group-sm .bootstrap-select.form-control .dropdown-toggle { - height: 100%; - font-size: inherit; - line-height: inherit; - border-radius: inherit; -} -.bootstrap-select.form-control-lg .dropdown-toggle, -.bootstrap-select.form-control-sm .dropdown-toggle { - font-size: inherit; - line-height: inherit; - border-radius: inherit; -} -.bootstrap-select.form-control-sm .dropdown-toggle { - padding: 0.25rem 0.5rem; -} -.bootstrap-select.form-control-lg .dropdown-toggle { - padding: 0.5rem 1rem; -} -.form-inline .bootstrap-select .form-control { - width: 100%; -} -.bootstrap-select.disabled, -.bootstrap-select > .disabled { - cursor: not-allowed; -} -.bootstrap-select.disabled:focus, -.bootstrap-select > .disabled:focus { - outline: 0 !important; -} -.bootstrap-select.bs-container { - position: absolute; - top: 0; - left: 0; - height: 0 !important; - padding: 0 !important; -} -.bootstrap-select.bs-container .dropdown-menu { - z-index: 2; -} -.bootstrap-select .dropdown-toggle .filter-option { - position: static; - top: 0; - left: 0; - float: left; - height: 100%; - width: 100%; - text-align: left; - overflow: hidden; - -ms-flex: 0 1 auto; - flex: 0 1 auto; -} -.bs3.bootstrap-select .dropdown-toggle .filter-option { - padding-right: inherit; -} -.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option { - position: absolute; - padding-top: inherit; - padding-bottom: inherit; - padding-left: inherit; - float: none; -} -.input-group - .bs3-has-addon.bootstrap-select - .dropdown-toggle - .filter-option - .filter-option-inner { - padding-right: inherit; -} -.bootstrap-select .dropdown-toggle .filter-option-inner-inner { - overflow: hidden; -} -.bootstrap-select .dropdown-toggle .filter-expand { - width: 0 !important; - float: left; - opacity: 0 !important; - overflow: hidden; -} -.bootstrap-select .dropdown-toggle .caret { - position: absolute; - top: 50%; - right: 12px; - margin-top: -2px; - vertical-align: middle; -} -.input-group .bootstrap-select.form-control .dropdown-toggle { - border-radius: inherit; -} -.bootstrap-select[class*="col-"] .dropdown-toggle { - width: 100%; -} -.bootstrap-select .dropdown-menu { - min-width: 100%; - box-sizing: border-box; -} -.bootstrap-select .dropdown-menu > .inner:focus { - outline: 0 !important; -} -.bootstrap-select .dropdown-menu.inner { - position: static; - float: none; - border: 0; - padding: 0; - margin: 0; - border-radius: 0; - box-shadow: none; -} -.bootstrap-select .dropdown-menu li { - position: relative; -} -.bootstrap-select .dropdown-menu li.active small { - color: hsla(0, 0%, 100%, 0.5) !important; -} -.bootstrap-select .dropdown-menu li.disabled a { - cursor: not-allowed; -} -.bootstrap-select .dropdown-menu li a { - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bootstrap-select .dropdown-menu li a.opt { - position: relative; - padding-left: 2.25em; -} -.bootstrap-select .dropdown-menu li a span.check-mark { - display: none; -} -.bootstrap-select .dropdown-menu li a span.text { - display: inline-block; -} -.bootstrap-select .dropdown-menu li small { - padding-left: 0.5em; -} -.bootstrap-select .dropdown-menu .notify { - position: absolute; - bottom: 5px; - width: 96%; - margin: 0 2%; - min-height: 26px; - padding: 3px 5px; - background: #f5f5f5; - border: 1px solid #e3e3e3; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - pointer-events: none; - opacity: 0.9; - box-sizing: border-box; -} -.bootstrap-select .dropdown-menu .notify.fadeOut { - animation: 0.3s linear 0.75s forwards a; -} -.bootstrap-select .no-results { - padding: 3px; - background: #f5f5f5; - margin: 0 5px; - white-space: nowrap; -} -.bootstrap-select.fit-width .dropdown-toggle .filter-option { - position: static; - display: inline; - padding: 0; -} -.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner, -.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner { - display: inline; -} -.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before { - content: "\00a0"; -} -.bootstrap-select.fit-width .dropdown-toggle .caret { - position: static; - top: auto; - margin-top: -1px; -} -.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark { - position: absolute; - display: inline-block; - right: 15px; - top: 5px; -} -.bootstrap-select.show-tick .dropdown-menu li a span.text { - margin-right: 34px; -} -.bootstrap-select .bs-ok-default:after { - content: ""; - display: block; - width: 0.5em; - height: 1em; - border-style: solid; - border-width: 0 0.26em 0.26em 0; - transform-style: preserve-3d; - transform: rotate(45deg); -} -.bootstrap-select.show-menu-arrow.open > .dropdown-toggle, -.bootstrap-select.show-menu-arrow.show > .dropdown-toggle { - z-index: 3; -} -.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before { - content: ""; - border-left: 7px solid transparent; - border-right: 7px solid transparent; - border-bottom: 7px solid hsla(0, 0%, 80%, 0.2); - position: absolute; - bottom: -4px; - left: 9px; - display: none; -} -.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after { - content: ""; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #fff; - position: absolute; - bottom: -4px; - left: 10px; - display: none; -} -.bootstrap-select.show-menu-arrow.dropup - .dropdown-toggle - .filter-option:before { - bottom: auto; - top: -4px; - border-top: 7px solid hsla(0, 0%, 80%, 0.2); - border-bottom: 0; -} -.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after { - bottom: auto; - top: -4px; - border-top: 6px solid #fff; - border-bottom: 0; -} -.bootstrap-select.show-menu-arrow.pull-right - .dropdown-toggle - .filter-option:before { - right: 12px; - left: auto; -} -.bootstrap-select.show-menu-arrow.pull-right - .dropdown-toggle - .filter-option:after { - right: 13px; - left: auto; -} -.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after, -.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before, -.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after, -.bootstrap-select.show-menu-arrow.show - > .dropdown-toggle - .filter-option:before { - display: block; -} -.bs-actionsbox, -.bs-donebutton, -.bs-searchbox { - padding: 4px 8px; -} -.bs-actionsbox { - width: 100%; - box-sizing: border-box; -} -.bs-actionsbox .btn-group button { - width: 50%; -} -.bs-donebutton { - float: left; - width: 100%; - box-sizing: border-box; -} -.bs-donebutton .btn-group button { - width: 100%; -} -.bs-searchbox + .bs-actionsbox { - padding: 0 8px 4px; -} -.bs-searchbox .form-control { - margin-bottom: 0; - width: 100%; - float: none; -} diff --git a/static/css/core/backend.css b/static/css/core/backend.css deleted file mode 100644 index c22bc26..0000000 --- a/static/css/core/backend.css +++ /dev/null @@ -1,26289 +0,0 @@ -@charset "UTF-8"; - -@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"); -:root { - --iq-primary: #32bdea; - --iq-secondary: #ff7e41; - --iq-success: #78c091; - --iq-info: #7ee2ff; - --iq-warning: #ff9770; - --iq-danger: #e08db4; - --iq-light: #c7cbd3; - --iq-dark: #01041b; - --iq-orange: #ff7e41; - --iq-purple: #4731b6; - --iq-skyblue: #158df7; - --iq-light-gray: #f4f5fa; - --iq-primary: #32bdea; - --iq-secondary: #ff7e41; - --iq-success: #78c091; - --iq-info: #7ee2ff; - --iq-warning: #ff9770; - --iq-danger: #e08db4; - --iq-light: #c7cbd3; - --iq-dark: #01041b; - --iq-orange: #ff7e41; - --iq-purple: #4731b6; - --iq-skyblue: #158df7; - --iq-light-gray: #f4f5fa; -} - -:root { - --blue: #32bdea; - --indigo: #6610f2; - --purple: #4731b6; - --pink: #e83e8c; - --red: #e08db4; - --orange: #ff7e41; - --yellow: #ff9770; - --green: #78c091; - --teal: #20c997; - --cyan: #7ee2ff; - --white: #fff; - --gray: #6c757d; - --gray-dark: #01041b; - --skyblue: #158df7; - --primary: #32bdea; - --secondary: #ff7e41; - --success: #78c091; - --info: #7ee2ff; - --warning: #ff9770; - --danger: #e08db4; - --light: #c7cbd3; - --dark: #01041b; - --orange: #ff7e41; - --purple: #4731b6; - --skyblue: #158df7; - --light-gray: #f4f5fa; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -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-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, - "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block; -} - -body { - margin: 0; - font-family: "Lato", sans-serif; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #676e8a; - text-align: left; - background-color: #ffffff; -} - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: 0.5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -a { - color: #32bdea; - text-decoration: none; - background-color: transparent; -} -a:hover { - color: #1393bc; - text-decoration: none; -} - -a:not([href]) { - color: inherit; - text-decoration: none; -} -a:not([href]):hover { - color: inherit; - text-decoration: none; -} - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", - "Courier New", monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: 0.5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -[role="button"] { - cursor: pointer; -} - -select { - word-wrap: normal; -} - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button:not(:disabled), -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled) { - cursor: pointer; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} -@media (max-width: 1200px) { - legend { - font-size: calc(1.275rem + 0.3vw); - } -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; -} - -h1, -.h1 { - font-size: 2.488em; -} - -h2, -.h2 { - font-size: 2.074em; -} - -h3, -.h3 { - font-size: 1.728em; -} - -h4, -.h4 { - font-size: 1.44em; -} - -h5, -.h5 { - font-size: 1.2em; -} - -h6, -.h6 { - font-size: 1em; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-1 { - font-size: calc(1.725rem + 5.7vw); - } -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-2 { - font-size: calc(1.675rem + 5.1vw); - } -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-3 { - font-size: calc(1.575rem + 3.9vw); - } -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-4 { - font-size: calc(1.475rem + 2.7vw); - } -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer::before { - content: "\2014\00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #ffffff; - border: 1px solid #ccced2; - border-radius: 10px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 10px; - box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid, -.container-sm, -.container-md, -.container-lg, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 576px) { - .container, - .container-sm { - max-width: 540px; - } -} - -@media (min-width: 768px) { - .container, - .container-sm, - .container-md { - max-width: 720px; - } -} - -@media (min-width: 992px) { - .container, - .container-sm, - .container-md, - .container-lg { - max-width: 960px; - } -} - -@media (min-width: 1200px) { - .container, - .container-sm, - .container-md, - .container-lg, - .container-xl { - max-width: 1140px; - } -} - -.row { - display: flex; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12, -.col, -.col-auto, -.col-sm-1, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm, -.col-sm-auto, -.col-md-1, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md, -.col-md-auto, -.col-lg-1, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg, -.col-lg-auto, -.col-xl-1, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; -} - -.col { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; -} - -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; -} - -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; -} - -.row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; -} - -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; -} - -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; -} - -.row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; -} - -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; -} - -.col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; -} - -.col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; -} - -.col-3 { - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; -} - -.col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; -} - -.col-6 { - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; -} - -.col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; -} - -.col-9 { - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; -} - -.col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; -} - -.col-12 { - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - order: -1; -} - -.order-last { - order: 13; -} - -.order-0 { - order: 0; -} - -.order-1 { - order: 1; -} - -.order-2 { - order: 2; -} - -.order-3 { - order: 3; -} - -.order-4 { - order: 4; -} - -.order-5 { - order: 5; -} - -.order-6 { - order: 6; -} - -.order-7 { - order: 7; -} - -.order-8 { - order: 8; -} - -.order-9 { - order: 9; -} - -.order-10 { - order: 10; -} - -.order-11 { - order: 11; -} - -.order-12 { - order: 12; -} - -.offset-1 { - margin-left: 8.33333%; -} - -.offset-2 { - margin-left: 16.66667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.33333%; -} - -.offset-5 { - margin-left: 41.66667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.33333%; -} - -.offset-8 { - margin-left: 66.66667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.33333%; -} - -.offset-11 { - margin-left: 91.66667%; -} - -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-sm-first { - order: -1; - } - .order-sm-last { - order: 13; - } - .order-sm-0 { - order: 0; - } - .order-sm-1 { - order: 1; - } - .order-sm-2 { - order: 2; - } - .order-sm-3 { - order: 3; - } - .order-sm-4 { - order: 4; - } - .order-sm-5 { - order: 5; - } - .order-sm-6 { - order: 6; - } - .order-sm-7 { - order: 7; - } - .order-sm-8 { - order: 8; - } - .order-sm-9 { - order: 9; - } - .order-sm-10 { - order: 10; - } - .order-sm-11 { - order: 11; - } - .order-sm-12 { - order: 12; - } - .offset-sm-0 { - margin-left: 0; - } - .offset-sm-1 { - margin-left: 8.33333%; - } - .offset-sm-2 { - margin-left: 16.66667%; - } - .offset-sm-3 { - margin-left: 25%; - } - .offset-sm-4 { - margin-left: 33.33333%; - } - .offset-sm-5 { - margin-left: 41.66667%; - } - .offset-sm-6 { - margin-left: 50%; - } - .offset-sm-7 { - margin-left: 58.33333%; - } - .offset-sm-8 { - margin-left: 66.66667%; - } - .offset-sm-9 { - margin-left: 75%; - } - .offset-sm-10 { - margin-left: 83.33333%; - } - .offset-sm-11 { - margin-left: 91.66667%; - } -} - -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-md-first { - order: -1; - } - .order-md-last { - order: 13; - } - .order-md-0 { - order: 0; - } - .order-md-1 { - order: 1; - } - .order-md-2 { - order: 2; - } - .order-md-3 { - order: 3; - } - .order-md-4 { - order: 4; - } - .order-md-5 { - order: 5; - } - .order-md-6 { - order: 6; - } - .order-md-7 { - order: 7; - } - .order-md-8 { - order: 8; - } - .order-md-9 { - order: 9; - } - .order-md-10 { - order: 10; - } - .order-md-11 { - order: 11; - } - .order-md-12 { - order: 12; - } - .offset-md-0 { - margin-left: 0; - } - .offset-md-1 { - margin-left: 8.33333%; - } - .offset-md-2 { - margin-left: 16.66667%; - } - .offset-md-3 { - margin-left: 25%; - } - .offset-md-4 { - margin-left: 33.33333%; - } - .offset-md-5 { - margin-left: 41.66667%; - } - .offset-md-6 { - margin-left: 50%; - } - .offset-md-7 { - margin-left: 58.33333%; - } - .offset-md-8 { - margin-left: 66.66667%; - } - .offset-md-9 { - margin-left: 75%; - } - .offset-md-10 { - margin-left: 83.33333%; - } - .offset-md-11 { - margin-left: 91.66667%; - } -} - -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-lg-first { - order: -1; - } - .order-lg-last { - order: 13; - } - .order-lg-0 { - order: 0; - } - .order-lg-1 { - order: 1; - } - .order-lg-2 { - order: 2; - } - .order-lg-3 { - order: 3; - } - .order-lg-4 { - order: 4; - } - .order-lg-5 { - order: 5; - } - .order-lg-6 { - order: 6; - } - .order-lg-7 { - order: 7; - } - .order-lg-8 { - order: 8; - } - .order-lg-9 { - order: 9; - } - .order-lg-10 { - order: 10; - } - .order-lg-11 { - order: 11; - } - .order-lg-12 { - order: 12; - } - .offset-lg-0 { - margin-left: 0; - } - .offset-lg-1 { - margin-left: 8.33333%; - } - .offset-lg-2 { - margin-left: 16.66667%; - } - .offset-lg-3 { - margin-left: 25%; - } - .offset-lg-4 { - margin-left: 33.33333%; - } - .offset-lg-5 { - margin-left: 41.66667%; - } - .offset-lg-6 { - margin-left: 50%; - } - .offset-lg-7 { - margin-left: 58.33333%; - } - .offset-lg-8 { - margin-left: 66.66667%; - } - .offset-lg-9 { - margin-left: 75%; - } - .offset-lg-10 { - margin-left: 83.33333%; - } - .offset-lg-11 { - margin-left: 91.66667%; - } -} - -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-xl-first { - order: -1; - } - .order-xl-last { - order: 13; - } - .order-xl-0 { - order: 0; - } - .order-xl-1 { - order: 1; - } - .order-xl-2 { - order: 2; - } - .order-xl-3 { - order: 3; - } - .order-xl-4 { - order: 4; - } - .order-xl-5 { - order: 5; - } - .order-xl-6 { - order: 6; - } - .order-xl-7 { - order: 7; - } - .order-xl-8 { - order: 8; - } - .order-xl-9 { - order: 9; - } - .order-xl-10 { - order: 10; - } - .order-xl-11 { - order: 11; - } - .order-xl-12 { - order: 12; - } - .offset-xl-0 { - margin-left: 0; - } - .offset-xl-1 { - margin-left: 8.33333%; - } - .offset-xl-2 { - margin-left: 16.66667%; - } - .offset-xl-3 { - margin-left: 25%; - } - .offset-xl-4 { - margin-left: 33.33333%; - } - .offset-xl-5 { - margin-left: 41.66667%; - } - .offset-xl-6 { - margin-left: 50%; - } - .offset-xl-7 { - margin-left: 58.33333%; - } - .offset-xl-8 { - margin-left: 66.66667%; - } - .offset-xl-9 { - margin-left: 75%; - } - .offset-xl-10 { - margin-left: 83.33333%; - } - .offset-xl-11 { - margin-left: 91.66667%; - } -} - -.table { - width: 100%; - margin-bottom: 1rem; - color: #676e8a; -} -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dcdfe8; -} -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dcdfe8; -} -.table tbody + tbody { - border-top: 2px solid #dcdfe8; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dcdfe8; -} -.table-bordered th, -.table-bordered td { - border: 1px solid #dcdfe8; -} -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - color: #676e8a; - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #c6edf9; -} - -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #94ddf4; -} - -.table-hover .table-primary:hover { - background-color: #afe6f7; -} -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #afe6f7; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #ffdbca; -} - -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #ffbc9c; -} - -.table-hover .table-secondary:hover { - background-color: #ffcab1; -} -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #ffcab1; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #d9ede0; -} - -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #b9dec6; -} - -.table-hover .table-success:hover { - background-color: #c8e5d2; -} -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #c8e5d2; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #dbf7ff; -} - -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #bcf0ff; -} - -.table-hover .table-info:hover { - background-color: #c2f1ff; -} -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #c2f1ff; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffe2d7; -} - -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffc9b5; -} - -.table-hover .table-warning:hover { - background-color: #ffd0be; -} -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffd0be; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f6dfea; -} - -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #efc4d8; -} - -.table-hover .table-danger:hover { - background-color: #f0cbdd; -} -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f0cbdd; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #eff0f3; -} - -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #e2e4e8; -} - -.table-hover .table-light:hover { - background-color: #e0e2e8; -} -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #e0e2e8; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #b8b9bf; -} - -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #7b7c88; -} - -.table-hover .table-dark:hover { - background-color: #abacb3; -} -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #abacb3; -} - -.table-orange, -.table-orange > th, -.table-orange > td { - background-color: #ffdbca; -} - -.table-orange th, -.table-orange td, -.table-orange thead th, -.table-orange tbody + tbody { - border-color: #ffbc9c; -} - -.table-hover .table-orange:hover { - background-color: #ffcab1; -} -.table-hover .table-orange:hover > td, -.table-hover .table-orange:hover > th { - background-color: #ffcab1; -} - -.table-purple, -.table-purple > th, -.table-purple > td { - background-color: #cbc5eb; -} - -.table-purple th, -.table-purple td, -.table-purple thead th, -.table-purple tbody + tbody { - border-color: #9f94d9; -} - -.table-hover .table-purple:hover { - background-color: #bab2e4; -} -.table-hover .table-purple:hover > td, -.table-hover .table-purple:hover > th { - background-color: #bab2e4; -} - -.table-skyblue, -.table-skyblue > th, -.table-skyblue > td { - background-color: #bddffd; -} - -.table-skyblue th, -.table-skyblue td, -.table-skyblue thead th, -.table-skyblue tbody + tbody { - border-color: #85c4fb; -} - -.table-hover .table-skyblue:hover { - background-color: #a4d3fc; -} -.table-hover .table-skyblue:hover > td, -.table-hover .table-skyblue:hover > th { - background-color: #a4d3fc; -} - -.table-light-gray, -.table-light-gray > th, -.table-light-gray > td { - background-color: #fcfcfe; -} - -.table-light-gray th, -.table-light-gray td, -.table-light-gray thead th, -.table-light-gray tbody + tbody { - border-color: #f9fafc; -} - -.table-hover .table-light-gray:hover { - background-color: #e9e9f8; -} -.table-hover .table-light-gray:hover > td, -.table-hover .table-light-gray:hover > th { - background-color: #e9e9f8; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #01041b; - border-color: #020940; -} - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dcdfe8; -} - -.table-dark { - color: #fff; - background-color: #01041b; -} -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #020940; -} -.table-dark.table-bordered { - border: 0; -} -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} - -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} - -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} - -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 10px; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #a6e2f6; - outline: 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, -.form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -input[type="date"].form-control, -input[type="time"].form-control, -input[type="datetime-local"].form-control, -input[type="month"].form-control { - appearance: none; -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 0.75rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.75rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #676e8a; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, -.form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -select.form-control[size], -select.form-control[multiple] { - height: auto; -} - -textarea.form-control { - height: auto; -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input[disabled] ~ .form-check-label, -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #78c091; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.75rem; - line-height: 1.5; - color: #fff; - background-color: rgba(120, 192, 145, 0.9); - border-radius: 10px; -} - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-control:valid, -.form-control.is-valid { - border-color: #78c091; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2378C091' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:valid:focus, -.form-control.is-valid:focus { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.was-validated textarea.form-control:valid, -textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right - calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:valid, -.custom-select.is-valid { - border-color: #78c091; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") - no-repeat right 0.75rem center/8px 10px, - url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2378C091' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") - #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) - calc(0.75em + 0.375rem); -} -.was-validated .custom-select:valid:focus, -.custom-select.is-valid:focus { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.was-validated .form-check-input:valid ~ .form-check-label, -.form-check-input.is-valid ~ .form-check-label { - color: #78c091; -} - -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, -.form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, -.custom-control-input.is-valid ~ .custom-control-label { - color: #78c091; -} -.was-validated .custom-control-input:valid ~ .custom-control-label::before, -.custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #78c091; -} - -.was-validated - .custom-control-input:valid:checked - ~ .custom-control-label::before, -.custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #9bd0ad; - background-color: #9bd0ad; -} - -.was-validated - .custom-control-input:valid:focus - ~ .custom-control-label::before, -.custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.was-validated - .custom-control-input:valid:focus:not(:checked) - ~ .custom-control-label::before, -.custom-control-input.is-valid:focus:not(:checked) - ~ .custom-control-label::before { - border-color: #78c091; -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, -.custom-file-input.is-valid ~ .custom-file-label { - border-color: #78c091; -} - -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, -.custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #e08db4; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.75rem; - line-height: 1.5; - color: #fff; - background-color: rgba(224, 141, 180, 0.9); - border-radius: 10px; -} - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-control:invalid, -.form-control.is-invalid { - border-color: #e08db4; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E08DB4' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E08DB4' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:invalid:focus, -.form-control.is-invalid:focus { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.was-validated textarea.form-control:invalid, -textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right - calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:invalid, -.custom-select.is-invalid { - border-color: #e08db4; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") - no-repeat right 0.75rem center/8px 10px, - url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E08DB4' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E08DB4' stroke='none'/%3e%3c/svg%3e") - #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) - calc(0.75em + 0.375rem); -} -.was-validated .custom-select:invalid:focus, -.custom-select.is-invalid:focus { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.was-validated .form-check-input:invalid ~ .form-check-label, -.form-check-input.is-invalid ~ .form-check-label { - color: #e08db4; -} - -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, -.form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, -.custom-control-input.is-invalid ~ .custom-control-label { - color: #e08db4; -} -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, -.custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #e08db4; -} - -.was-validated - .custom-control-input:invalid:checked - ~ .custom-control-label::before, -.custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #ebb5ce; - background-color: #ebb5ce; -} - -.was-validated - .custom-control-input:invalid:focus - ~ .custom-control-label::before, -.custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.was-validated - .custom-control-input:invalid:focus:not(:checked) - ~ .custom-control-label::before, -.custom-control-input.is-invalid:focus:not(:checked) - ~ .custom-control-label::before { - border-color: #e08db4; -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, -.custom-file-input.is-invalid ~ .custom-file-label { - border-color: #e08db4; -} - -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, -.custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: flex; - flex: 0 0 auto; - flex-flow: row wrap; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; - } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - align-items: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.fade { - transition: opacity 0.15s linear; -} -@media (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} -.fade:not(.show) { - opacity: 0; -} - -.collapse:not(.show) { - display: none; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} -@media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} - -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; -} - -.dropdown-toggle { - white-space: nowrap; -} -.dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #676e8a; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 10px; - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175); -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} - -.dropleft .dropdown-toggle::after { - display: none; -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-menu[x-placement^="top"], -.dropdown-menu[x-placement^="right"], -.dropdown-menu[x-placement^="bottom"], -.dropdown-menu[x-placement^="left"] { - right: auto; - bottom: auto; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, -.dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, -.dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #32bdea; -} -.dropdown-item.disabled, -.dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.75rem; - color: #6c757d; - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} -.btn-group > .btn:focus, -.btn-group > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; -} - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after { - margin-left: 0; -} -.dropleft .dropdown-toggle-split::before { - margin-right: 0; -} - -.btn-sm + .dropdown-toggle-split, -.btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, -.btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group.show .dropdown-toggle { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.show .dropdown-toggle.btn-link { - box-shadow: none; -} - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; -} -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; -} -.input-group > .form-control, -.input-group > .form-control-plaintext, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0; -} -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .form-control-plaintext + .form-control, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; -} -.input-group > .custom-file .custom-file-input:focus { - z-index: 4; -} -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .custom-file { - display: flex; - align-items: center; -} -.input-group > .custom-file:not(:last-child) .custom-file-label, -.input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: flex; -} -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} -.input-group-prepend .btn:focus, -.input-group-append .btn:focus { - z-index: 3; -} -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 10px; -} -.input-group-text input[type="radio"], -.input-group-text input[type="checkbox"] { - margin-top: 0; -} - -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(1.5em + 1rem + 2px); -} - -.input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.5em + 0.5rem + 2px); -} - -.input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group - > .input-group-append:last-child - > .btn:not(:last-child):not(.dropdown-toggle), -.input-group - > .input-group-append:last-child - > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group - > .input-group-prepend:first-child - > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - display: block; - min-height: 24; - padding-left: 1.5rem; -} - -.custom-control-inline { - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 12.5rem; - opacity: 0; -} -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #32bdea; - background-color: #32bdea; - box-shadow: none; -} -.custom-control-input:focus ~ .custom-control-label::before { - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #a6e2f6; -} -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #d4f1fb; - border-color: #d4f1fb; - box-shadow: none; -} -.custom-control-input[disabled] ~ .custom-control-label, -.custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} -.custom-control-input[disabled] ~ .custom-control-label::before, -.custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; -} -.custom-control-label::before { - position: absolute; - top: 11.5rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.custom-control-label::after { - position: absolute; - top: 11.5rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: no-repeat 50% / 50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 10px; -} - -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); -} - -.custom-checkbox - .custom-control-input:indeterminate - ~ .custom-control-label::before { - border-color: #32bdea; - background-color: #32bdea; - box-shadow: none; -} - -.custom-checkbox - .custom-control-input:indeterminate - ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); -} - -.custom-checkbox - .custom-control-input:disabled:checked - ~ .custom-control-label::before { - background-color: rgba(50, 189, 234, 0.5); -} - -.custom-checkbox - .custom-control-input:disabled:indeterminate - ~ .custom-control-label::before { - background-color: rgba(50, 189, 234, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} - -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); -} - -.custom-radio - .custom-control-input:disabled:checked - ~ .custom-control-label::before { - background-color: rgba(50, 189, 234, 0.5); -} - -.custom-switch { - padding-left: 2.25rem; -} -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} -.custom-switch .custom-control-label::after { - top: calc(11.5rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; - } -} -.custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - transform: translateX(0.75rem); -} -.custom-switch - .custom-control-input:disabled:checked - ~ .custom-control-label::before { - background-color: rgba(50, 189, 234, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff - url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") - no-repeat right 0.75rem center/8px 10px; - border: 1px solid #ced4da; - border-radius: 10px; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); - appearance: none; -} -.custom-select:focus { - border-color: #a6e2f6; - outline: 0; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.custom-select[multiple], -.custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} -.custom-select::-ms-expand { - display: none; -} -.custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} - -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.75rem; -} - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 0.75rem; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin: 0; - opacity: 0; -} -.custom-file-input:focus ~ .custom-file-label { - border-color: #a6e2f6; - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-file-input[disabled] ~ .custom-file-label, -.custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; -} -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} -.custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 10px; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 10px 10px 0; -} - -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - appearance: none; -} -.custom-range:focus { - outline: none; -} -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.custom-range::-moz-focus-outer { - border: 0; -} -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #32bdea; - border: 0; - border-radius: 1rem; - box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; - } -} -.custom-range::-webkit-slider-thumb:active { - background-color: #d4f1fb; -} -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #ccced2; - border-color: transparent; - border-radius: 1rem; - box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); -} -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #32bdea; - border: 0; - border-radius: 1rem; - box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; - } -} -.custom-range::-moz-range-thumb:active { - background-color: #d4f1fb; -} -.custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #ccced2; - border-color: transparent; - border-radius: 1rem; - box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); -} -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #32bdea; - border: 0; - border-radius: 1rem; - box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; - } -} -.custom-range::-ms-thumb:active { - background-color: #d4f1fb; -} -.custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; - box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); -} -.custom-range::-ms-fill-lower { - background-color: #ccced2; - border-radius: 1rem; -} -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #ccced2; - border-radius: 1rem; -} -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; -} -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; -} -.custom-range:disabled::-moz-range-track { - cursor: default; -} -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd; -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, - box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none; - } -} - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:hover, -.nav-link:focus { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} - -.nav-tabs { - border-bottom: 1px solid #ccced2; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 10px; - border-top-right-radius: 10px; -} -.nav-tabs .nav-link:hover, -.nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #ccced2; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #ffffff; - border-color: #ccced2 #ccced2 #ffffff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 10px; -} - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #32bdea; -} - -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} - -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: 0.5rem 1rem; -} -.navbar .container, -.navbar .container-fluid, -.navbar .container-sm, -.navbar .container-md, -.navbar .container-lg, -.navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 3.5rem; - padding-bottom: 3.5rem; - margin-right: 1rem; - font-size: 0.75rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 0.75rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 10px; -} -.navbar-toggler:hover, -.navbar-toggler:focus { - text-decoration: none; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, - .navbar-expand-sm > .container-sm, - .navbar-expand-sm > .container-md, - .navbar-expand-sm > .container-lg, - .navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, - .navbar-expand-sm > .container-sm, - .navbar-expand-sm > .container-md, - .navbar-expand-sm > .container-lg, - .navbar-expand-sm > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } -} - -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, - .navbar-expand-md > .container-sm, - .navbar-expand-md > .container-md, - .navbar-expand-md > .container-lg, - .navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, - .navbar-expand-md > .container-sm, - .navbar-expand-md > .container-md, - .navbar-expand-md > .container-lg, - .navbar-expand-md > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } -} - -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, - .navbar-expand-lg > .container-sm, - .navbar-expand-lg > .container-md, - .navbar-expand-lg > .container-lg, - .navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, - .navbar-expand-lg > .container-sm, - .navbar-expand-lg > .container-md, - .navbar-expand-lg > .container-lg, - .navbar-expand-lg > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } -} - -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, - .navbar-expand-xl > .container-sm, - .navbar-expand-xl > .container-md, - .navbar-expand-xl > .container-lg, - .navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, - .navbar-expand-xl > .container-sm, - .navbar-expand-xl > .container-md, - .navbar-expand-xl > .container-lg, - .navbar-expand-xl > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } -} - -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-sm, -.navbar-expand > .container-md, -.navbar-expand > .container-lg, -.navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-sm, -.navbar-expand > .container-md, -.navbar-expand > .container-lg, -.navbar-expand > .container-xl { - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, -.navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:hover, -.navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-text a:hover, -.navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, -.navbar-dark .navbar-brand:focus { - color: #fff; -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-nav .nav-link:hover, -.navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-text a { - color: #fff; -} -.navbar-dark .navbar-text a:hover, -.navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #ffffff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 10px; -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group { - border-top: inherit; - border-bottom: inherit; -} -.card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: 9px; - border-bottom-left-radius: 9px; -} - -.card-body { - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} - -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: 9px 9px 0 0; -} -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 9px 9px; -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} - -.card-img, -.card-img-top, -.card-img-bottom { - flex-shrink: 0; - width: 100%; -} - -.card-img, -.card-img-top { - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: 9px; - border-bottom-left-radius: 9px; -} - -.card-deck .card { - margin-bottom: 15px; -} - -@media (min-width: 576px) { - .card-deck { - display: flex; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group > .card { - margin-bottom: 15px; -} - -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; - } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} - -@media (min-width: 576px) { - .card-columns { - column-count: 3; - column-gap: 1.25rem; - orphans: 1; - widows: 1; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.accordion > .card { - overflow: hidden; -} -.accordion > .card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.accordion > .card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.accordion > .card > .card-header { - border-radius: 0; - margin-bottom: -1px; -} - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 10px; -} - -.breadcrumb-item { - display: flex; -} -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; -} -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - color: #6c757d; - content: "/"; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: flex; - padding-left: 0; - list-style: none; - border-radius: 10px; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #32bdea; - background-color: #fff; - border: 1px solid #ccced2; -} -.page-link:hover { - z-index: 2; - color: #1393bc; - text-decoration: none; - background-color: #e9ecef; - border-color: #ccced2; -} -.page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 10px; - border-bottom-left-radius: 10px; -} - -.page-item:last-child .page-link { - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; -} - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #ccced2; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 0.75rem; - line-height: 1.5; -} - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 10px; - border-bottom-left-radius: 10px; -} - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; -} - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 10px; - border-bottom-left-radius: 10px; -} - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 10px; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .badge { - transition: none; - } -} -a.badge:hover, -a.badge:focus { - text-decoration: none; -} -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #32bdea; -} -a.badge-primary:hover, -a.badge-primary:focus { - color: #fff; - background-color: #16a5d3; -} -a.badge-primary:focus, -a.badge-primary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} - -.badge-secondary { - color: #fff; - background-color: #ff7e41; -} -a.badge-secondary:hover, -a.badge-secondary:focus { - color: #fff; - background-color: #ff5b0e; -} -a.badge-secondary:focus, -a.badge-secondary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} - -.badge-success { - color: #fff; - background-color: #78c091; -} -a.badge-success:hover, -a.badge-success:focus { - color: #fff; - background-color: #55b075; -} -a.badge-success:focus, -a.badge-success.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} - -.badge-info { - color: #fff; - background-color: #7ee2ff; -} -a.badge-info:hover, -a.badge-info:focus { - color: #fff; - background-color: #4bd7ff; -} -a.badge-info:focus, -a.badge-info.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} - -.badge-warning { - color: #fff; - background-color: #ff9770; -} -a.badge-warning:hover, -a.badge-warning:focus { - color: #fff; - background-color: #ff723d; -} -a.badge-warning:focus, -a.badge-warning.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} - -.badge-danger { - color: #fff; - background-color: #e08db4; -} -a.badge-danger:hover, -a.badge-danger:focus { - color: #fff; - background-color: #d5659a; -} -a.badge-danger:focus, -a.badge-danger.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} - -.badge-light { - color: #212529; - background-color: #c7cbd3; -} -a.badge-light:hover, -a.badge-light:focus { - color: #212529; - background-color: #aab0bd; -} -a.badge-light:focus, -a.badge-light.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} - -.badge-dark { - color: #fff; - background-color: #01041b; -} -a.badge-dark:hover, -a.badge-dark:focus { - color: #fff; - background-color: black; -} -a.badge-dark:focus, -a.badge-dark.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} - -.badge-orange { - color: #fff; - background-color: #ff7e41; -} -a.badge-orange:hover, -a.badge-orange:focus { - color: #fff; - background-color: #ff5b0e; -} -a.badge-orange:focus, -a.badge-orange.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} - -.badge-purple { - color: #fff; - background-color: #4731b6; -} -a.badge-purple:hover, -a.badge-purple:focus { - color: #fff; - background-color: #37268e; -} -a.badge-purple:focus, -a.badge-purple.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} - -.badge-skyblue { - color: #fff; - background-color: #158df7; -} -a.badge-skyblue:hover, -a.badge-skyblue:focus { - color: #fff; - background-color: #0773d2; -} -a.badge-skyblue:focus, -a.badge-skyblue.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} - -.badge-light-gray { - color: #212529; - background-color: #f4f5fa; -} -a.badge-light-gray:hover, -a.badge-light-gray:focus { - color: #212529; - background-color: #d1d5ea; -} -a.badge-light-gray:focus, -a.badge-light-gray.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 10px; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 26.5rem; -} -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #1a627a; - background-color: #d6f2fb; - border-color: #c6edf9; -} -.alert-primary hr { - border-top-color: #afe6f7; -} -.alert-primary .alert-link { - color: #114050; -} - -.alert-secondary { - color: #854222; - background-color: #ffe5d9; - border-color: #ffdbca; -} -.alert-secondary hr { - border-top-color: #ffcab1; -} -.alert-secondary .alert-link { - color: #5c2e18; -} - -.alert-success { - color: #3e644b; - background-color: #e4f2e9; - border-color: #d9ede0; -} -.alert-success hr { - border-top-color: #c8e5d2; -} -.alert-success .alert-link { - color: #2a4533; -} - -.alert-info { - color: #427685; - background-color: #e5f9ff; - border-color: #dbf7ff; -} -.alert-info hr { - border-top-color: #c2f1ff; -} -.alert-info .alert-link { - color: #315863; -} - -.alert-warning { - color: #854f3a; - background-color: #ffeae2; - border-color: #ffe2d7; -} -.alert-warning hr { - border-top-color: #ffd0be; -} -.alert-warning .alert-link { - color: #613a2b; -} - -.alert-danger { - color: #74495e; - background-color: #f9e8f0; - border-color: #f6dfea; -} -.alert-danger hr { - border-top-color: #f0cbdd; -} -.alert-danger .alert-link { - color: #553545; -} - -.alert-light { - color: #676a6e; - background-color: #f4f5f6; - border-color: #eff0f3; -} -.alert-light hr { - border-top-color: #e0e2e8; -} -.alert-light .alert-link { - color: #4e5154; -} - -.alert-dark { - color: #01020e; - background-color: #cccdd1; - border-color: #b8b9bf; -} -.alert-dark hr { - border-top-color: #abacb3; -} -.alert-dark .alert-link { - color: black; -} - -.alert-orange { - color: #854222; - background-color: #ffe5d9; - border-color: #ffdbca; -} -.alert-orange hr { - border-top-color: #ffcab1; -} -.alert-orange .alert-link { - color: #5c2e18; -} - -.alert-purple { - color: #25195f; - background-color: #dad6f0; - border-color: #cbc5eb; -} -.alert-purple hr { - border-top-color: #bab2e4; -} -.alert-purple .alert-link { - color: #150e37; -} - -.alert-skyblue { - color: #0b4980; - background-color: #d0e8fd; - border-color: #bddffd; -} -.alert-skyblue hr { - border-top-color: #a4d3fc; -} -.alert-skyblue .alert-link { - color: #072e51; -} - -.alert-light-gray { - color: #7f7f82; - background-color: #fdfdfe; - border-color: #fcfcfe; -} -.alert-light-gray hr { - border-top-color: #e9e9f8; -} -.alert-light-gray .alert-link { - color: #666668; -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -.progress { - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 10px; - box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1); -} - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #32bdea; - transition: width 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; - } -} - -.progress-bar-striped { - background-image: linear-gradient( - 45deg, - rgba(255, 255, 255, 0.15) 25%, - transparent 25%, - transparent 50%, - rgba(255, 255, 255, 0.15) 50%, - rgba(255, 255, 255, 0.15) 75%, - transparent 75%, - transparent - ); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - animation: progress-bar-stripes 1s linear infinite; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; - } -} - -.media { - display: flex; - align-items: flex-start; -} - -.media-body { - flex: 1; -} - -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 10px; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:hover, -.list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #676e8a; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; -} -.list-group-item.disabled, -.list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.list-group-item + .list-group-item { - border-top-width: 0; -} -.list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; -} - -.list-group-horizontal { - flex-direction: row; -} -.list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; -} -.list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; -} -.list-group-horizontal > .list-group-item.active { - margin-top: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; -} - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; - } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} - -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; - } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} - -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; - } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} - -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; - } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 10px; - border-top-right-radius: 0; - } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 10px; - border-bottom-left-radius: 0; - } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} - -.list-group-flush { - border-radius: 0; -} -.list-group-flush > .list-group-item { - border-width: 0 0 1px; -} -.list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; -} - -.list-group-item-primary { - color: #1a627a; - background-color: #c6edf9; -} -.list-group-item-primary.list-group-item-action:hover, -.list-group-item-primary.list-group-item-action:focus { - color: #1a627a; - background-color: #afe6f7; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #1a627a; - border-color: #1a627a; -} - -.list-group-item-secondary { - color: #854222; - background-color: #ffdbca; -} -.list-group-item-secondary.list-group-item-action:hover, -.list-group-item-secondary.list-group-item-action:focus { - color: #854222; - background-color: #ffcab1; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #854222; - border-color: #854222; -} - -.list-group-item-success { - color: #3e644b; - background-color: #d9ede0; -} -.list-group-item-success.list-group-item-action:hover, -.list-group-item-success.list-group-item-action:focus { - color: #3e644b; - background-color: #c8e5d2; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #3e644b; - border-color: #3e644b; -} - -.list-group-item-info { - color: #427685; - background-color: #dbf7ff; -} -.list-group-item-info.list-group-item-action:hover, -.list-group-item-info.list-group-item-action:focus { - color: #427685; - background-color: #c2f1ff; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #427685; - border-color: #427685; -} - -.list-group-item-warning { - color: #854f3a; - background-color: #ffe2d7; -} -.list-group-item-warning.list-group-item-action:hover, -.list-group-item-warning.list-group-item-action:focus { - color: #854f3a; - background-color: #ffd0be; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #854f3a; - border-color: #854f3a; -} - -.list-group-item-danger { - color: #74495e; - background-color: #f6dfea; -} -.list-group-item-danger.list-group-item-action:hover, -.list-group-item-danger.list-group-item-action:focus { - color: #74495e; - background-color: #f0cbdd; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #74495e; - border-color: #74495e; -} - -.list-group-item-light { - color: #676a6e; - background-color: #eff0f3; -} -.list-group-item-light.list-group-item-action:hover, -.list-group-item-light.list-group-item-action:focus { - color: #676a6e; - background-color: #e0e2e8; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #676a6e; - border-color: #676a6e; -} - -.list-group-item-dark { - color: #01020e; - background-color: #b8b9bf; -} -.list-group-item-dark.list-group-item-action:hover, -.list-group-item-dark.list-group-item-action:focus { - color: #01020e; - background-color: #abacb3; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #01020e; - border-color: #01020e; -} - -.list-group-item-orange { - color: #854222; - background-color: #ffdbca; -} -.list-group-item-orange.list-group-item-action:hover, -.list-group-item-orange.list-group-item-action:focus { - color: #854222; - background-color: #ffcab1; -} -.list-group-item-orange.list-group-item-action.active { - color: #fff; - background-color: #854222; - border-color: #854222; -} - -.list-group-item-purple { - color: #25195f; - background-color: #cbc5eb; -} -.list-group-item-purple.list-group-item-action:hover, -.list-group-item-purple.list-group-item-action:focus { - color: #25195f; - background-color: #bab2e4; -} -.list-group-item-purple.list-group-item-action.active { - color: #fff; - background-color: #25195f; - border-color: #25195f; -} - -.list-group-item-skyblue { - color: #0b4980; - background-color: #bddffd; -} -.list-group-item-skyblue.list-group-item-action:hover, -.list-group-item-skyblue.list-group-item-action:focus { - color: #0b4980; - background-color: #a4d3fc; -} -.list-group-item-skyblue.list-group-item-action.active { - color: #fff; - background-color: #0b4980; - border-color: #0b4980; -} - -.list-group-item-light-gray { - color: #7f7f82; - background-color: #fcfcfe; -} -.list-group-item-light-gray.list-group-item-action:hover, -.list-group-item-light-gray.list-group-item-action:focus { - color: #7f7f82; - background-color: #e9e9f8; -} -.list-group-item-light-gray.list-group-item-action.active { - color: #fff; - background-color: #7f7f82; - border-color: #7f7f82; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: 0.5; -} -@media (max-width: 1200px) { - .close { - font-size: calc(1.275rem + 0.3vw); - } -} -.close:hover { - color: #000; - text-decoration: none; -} -.close:not(:disabled):not(.disabled):hover, -.close:not(:disabled):not(.disabled):focus { - opacity: 0.75; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; -} - -a.close.disabled { - pointer-events: none; -} - -.modal-open { - overflow: hidden; -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); -} -@media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; - } -} -.modal.show .modal-dialog { - transform: none; -} -.modal.modal-static .modal-dialog { - transform: scale(1.02); -} - -.modal-dialog-scrollable { - display: flex; - max-height: calc(100% - 1rem); -} -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; -} -.modal-dialog-scrollable .modal-header, -.modal-dialog-scrollable .modal-footer { - flex-shrink: 0; -} -.modal-dialog-scrollable .modal-body { - overflow-y: auto; -} - -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); -} -.modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: min-content; - content: ""; -} -.modal-dialog-centered.modal-dialog-scrollable { - flex-direction: column; - justify-content: center; - height: 100%; -} -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; -} -.modal-dialog-centered.modal-dialog-scrollable::before { - content: none; -} - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 10px; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5); - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: flex; - align-items: flex-start; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dcdfe8; - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dcdfe8; - border-bottom-right-radius: 9px; - border-bottom-left-radius: 9px; -} -.modal-footer > * { - margin: 0.25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); - } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); - } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); - } - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: min-content; - } - .modal-content { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5); - } - .modal-sm { - max-width: 300px; - } -} - -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; - } -} - -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: "Lato", sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.75rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, -.bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; -} -.bs-tooltip-top .arrow, -.bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; -} -.bs-tooltip-top .arrow::before, -.bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, -.bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; -} -.bs-tooltip-right .arrow, -.bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-right .arrow::before, -.bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, -.bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; -} -.bs-tooltip-bottom .arrow, -.bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; -} -.bs-tooltip-bottom .arrow::before, -.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, -.bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; -} -.bs-tooltip-left .arrow, -.bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-left .arrow::before, -.bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 10px; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: "Lato", sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.75rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 10px; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); -} -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 10px; -} -.popover .arrow::before, -.popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, -.bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; -} -.bs-popover-top > .arrow, -.bs-popover-auto[x-placement^="top"] > .arrow { - bottom: calc(-0.5rem - 1px); -} -.bs-popover-top > .arrow::before, -.bs-popover-auto[x-placement^="top"] > .arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-top > .arrow::after, -.bs-popover-auto[x-placement^="top"] > .arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; -} - -.bs-popover-right, -.bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; -} -.bs-popover-right > .arrow, -.bs-popover-auto[x-placement^="right"] > .arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 10px 0; -} -.bs-popover-right > .arrow::before, -.bs-popover-auto[x-placement^="right"] > .arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-right > .arrow::after, -.bs-popover-auto[x-placement^="right"] > .arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; -} - -.bs-popover-bottom, -.bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; -} -.bs-popover-bottom > .arrow, -.bs-popover-auto[x-placement^="bottom"] > .arrow { - top: calc(-0.5rem - 1px); -} -.bs-popover-bottom > .arrow::before, -.bs-popover-auto[x-placement^="bottom"] > .arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom > .arrow::after, -.bs-popover-auto[x-placement^="bottom"] > .arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, -.bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, -.bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; -} -.bs-popover-left > .arrow, -.bs-popover-auto[x-placement^="left"] > .arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 10px 0; -} -.bs-popover-left > .arrow::before, -.bs-popover-auto[x-placement^="left"] > .arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-left > .arrow::after, -.bs-popover-auto[x-placement^="left"] > .arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: 9px; - border-top-right-radius: 9px; -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #676e8a; -} - -.carousel { - position: relative; -} - -.carousel.pointer-event { - touch-action: pan-y; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner::after { - display: block; - clear: both; - content: ""; -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - transform: translateX(100%); -} - -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - transform: translateX(-100%); -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; -} - -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; - opacity: 1; -} - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; -} -@media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; - transition: opacity 0.15s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; - } -} -.carousel-control-prev:hover, -.carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: no-repeat 50% / 100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: flex; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} -.carousel-indicators li { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } -} -.carousel-indicators .active { - opacity: 1; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - color: #03151a !important; - background-color: #32bdea !important; -} - -a.bg-primary:hover, -a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - color: #03151a !important; - background-color: #16a5d3 !important; -} - -.bg-secondary { - color: #411500 !important; - background-color: #ff7e41 !important; -} - -a.bg-secondary:hover, -a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - color: #411500 !important; - background-color: #ff5b0e !important; -} - -.bg-success { - color: #122719 !important; - background-color: #78c091 !important; -} - -a.bg-success:hover, -a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - color: #122719 !important; - background-color: #55b075 !important; -} - -.bg-info { - color: #00627e !important; - background-color: #7ee2ff !important; -} - -a.bg-info:hover, -a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - color: #00627e !important; - background-color: #4bd7ff !important; -} - -.bg-warning { - color: #701f00 !important; - background-color: #ff9770 !important; -} - -a.bg-warning:hover, -a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - color: #701f00 !important; - background-color: #ff723d !important; -} - -.bg-danger { - color: #561835 !important; - background-color: #e08db4 !important; -} - -a.bg-danger:hover, -a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - color: #561835 !important; - background-color: #d5659a !important; -} - -.bg-light { - color: #444a57 !important; - background-color: #c7cbd3 !important; -} - -a.bg-light:hover, -a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - color: #444a57 !important; - background-color: #aab0bd !important; -} - -.bg-dark { - color: black !important; - background-color: #01041b !important; -} - -a.bg-dark:hover, -a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - color: black !important; - background-color: black !important; -} - -.bg-orange { - color: #411500 !important; - background-color: #ff7e41 !important; -} - -a.bg-orange:hover, -a.bg-orange:focus, -button.bg-orange:hover, -button.bg-orange:focus { - color: #411500 !important; - background-color: #ff5b0e !important; -} - -.bg-purple { - color: black !important; - background-color: #4731b6 !important; -} - -a.bg-purple:hover, -a.bg-purple:focus, -button.bg-purple:hover, -button.bg-purple:focus { - color: black !important; - background-color: #37268e !important; -} - -.bg-skyblue { - color: #00070d !important; - background-color: #158df7 !important; -} - -a.bg-skyblue:hover, -a.bg-skyblue:focus, -button.bg-skyblue:hover, -button.bg-skyblue:focus { - color: #00070d !important; - background-color: #0773d2 !important; -} - -.bg-light-gray { - color: #4b5aa4 !important; - background-color: #f4f5fa !important; -} - -a.bg-light-gray:hover, -a.bg-light-gray:focus, -button.bg-light-gray:hover, -button.bg-light-gray:focus { - color: #4b5aa4 !important; - background-color: #d1d5ea !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dcdfe8 !important; -} - -.border-top { - border-top: 1px solid #dcdfe8 !important; -} - -.border-right { - border-right: 1px solid #dcdfe8 !important; -} - -.border-bottom { - border-bottom: 1px solid #dcdfe8 !important; -} - -.border-left { - border-left: 1px solid #dcdfe8 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #32bdea !important; -} - -.border-secondary { - border-color: #ff7e41 !important; -} - -.border-success { - border-color: #78c091 !important; -} - -.border-info { - border-color: #7ee2ff !important; -} - -.border-warning { - border-color: #ff9770 !important; -} - -.border-danger { - border-color: #e08db4 !important; -} - -.border-light { - border-color: #c7cbd3 !important; -} - -.border-dark { - border-color: #01041b !important; -} - -.border-orange { - border-color: #ff7e41 !important; -} - -.border-purple { - border-color: #4731b6 !important; -} - -.border-skyblue { - border-color: #158df7 !important; -} - -.border-light-gray { - border-color: #f4f5fa !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded-sm { - border-radius: 10px !important; -} - -.rounded { - border-radius: 10px !important; -} - -.rounded-top { - border-top-left-radius: 10px !important; - border-top-right-radius: 10px !important; -} - -.rounded-right { - border-top-right-radius: 10px !important; - border-bottom-right-radius: 10px !important; -} - -.rounded-bottom { - border-bottom-right-radius: 10px !important; - border-bottom-left-radius: 10px !important; -} - -.rounded-left { - border-top-left-radius: 10px !important; - border-bottom-left-radius: 10px !important; -} - -.rounded-lg { - border-radius: 10px !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50px !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: flex !important; -} - -.d-inline-flex { - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - .d-sm-inline { - display: inline !important; - } - .d-sm-inline-block { - display: inline-block !important; - } - .d-sm-block { - display: block !important; - } - .d-sm-table { - display: table !important; - } - .d-sm-table-row { - display: table-row !important; - } - .d-sm-table-cell { - display: table-cell !important; - } - .d-sm-flex { - display: flex !important; - } - .d-sm-inline-flex { - display: inline-flex !important; - } -} - -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - .d-md-inline { - display: inline !important; - } - .d-md-inline-block { - display: inline-block !important; - } - .d-md-block { - display: block !important; - } - .d-md-table { - display: table !important; - } - .d-md-table-row { - display: table-row !important; - } - .d-md-table-cell { - display: table-cell !important; - } - .d-md-flex { - display: flex !important; - } - .d-md-inline-flex { - display: inline-flex !important; - } -} - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - .d-lg-inline { - display: inline !important; - } - .d-lg-inline-block { - display: inline-block !important; - } - .d-lg-block { - display: block !important; - } - .d-lg-table { - display: table !important; - } - .d-lg-table-row { - display: table-row !important; - } - .d-lg-table-cell { - display: table-cell !important; - } - .d-lg-flex { - display: flex !important; - } - .d-lg-inline-flex { - display: inline-flex !important; - } -} - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - .d-xl-inline { - display: inline !important; - } - .d-xl-inline-block { - display: inline-block !important; - } - .d-xl-block { - display: block !important; - } - .d-xl-table { - display: table !important; - } - .d-xl-table-row { - display: table-row !important; - } - .d-xl-table-cell { - display: table-cell !important; - } - .d-xl-flex { - display: flex !important; - } - .d-xl-inline-flex { - display: inline-flex !important; - } -} - -@media print { - .d-print-none { - display: none !important; - } - .d-print-inline { - display: inline !important; - } - .d-print-inline-block { - display: inline-block !important; - } - .d-print-block { - display: block !important; - } - .d-print-table { - display: table !important; - } - .d-print-table-row { - display: table-row !important; - } - .d-print-table-cell { - display: table-cell !important; - } - .d-print-flex { - display: flex !important; - } - .d-print-inline-flex { - display: inline-flex !important; - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive::before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.85714%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - flex-direction: row !important; -} - -.flex-column { - flex-direction: column !important; -} - -.flex-row-reverse { - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - flex-direction: column-reverse !important; -} - -.flex-wrap { - flex-wrap: wrap !important; -} - -.flex-nowrap { - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.flex-fill { - flex: 1 1 auto !important; -} - -.flex-grow-0 { - flex-grow: 0 !important; -} - -.flex-grow-1 { - flex-grow: 1 !important; -} - -.flex-shrink-0 { - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - flex-shrink: 1 !important; -} - -.justify-content-start { - justify-content: flex-start !important; -} - -.justify-content-end { - justify-content: flex-end !important; -} - -.justify-content-center { - justify-content: center !important; -} - -.justify-content-between { - justify-content: space-between !important; -} - -.justify-content-around { - justify-content: space-around !important; -} - -.align-items-start { - align-items: flex-start !important; -} - -.align-items-end { - align-items: flex-end !important; -} - -.align-items-center { - align-items: center !important; -} - -.align-items-baseline { - align-items: baseline !important; -} - -.align-items-stretch { - align-items: stretch !important; -} - -.align-content-start { - align-content: flex-start !important; -} - -.align-content-end { - align-content: flex-end !important; -} - -.align-content-center { - align-content: center !important; -} - -.align-content-between { - align-content: space-between !important; -} - -.align-content-around { - align-content: space-around !important; -} - -.align-content-stretch { - align-content: stretch !important; -} - -.align-self-auto { - align-self: auto !important; -} - -.align-self-start { - align-self: flex-start !important; -} - -.align-self-end { - align-self: flex-end !important; -} - -.align-self-center { - align-self: center !important; -} - -.align-self-baseline { - align-self: baseline !important; -} - -.align-self-stretch { - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; - } - .flex-sm-column { - flex-direction: column !important; - } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - .flex-sm-wrap { - flex-wrap: wrap !important; - } - .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-sm-fill { - flex: 1 1 auto !important; - } - .flex-sm-grow-0 { - flex-grow: 0 !important; - } - .flex-sm-grow-1 { - flex-grow: 1 !important; - } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-sm-start { - justify-content: flex-start !important; - } - .justify-content-sm-end { - justify-content: flex-end !important; - } - .justify-content-sm-center { - justify-content: center !important; - } - .justify-content-sm-between { - justify-content: space-between !important; - } - .justify-content-sm-around { - justify-content: space-around !important; - } - .align-items-sm-start { - align-items: flex-start !important; - } - .align-items-sm-end { - align-items: flex-end !important; - } - .align-items-sm-center { - align-items: center !important; - } - .align-items-sm-baseline { - align-items: baseline !important; - } - .align-items-sm-stretch { - align-items: stretch !important; - } - .align-content-sm-start { - align-content: flex-start !important; - } - .align-content-sm-end { - align-content: flex-end !important; - } - .align-content-sm-center { - align-content: center !important; - } - .align-content-sm-between { - align-content: space-between !important; - } - .align-content-sm-around { - align-content: space-around !important; - } - .align-content-sm-stretch { - align-content: stretch !important; - } - .align-self-sm-auto { - align-self: auto !important; - } - .align-self-sm-start { - align-self: flex-start !important; - } - .align-self-sm-end { - align-self: flex-end !important; - } - .align-self-sm-center { - align-self: center !important; - } - .align-self-sm-baseline { - align-self: baseline !important; - } - .align-self-sm-stretch { - align-self: stretch !important; - } -} - -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; - } - .flex-md-column { - flex-direction: column !important; - } - .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - .flex-md-wrap { - flex-wrap: wrap !important; - } - .flex-md-nowrap { - flex-wrap: nowrap !important; - } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-md-fill { - flex: 1 1 auto !important; - } - .flex-md-grow-0 { - flex-grow: 0 !important; - } - .flex-md-grow-1 { - flex-grow: 1 !important; - } - .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-md-start { - justify-content: flex-start !important; - } - .justify-content-md-end { - justify-content: flex-end !important; - } - .justify-content-md-center { - justify-content: center !important; - } - .justify-content-md-between { - justify-content: space-between !important; - } - .justify-content-md-around { - justify-content: space-around !important; - } - .align-items-md-start { - align-items: flex-start !important; - } - .align-items-md-end { - align-items: flex-end !important; - } - .align-items-md-center { - align-items: center !important; - } - .align-items-md-baseline { - align-items: baseline !important; - } - .align-items-md-stretch { - align-items: stretch !important; - } - .align-content-md-start { - align-content: flex-start !important; - } - .align-content-md-end { - align-content: flex-end !important; - } - .align-content-md-center { - align-content: center !important; - } - .align-content-md-between { - align-content: space-between !important; - } - .align-content-md-around { - align-content: space-around !important; - } - .align-content-md-stretch { - align-content: stretch !important; - } - .align-self-md-auto { - align-self: auto !important; - } - .align-self-md-start { - align-self: flex-start !important; - } - .align-self-md-end { - align-self: flex-end !important; - } - .align-self-md-center { - align-self: center !important; - } - .align-self-md-baseline { - align-self: baseline !important; - } - .align-self-md-stretch { - align-self: stretch !important; - } -} - -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; - } - .flex-lg-column { - flex-direction: column !important; - } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - .flex-lg-wrap { - flex-wrap: wrap !important; - } - .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-lg-fill { - flex: 1 1 auto !important; - } - .flex-lg-grow-0 { - flex-grow: 0 !important; - } - .flex-lg-grow-1 { - flex-grow: 1 !important; - } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-lg-start { - justify-content: flex-start !important; - } - .justify-content-lg-end { - justify-content: flex-end !important; - } - .justify-content-lg-center { - justify-content: center !important; - } - .justify-content-lg-between { - justify-content: space-between !important; - } - .justify-content-lg-around { - justify-content: space-around !important; - } - .align-items-lg-start { - align-items: flex-start !important; - } - .align-items-lg-end { - align-items: flex-end !important; - } - .align-items-lg-center { - align-items: center !important; - } - .align-items-lg-baseline { - align-items: baseline !important; - } - .align-items-lg-stretch { - align-items: stretch !important; - } - .align-content-lg-start { - align-content: flex-start !important; - } - .align-content-lg-end { - align-content: flex-end !important; - } - .align-content-lg-center { - align-content: center !important; - } - .align-content-lg-between { - align-content: space-between !important; - } - .align-content-lg-around { - align-content: space-around !important; - } - .align-content-lg-stretch { - align-content: stretch !important; - } - .align-self-lg-auto { - align-self: auto !important; - } - .align-self-lg-start { - align-self: flex-start !important; - } - .align-self-lg-end { - align-self: flex-end !important; - } - .align-self-lg-center { - align-self: center !important; - } - .align-self-lg-baseline { - align-self: baseline !important; - } - .align-self-lg-stretch { - align-self: stretch !important; - } -} - -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; - } - .flex-xl-column { - flex-direction: column !important; - } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - .flex-xl-wrap { - flex-wrap: wrap !important; - } - .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-xl-fill { - flex: 1 1 auto !important; - } - .flex-xl-grow-0 { - flex-grow: 0 !important; - } - .flex-xl-grow-1 { - flex-grow: 1 !important; - } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-xl-start { - justify-content: flex-start !important; - } - .justify-content-xl-end { - justify-content: flex-end !important; - } - .justify-content-xl-center { - justify-content: center !important; - } - .justify-content-xl-between { - justify-content: space-between !important; - } - .justify-content-xl-around { - justify-content: space-around !important; - } - .align-items-xl-start { - align-items: flex-start !important; - } - .align-items-xl-end { - align-items: flex-end !important; - } - .align-items-xl-center { - align-items: center !important; - } - .align-items-xl-baseline { - align-items: baseline !important; - } - .align-items-xl-stretch { - align-items: stretch !important; - } - .align-content-xl-start { - align-content: flex-start !important; - } - .align-content-xl-end { - align-content: flex-end !important; - } - .align-content-xl-center { - align-content: center !important; - } - .align-content-xl-between { - align-content: space-between !important; - } - .align-content-xl-around { - align-content: space-around !important; - } - .align-content-xl-stretch { - align-content: stretch !important; - } - .align-self-xl-auto { - align-self: auto !important; - } - .align-self-xl-start { - align-self: flex-start !important; - } - .align-self-xl-end { - align-self: flex-end !important; - } - .align-self-xl-center { - align-self: center !important; - } - .align-self-xl-baseline { - align-self: baseline !important; - } - .align-self-xl-stretch { - align-self: stretch !important; - } -} - -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - .float-sm-right { - float: right !important; - } - .float-sm-none { - float: none !important; - } -} - -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - .float-md-right { - float: right !important; - } - .float-md-none { - float: none !important; - } -} - -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - .float-lg-right { - float: right !important; - } - .float-lg-none { - float: none !important; - } -} - -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - .float-xl-right { - float: right !important; - } - .float-xl-none { - float: none !important; - } -} - -.user-select-all { - user-select: all !important; -} - -.user-select-auto { - user-select: auto !important; -} - -.user-select-none { - user-select: none !important; -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports (position: sticky) { - .sticky-top { - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; -} - -.shadow-sm { - box-shadow: 0px 16px 40px 0px #0000000a !important; -} - -.shadow { - box-shadow: 0px 16px 40px 0px #0000000a !important; -} - -.shadow-lg { - box-shadow: 0px 16px 40px 0px #0000000a !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - .m-sm-1 { - margin: 0.25rem !important; - } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - .m-sm-2 { - margin: 0.5rem !important; - } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - .m-sm-3 { - margin: 1rem !important; - } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - .m-sm-4 { - margin: 1.5rem !important; - } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - .m-sm-5 { - margin: 3rem !important; - } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - .p-sm-0 { - padding: 0 !important; - } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - .p-sm-1 { - padding: 0.25rem !important; - } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - .p-sm-2 { - padding: 0.5rem !important; - } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - .p-sm-3 { - padding: 1rem !important; - } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - .p-sm-4 { - padding: 1.5rem !important; - } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - .p-sm-5 { - padding: 3rem !important; - } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } - .m-sm-auto { - margin: auto !important; - } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - .m-md-1 { - margin: 0.25rem !important; - } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - .m-md-2 { - margin: 0.5rem !important; - } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - .m-md-3 { - margin: 1rem !important; - } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - .m-md-4 { - margin: 1.5rem !important; - } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - .m-md-5 { - margin: 3rem !important; - } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - .p-md-0 { - padding: 0 !important; - } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - .p-md-1 { - padding: 0.25rem !important; - } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - .p-md-2 { - padding: 0.5rem !important; - } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - .p-md-3 { - padding: 1rem !important; - } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - .p-md-4 { - padding: 1.5rem !important; - } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - .p-md-5 { - padding: 3rem !important; - } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } - .m-md-auto { - margin: auto !important; - } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - .m-lg-1 { - margin: 0.25rem !important; - } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - .m-lg-2 { - margin: 0.5rem !important; - } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - .m-lg-3 { - margin: 1rem !important; - } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - .m-lg-4 { - margin: 1.5rem !important; - } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - .m-lg-5 { - margin: 3rem !important; - } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - .p-lg-0 { - padding: 0 !important; - } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - .p-lg-1 { - padding: 0.25rem !important; - } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - .p-lg-2 { - padding: 0.5rem !important; - } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - .p-lg-3 { - padding: 1rem !important; - } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - .p-lg-4 { - padding: 1.5rem !important; - } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - .p-lg-5 { - padding: 3rem !important; - } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } - .m-lg-auto { - margin: auto !important; - } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - .m-xl-1 { - margin: 0.25rem !important; - } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - .m-xl-2 { - margin: 0.5rem !important; - } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - .m-xl-3 { - margin: 1rem !important; - } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - .m-xl-4 { - margin: 1.5rem !important; - } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - .m-xl-5 { - margin: 3rem !important; - } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - .p-xl-0 { - padding: 0 !important; - } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - .p-xl-1 { - padding: 0.25rem !important; - } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - .p-xl-2 { - padding: 0.5rem !important; - } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - .p-xl-3 { - padding: 1rem !important; - } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - .p-xl-4 { - padding: 1.5rem !important; - } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - .p-xl-5 { - padding: 3rem !important; - } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } - .m-xl-auto { - margin: auto !important; - } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0); -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", - "Courier New", monospace !important; -} - -.text-justify { - text-align: justify !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - .text-sm-right { - text-align: right !important; - } - .text-sm-center { - text-align: center !important; - } -} - -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - .text-md-right { - text-align: right !important; - } - .text-md-center { - text-align: center !important; - } -} - -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - .text-lg-right { - text-align: right !important; - } - .text-lg-center { - text-align: center !important; - } -} - -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - .text-xl-right { - text-align: right !important; - } - .text-xl-center { - text-align: center !important; - } -} - -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-lighter { - font-weight: lighter !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-weight-bolder { - font-weight: bolder !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #32bdea !important; -} - -a.text-primary:hover, -a.text-primary:focus { - color: #1393bc !important; -} - -.text-secondary { - color: #ff7e41 !important; -} - -a.text-secondary:hover, -a.text-secondary:focus { - color: #f44e00 !important; -} - -.text-success { - color: #78c091 !important; -} - -a.text-success:hover, -a.text-success:focus { - color: #4ba169 !important; -} - -.text-info { - color: #7ee2ff !important; -} - -a.text-info:hover, -a.text-info:focus { - color: #32d1ff !important; -} - -.text-warning { - color: #ff9770 !important; -} - -a.text-warning:hover, -a.text-warning:focus { - color: #ff5f24 !important; -} - -.text-danger { - color: #e08db4 !important; -} - -a.text-danger:hover, -a.text-danger:focus { - color: #d0518c !important; -} - -.text-light { - color: #c7cbd3 !important; -} - -a.text-light:hover, -a.text-light:focus { - color: #9ca3b1 !important; -} - -.text-dark { - color: #01041b !important; -} - -a.text-dark:hover, -a.text-dark:focus { - color: black !important; -} - -.text-orange { - color: #ff7e41 !important; -} - -a.text-orange:hover, -a.text-orange:focus { - color: #f44e00 !important; -} - -.text-purple { - color: #4731b6 !important; -} - -a.text-purple:hover, -a.text-purple:focus { - color: #2f217a !important; -} - -.text-skyblue { - color: #158df7 !important; -} - -a.text-skyblue:hover, -a.text-skyblue:focus { - color: #0665b9 !important; -} - -.text-light-gray { - color: #f4f5fa !important; -} - -a.text-light-gray:hover, -a.text-light-gray:focus { - color: #bfc5e2 !important; -} - -.text-body { - color: #676e8a !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-break { - word-wrap: break-word !important; -} - -.text-reset { - color: inherit !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - box-shadow: none !important; - } - a:not(.btn) { - text-decoration: underline; - } - abbr[title]::after { - content: " (" attr(title) ")"; - } - pre { - white-space: pre-wrap !important; - } - pre, - blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - @page { - size: a3; - } - body { - min-width: 992px !important; - } - .container { - min-width: 992px !important; - } - .navbar { - display: none; - } - .badge { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ccced2 !important; - } - .table-dark { - color: inherit; - } - .table-dark th, - .table-dark td, - .table-dark thead th, - .table-dark tbody + tbody { - border-color: #dcdfe8; - } - .table .thead-dark th { - color: inherit; - border-color: #dcdfe8; - } -} - -/*----------------- Grid Boxes -----------------*/ -.card { - background: #fff; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - margin-bottom: 30px; - border: 1px solid #dcdfe8; - box-shadow: none; -} -.card.card-transparent { - background: transparent; - border: none; - box-shadow: none; -} -.card.card-transparent .card-header { - background: transparent; - border-radius: 0; - margin-bottom: 0; - border: none; -} -.card .card-header { - background: transparent; - border-radius: 0; - padding: 20px 20px; - margin-bottom: 0; - -ms-flex-align: center !important; - align-items: center !important; - border: 0; - border-bottom: 1px solid #dcdfe8; -} -.card .card-header .header-title .card-title { - margin-bottom: 0; -} - -.card-body { - padding: 20px; -} - -.card-header-toolbar .nav-item a { - color: #676e8a; - padding: 4px 12px; - font-size: 14px; -} - -.card-header-toolbar .dropdown-toggle i { - font-size: 20px; - line-height: normal; - vertical-align: text-bottom; -} - -.card-header-toolbar .dropdown-toggle::after { - display: none; -} - -.card-header .dropdown-bg { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.card-block.card-stretch { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.card-block.card-height-third { - height: calc(33.33% - 30px); -} - -.card-block.card-height-half { - height: calc(50% - 30px); -} - -.card-block.card-height { - height: calc(100% - 30px); -} - -.card-block { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -.iq-sidebar { - position: fixed; - z-index: 1000; - top: 0; - width: 260px; - height: 100%; - background: #ffffff; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; - -webkit-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.2); - -ms-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.2); - -o-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.2); - box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.2); -} - -#sidebar-scrollbar { - height: 100vh; -} - -.scroll-content div.p-3 { - height: 100px; -} - -.iq-sidebar-menu { - position: relative; - padding: 0; - margin: 0; -} -.iq-sidebar-menu .iq-menu { - margin: 0; - padding: 0; - list-style-type: none; -} -.iq-sidebar-menu .iq-menu .iq-menu-title { - display: block; - color: #676e8a; - font-size: 15px; - position: relative; - padding: 15px; - font-weight: 500; - line-height: 18px; -} -.iq-sidebar-menu .iq-menu .iq-menu-title i { - display: none; -} -.iq-sidebar-menu .iq-menu li { - list-style-type: none; - position: relative; - white-space: nowrap; -} -.iq-sidebar-menu .iq-menu li li { - margin: 0; - background: transparent !important; -} -.iq-sidebar-menu .iq-menu li li a { - font-size: 16px; -} -.iq-sidebar-menu .iq-menu li a { - font-size: 16px; - white-space: nowrap; - display: block; - color: #676e8a; - position: relative; - padding: 15px 20px 15px 20px; - margin-bottom: 5px; - margin-right: 10px; - line-height: 18px; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow: hidden; - text-transform: capitalize; - -webkit-border-radius: 0 10px 10px 0; - -moz-border-radius: 0 10px 10px 0; - -ms-border-radius: 0 10px 10px 0; - -o-border-radius: 0 10px 10px 0; - border-radius: 0 10px 10px 0; -} -.iq-sidebar-menu .iq-menu li a i { - vertical-align: middle; - width: 20px; - display: inline-block; - margin-right: 8px; - font-size: 16px; -} -.iq-sidebar-menu .iq-menu li a span { - white-space: nowrap; - padding: 0; - display: inline-block; - -webkit-transition: none; - -moz-transition: none; - -ms-transition: none; - -o-transition: none; - transition: none; -} -.iq-sidebar-menu .iq-menu li a .iq-arrow-right { - margin-right: 0px; - margin-left: auto; - font-size: 15px; - width: 15px; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-menu .iq-menu li a .badge { - position: absolute; - right: 15px; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-menu .iq-menu li a .list-dot { - position: relative; - padding-left: 25px; -} -.iq-sidebar-menu .iq-menu li a .list-dot:before { - content: ""; - height: 8px; - width: 8px; - border-radius: 50%; - background: #676e8a; - position: absolute; - top: 6px; - left: 0; -} -.iq-sidebar-menu .iq-menu li a[aria-expanded="true"] .iq-arrow-right { - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-menu .iq-menu li ul { - padding-left: 0; - position: relative; -} -.iq-sidebar-menu .iq-menu li .iq-submenu li a[aria-expanded="true"] { - box-shadow: none; -} -.iq-sidebar-menu .iq-menu li.active-menu > a { - color: #32bdea; - text-decoration: none; - border-radius: 0; - transition: none; -} -.iq-sidebar-menu .iq-menu li.active .iq-submenu li > a { - background: transparent; -} - -.sidebar-main .iq-sidebar-menu .iq-menu li a { - margin-right: unset; - border-radius: unset; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li a:hover { - color: #01041b; -} -.sidebar-default .iq-sidebar-menu .iq-menu li a:hover svg { - color: #ff7e41; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li a[aria-expanded="true"] { - color: #ff7e41; - text-decoration: none; - transition: none; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - i.iq-arrow-left { - color: #ff7e41; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li .iq-submenu li a:hover { - background: transparent; - color: #01041b; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li ul a:hover { - color: #32bdea; - text-decoration: none; - background: transparent; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li ul li a { - padding-left: 40px; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li ul ul li > a { - padding-left: 60px; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li ul ul ul li > a { - padding-left: 80px; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li ul.iq-submenu-data li { - margin: 0; -} - -.sidebar-default .iq-sidebar-menu .iq-menu > li.active > a { - color: #01041b; - text-decoration: none; - background: #f4f5fa; -} -.sidebar-default .iq-sidebar-menu .iq-menu > li.active > a svg { - color: #ff7e41; -} - -.sidebar-default .iq-sidebar-menu .iq-menu li.active .iq-submenu li.active > a { - color: #01041b; - border-radius: 0; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li.active - > a - svg { - color: #ff7e41; -} - -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li:last-child - > a { - -webkit-border-radius: 0 0 10px 10px; - -moz-border-radius: 0 0 10px 10px; - -ms-border-radius: 0 0 10px 10px; - -o-border-radius: 0 0 10px 10px; - border-radius: 0 0 10px 10px; -} - -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li - a[aria-expanded="true"] { - box-shadow: none; - color: #01041b; -} -.sidebar-default - .iq-sidebar-menu - .iq-menu - li.active - .iq-submenu - li - a[aria-expanded="true"] - svg { - color: #ff7e41; -} - -.sidebar-default .iq-sidebar-menu .iq-menu .iq-submenu .iq-submenu-data { - box-shadow: none; -} - -.sidebar-default .iq-sidebar .iq-sidebar-menu .iq-menu .iq-submenu li:before { - content: ""; - width: 3px; - height: 35px; - background: #32bdea; - position: absolute; - left: 30px; - top: 8px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; -} - -.sidebar-default - .iq-sidebar - .iq-sidebar-menu - .iq-menu - .iq-submenu - li.active:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} - -.sidebar-default - .iq-sidebar - .iq-sidebar-menu - .iq-menu - li.active - ul.iq-submenu - .iq-submenu:before { - left: 48px; - width: 2px; -} - -.sidebar-default - .iq-sidebar - .iq-sidebar-menu - .iq-menu - li.active - ul.iq-submenu - .iq-submenu - li::before { - left: 48px; - width: 2px; -} - -.sidebar-default .sidebar-main .iq-sidebar-menu .iq-menu li ul { - padding-left: 0; -} - -.sidebar-default .sidebar-bottom { - padding: 120px 16px 0px !important; -} -.sidebar-default .sidebar-bottom .sidebarbottom-content { - text-align: center; -} -.sidebar-default .sidebar-bottom .image { - margin-top: -10px; -} - -.iq-sidebar-menu .iq-menu li a .iq-arrow-right.arrow-active { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - display: inline; -} - -.iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - .iq-arrow-right.arrow-active { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - display: inline; - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.iq-sidebar-menu - .iq-menu - li - a[aria-expanded="true"] - .iq-arrow-right.arrow-hover { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.btn.sidebar-bottom-btn { - background: #110a57 !important; - color: #fff !important; -} - -.iq-menu-bt-sidebar { - line-height: 26px; - padding-left: 30px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.iq-sidebar-logo { - padding: 15px 20px; - padding-right: 15px; - margin-top: 5px; - margin-bottom: 15px; - margin-right: 10px; - width: auto; - position: relative; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-logo a { - display: flex; - align-items: flex-start; - transition-delay: 0.2s; - margin-left: 25px; -} -.iq-sidebar-logo a span { - margin-left: 10px; - font-size: 19px; - line-height: 42px; - padding-left: 1px; - letter-spacing: 1.5px; - font-weight: 600; - flex: 1; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; -} -.iq-sidebar-logo a span.logo-text { - font-size: 10px; - letter-spacing: 5px; -} -.iq-sidebar-logo a:hover { - text-decoration: none; -} -.iq-sidebar-logo a:focus { - text-decoration: none; -} -.iq-sidebar-logo img { - height: 60px; -} -.iq-sidebar-logo .logo-title { - font-weight: 700; -} - -.iq-saidbar-logo img { - width: 60%; -} - -.logo-text { - color: #676e8a; - text-transform: uppercase; - font-size: 10px; - letter-spacing: 5px; -} - -.iq-top-navbar .wrapper-menu { - margin: 0 15px 0 0; -} - -.wrapper-menu { - font-size: 25px; - text-align: center; - color: #110a57; - position: relative; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; -} - -@media (min-width: 1300px) { - .iq-top-navbar .iq-navbar-custom .wrapper-menu { - display: none; - } - body.sidebar-main .iq-sidebar { - width: 60px; - } - body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: none; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a .iq-arrow-right { - display: none; - } - body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu .iq-submenu { - display: none; - } - body.sidebar-main .iq-sidebar-logo { - transform: translateX(-100px); - } - body.sidebar-main .iq-sidebar-logo a { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: flex; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar-logo a span { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: none; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li a .badge { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - display: none; - -webkit-transition: all 0.6s ease-in-out; - -moz-transition: all 0.6s ease-in-out; - -ms-transition: all 0.6s ease-in-out; - -o-transition: all 0.6s ease-in-out; - transition: all 0.6s ease-in-out; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li a .iq-arrow-right { - margin-right: 0; - display: none; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li a i.iq-arrow-left { - margin: 0 auto; - } - body.sidebar-main .iq-sidebar-menu .iq-menu li li a i { - margin: 0 auto; - text-align: center; - } - body.sidebar-main .sidebar-default .iq-sidebar-menu .iq-menu li ul li a { - padding-left: 18px; - } - .sidebar-main .iq-sidebar .iq-submenu li a { - font-size: 0; - } - .sidebar-main .iq-sidebar .sidebar-bottom { - display: none; - } -} - -@media (max-width: 1299px) { - .iq-sidebar { - display: inline-block; - z-index: 99; - left: -300px; - top: 0px; - } - body.sidebar-main .iq-sidebar { - width: 260px; - left: 0; - z-index: 999; - } -} - -@keyframes shadowDots { - 0% { - box-shadow: 0 0 0 0px rgba(0, 177, 255, 0.2); - } - 100% { - box-shadow: 0 0 0 15px rgba(0, 177, 255, 0); - } -} - -@keyframes shadow-pulse { - 0% { - box-shadow: 0 0 0 0px rgba(0, 177, 255, 0.2); - } - 100% { - box-shadow: 0 0 0 15px rgba(0, 177, 255, 0); - } -} - -@keyframes shadow-pulse-dots-danger { - 0% { - box-shadow: 0 0 0 0px rgba(255, 155, 138, 0.2); - } - 100% { - box-shadow: 0 0 0 15px rgba(255, 155, 138, 0); - } -} - -@keyframes shadow-pulse-danger { - 0% { - box-shadow: 0 0 0 0px rgba(255, 155, 138, 0.2); - } - 100% { - box-shadow: 0 0 0 15px rgba(255, 155, 138, 0); - } -} - -@-webkit-keyframes fade-in-bottom { - 0% { - -webkit-transform: translateY(50px); - transform: translateY(50px); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } -} - -@keyframes fade-in-bottom { - 0% { - -webkit-transform: translateY(50px); - transform: translateY(50px); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } -} - -.iq-top-navbar { - background: #fff; - padding: 0 30px 0 30px; - min-height: 73px; - position: fixed; - top: 0; - left: auto; - right: 0; - width: calc(100% - 260px); - display: inline-block; - z-index: 99; - margin: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.04); - -moz-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.04); - -ms-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.04); - -o-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.04); - box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.04); -} -.iq-top-navbar .iq-navbar-custom .navbar-breadcrumb { - display: block; - margin-left: 0px; - padding: 20px 0; -} -.iq-top-navbar .breadcrumb { - background: transparent; - padding: 0; - margin: 0; -} -.iq-top-navbar .breadcrumb .breadcrumb-item.active { - color: #676e8a; -} -.iq-top-navbar .breadcrumb li { - list-style-type: none; - font-size: 14px; -} -.iq-top-navbar .breadcrumb li a { - text-decoration: none; -} -.iq-top-navbar .breadcrumb li a:hover { - text-decoration: none; -} -.iq-top-navbar .navbar-expand-lg { - justify-content: space-between !important; -} -.iq-top-navbar .iq-sub-dropdown { - width: 300px; - position: absolute; - top: 100%; - right: 0; - left: auto; - border: none; - -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) - both; - animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; - -webkit-transform: translateY(100%); - transform: translateY(100%); - background-color: #fff; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - padding: 0; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-top-navbar .iq-sub-dropdown .iq-card-body div { - -webkit-border-radius: 10px 10px 0 0; - -moz-border-radius: 10px 10px 0 0; - -ms-border-radius: 10px 10px 0 0; - -o-border-radius: 10px 10px 0 0; - border-radius: 10px 10px 0 0; -} -.iq-top-navbar .lang .iq-sub-dropdown { - width: auto; -} -.iq-top-navbar .iq-user-dropdown { - position: fixed; - left: auto; - right: 0; - width: 350px; - top: 0; - bottom: 0; - height: 100vh; - background: #fff; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - visibility: hidden; - -webkit-transform: translateX(100%); - -moz-transform: translateX(100%); - -ms-transform: translateX(100%); - -o-transform: translateX(100%); - transform: translateX(100%); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-top-navbar .navbar-brand { - padding: 0; -} - -body.sidebar-main .iq-top-navbar { - width: calc(100% - 70px); -} - -.iq-top-navbar.fixed-header { - margin: 0; - right: 0; - width: calc(100% - 330px); - -webkit-border-radius: 0; - -moz-border-radius: 0; - -ms-border-radius: 0; - -o-border-radius: 0; - border-radius: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.navbar-breadcrumb .breadcrumb { - padding: 0; - background: none; - margin-top: 5px; -} - -.breadcrumb-item + .breadcrumb-item::before { - content: "\ea5f"; - font-family: "remixicon"; - font-size: 14px; - vertical-align: sub; - color: #676e8a; -} - -.navbar-list { - margin: 0; - padding: 0; - float: right; -} -.navbar-list li { - float: left; - list-style-type: none; - position: relative; -} -.navbar-list li > .dropdown { - line-height: 73px; - cursor: pointer; -} -.navbar-list li > .dropdown .dropdown-menu { - -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) - both; - animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; - -webkit-transform: translateY(100%); - -moz-transform: translateY(100%); - -ms-transform: translateY(100%); - -o-transform: translateY(100%); - transform: translateY(100%); -} -.navbar-list li .dropdown-toggle::after { - display: none; -} -.navbar-list li > a.language-title { - font-size: 16px; -} -.navbar-list li > a { - color: #676e8a; - font-size: 18px; - padding: 0 10px; - display: block; - line-height: 73px; -} -.navbar-list li > a > img { - width: 50px; - height: 50px; - min-width: 50px; -} -.navbar-list li a:hover { - text-decoration: none; -} -.navbar-list li .caption { - line-height: 16px; -} -.navbar-list li .caption p { - color: #676e8a; - font-size: 12px; -} -.navbar-list li .iq-sub-dropdown .sub-card .iq-sub-card { - padding-bottom: 0; -} -.navbar-list li .iq-sub-dropdown .iq-sub-card { - font-size: inherit; - padding-bottom: 18px; - line-height: normal; - color: inherit; - display: inline-block; - width: 100%; -} -.navbar-list li .iq-sub-dropdown .iq-sub-card:last-child { - padding-bottom: 0; -} -.navbar-list li .iq-sub-dropdown .iq-sub-card.iq-sub-card-big { - width: auto; -} -.navbar-list li .add-btn { - line-height: 36px; - font-size: 16px; - margin-top: 5px; -} -.navbar-list li .image-flag { - min-width: auto; - height: auto; - width: auto; -} -.navbar-list li .profile-detail { - -webkit-border-radius: 10px 10px 0 0; - -moz-border-radius: 10px 10px 0 0; - -ms-border-radius: 10px 10px 0 0; - -o-border-radius: 10px 10px 0 0; - border-radius: 10px 10px 0 0; -} -.navbar-list li.iq-nav-user { - display: flex; - align-items: flex-start; -} -.navbar-list li.iq-nav-user span { - flex: 1; - font-size: 14px; -} -.navbar-list .caption-content { - line-height: normal; -} - -.badge-card { - border-radius: 5px !important; -} - -.menu-tag { - position: absolute; - background: #676e8a; - color: #fff; - display: inline-block; - top: 18px; - left: 18px; - font-size: 12px; - border-radius: 90px; - line-height: normal; - height: 18px; - width: 18px; - line-height: 18px; - text-align: center; - display: inline-block; -} - -.iq-breadcrumb { - display: none; -} - -.toggle-cart-info img { - width: 50px; -} - -.nav-item span.dots { - height: 6px; - width: 6px; - font-size: 0; - text-align: center; - padding: 0; - position: absolute; - top: 18px; - right: 3px; - border: 0; - animation: shadowDots 1s infinite; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} - -.nav-item span.count-mail { - height: 6px; - width: 5px; - font-size: 10px; - text-align: center; - line-height: 15px; - padding: 0; - position: absolute; - top: 18px; - right: 3px; - border: 0; - animation: shadow-pulse 1s infinite; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} - -.nav-item .badge.count-cart { - height: 15px; - width: 15px; - font-size: 10px; - text-align: center; - line-height: 15px; - padding: 0; - position: absolute; - top: 13px; - right: 0px; -} - -.top-nav-bottom { - margin-left: 260px; - border-top: 1px solid #88dffb; -} - -.topnav-toolbar li a { - display: block; - padding: 10px 15px; - text-transform: capitalize; - color: #ff7e41; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.topnav-toolbar li.date-today { - background: #c7cbd3; -} - -.topnav-toolbar li.active a { - background: #88dffb; - color: #32bdea; -} - -.topnav-toolbar ul li { - list-style: none; - padding: 13px 0; -} - -.iq-search-bar .searchbox { - width: 400px; - position: relative; -} - -.iq-search-bar .search-input { - width: 100%; - height: 40px; - padding: 5px 15px 5px 60px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - border: 1px solid #dcdfe8; - background-color: #ffffff; -} - -.iq-search-bar .search-link { - position: absolute; - left: 32px; - top: 4px; - color: #676e8a; -} - -.iq-navbar-logo { - padding: 0; - width: auto; - position: relative; - background: #fff; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - background: transparent; -} -.iq-navbar-logo a { - display: flex; - align-items: center; -} -.iq-navbar-logo a span { - margin-left: 10px; - font-size: 28px; - line-height: 26px; - font-weight: 500; - color: #01041b; - text-transform: capitalize; - flex: 1; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-navbar-logo a:hover { - text-decoration: none; -} -.iq-navbar-logo a:focus { - text-decoration: none; -} -.iq-navbar-logo img { - height: 25px; -} - -.iq-sub-dropdown.iq-sub-dropdown-large { - width: 500px; -} - -.cust-title { - border-bottom: 1px solid #dcdfe8; -} - -.crt-img { - background: #ffffff; - padding: 10px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.cust-dd .btn { - -webkit-border-radius: 0 0 10px 10px; - -moz-border-radius: 0 0 10px 10px; - -ms-border-radius: 0 0 10px 10px; - -o-border-radius: 0 0 10px 10px; - border-radius: 0 0 10px 10px; -} - -.dd-icon { - position: absolute; - right: 0; - bottom: 0; - width: 40px; - height: 40px; - background: #06a3d6; - color: #fff; - border-radius: 0 0 0 10px; - text-align: center; - line-height: 40px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - display: flex; - align-items: center; - justify-content: center; -} - -.right-ic { - -webkit-border-radius: 0 0 10px 10px; - -moz-border-radius: 0 0 10px 10px; - -ms-border-radius: 0 0 10px 10px; - -o-border-radius: 0 0 10px 10px; - border-radius: 0 0 10px 10px; - overflow: hidden; - border: none !important; -} -.right-ic:hover .dd-icon { - background: #32bdea; -} - -.iq-show .iq-sub-dropdown { - display: inline-block; -} - -.iq-sub-dropdown .iq-card-icon { - width: 45px; - height: 45px; - line-height: 40px; - font-size: 22px; -} - -.show-data .iq-user-dropdown { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - visibility: visible; - -webkit-transform: translateX(0); - -moz-transform: translateX(0); - -ms-transform: translateX(0); - -o-transform: translateX(0); - transform: translateX(0); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.iq-card-icon-small { - height: 40px; - width: 40px; - min-width: 40px; - display: inline-block; - line-height: 40px; - text-align: center; - font-size: 22px; -} - -.profile-details > a { - margin-bottom: 15px; - display: block; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.data-scrollbar { - height: 100vh; -} - -.navbar-toggler { - outline: none; -} - -.profile-detail { - position: relative; -} -.profile-detail .profile-img { - position: absolute; - left: 0; - right: 0; - bottom: -6px; - margin: 0 auto; - border: 0; - background: #fff; -} - -@media (min-width: 1300px) { - .iq-navbar-logo { - display: none !important; - } - .iq-navbar-logo > a { - display: none; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a.collapsed { - pointer-events: none; - } -} - -@media (max-width: 1199px) { - .iq-search-bar .searchbox { - width: 320px; - } -} - -@media (max-width: 1299px) { - .iq-top-navbar { - width: 100%; - } - .iq-top-navbar .iq-search-bar.device-search { - margin-left: 20px; - } - body.sidebar-main .iq-top-navbar { - width: 100%; - } -} - -.search-toggle.add-btn { - margin: 0 10px 0 12px; -} - -@media (min-width: 992px) { - .search-content { - display: none; - } - .navbar-list li:last-child > a { - padding: 0 0 0 10px; - } -} - -@media (max-width: 991px) { - .device-search { - display: none; - } - .navbar-collapse { - position: absolute; - top: 100%; - left: 0; - width: 100%; - background: #fff; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - } - .navbar-nav.navbar-list { - display: inline-block; - } - .iq-top-navbar { - padding: 16px 15px !important; - line-height: normal; - min-height: unset; - } - .iq-top-navbar .navbar-toggler { - color: #110a57; - background: transparent; - border: none; - padding: 0; - border-radius: 5px; - font-size: 24px; - margin-top: 0px; - } - .iq-top-navbar .iq-navbar-logo img { - height: 25px; - } - .iq-top-navbar .iq-search-bar { - line-height: normal; - } - .iq-top-navbar .navbar-list li .add-btn { - margin-top: 18px; - } - .iq-search-bar .searchbox { - width: 100%; - } -} - -@media (max-width: 767px) { - .iq-top-navbar .lang .iq-sub-dropdown { - width: 150px; - } -} - -@media (max-width: 575px) { - .search-toggle { - position: relative; - } - .iq-top-navbar .iq-sub-dropdown { - left: 0; - right: 0; - margin: 0 auto; - width: 270px; - } - .iq-top-navbar .iq-search-bar { - width: 100%; - } - .iq-top-navbar .iq-user-dropdown { - width: 300px; - } - .navbar-list li { - position: static; - } - .navbar-list li > a.language-title { - font-size: 0; - } -} - -@media (max-width: 479px) { - .navbar-list li > a { - padding: 0 7px; - } - .navbar-list li > a > img { - width: 40px; - height: 40px; - min-width: 40px; - } -} - -@media (max-width: 345px) { - .navbar-list li > a { - padding: 0 12px; - } -} - -.iq-right-fixed { - margin: 0 15px; -} - -.right-sidebar-mini { - top: 75px; - z-index: 100; - position: fixed; - width: 260px; - right: 0; - transform: translateX(calc(111% + -2em)); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.right-sidebar-mini .side-left-icon { - display: none; -} - -.right-sidebar-toggle { - position: absolute; - margin-left: -44px; - background: #fff; - padding: 15px; - display: inline; - top: 0; - z-index: 99; - -webkit-border-radius: 50px 0 0 50px; - -moz-border-radius: 50px 0 0 50px; - -ms-border-radius: 50px 0 0 50px; - -o-border-radius: 50px 0 0 50px; - border-radius: 50px 0 0 50px; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - cursor: pointer; -} -.right-sidebar-toggle span { - display: none !important; -} - -.right-sidebar-panel { - background-color: #fff; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - height: 91vh; - padding: 15px; - overflow-y: scroll; -} - -.right-sidebar { - transform: translateX(calc(10% + -1em)); -} -.right-sidebar .side-right-icon { - display: none; -} -.right-sidebar .side-left-icon { - display: block; -} - -@media (min-width: 1500px) { - .right-sidebar-mini { - transform: translateX(calc(10% + -1em)); - } - .right-sidebar-mini:hover .right-sidebar-toggle { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - margin-left: -44px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } - .right-sidebar-toggle { - z-index: -1; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - margin-left: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } - .right-sidebar-mini.right-sidebar { - transform: translateX(calc(111% + -2em)); - } - .right-sidebar-mini.right-sidebar .right-sidebar-toggle { - margin-left: -44px; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - body.right-sidebar-close footer { - width: calc(100vw - 260px); - } -} - -@media (min-width: 1300px) and (max-width: 1499px) { - .right-sidebar-mini { - transform: translateX(calc(111% + -8em)); - } - .right-sidebar-mini .media-body { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - .right-sidebar-mini.right-sidebar { - transform: translateX(calc(10% + -1em)); - } - .right-sidebar-mini.right-sidebar .media-body { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } -} - -.basic-drop-shadow { - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.bottom-left { - box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.15); -} - -.bottom-right { - box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15); -} - -.top-left { - box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.15); -} - -.top-right { - box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.15); -} - -.shadow-bottom { - box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.15); -} - -.inner-shadow { - box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15); -} - -.blur-shadow { - box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.15); -} - -@keyframes rippleDrop { - 100% { - -webkit-transform: scale(2); - -moz-transform: scale(2); - -ms-transform: scale(2); - -o-transform: scale(2); - transform: scale(2); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} - -.ripple { - width: 0; - height: 0; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - background: #88dffb; - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - position: absolute; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} - -.rippleEffect { - animation: rippleDrop 0.6s linear; -} - -.media-support { - display: inline-block; - width: 100%; -} - -.media-support-user-img img { - height: 60px; -} - -.media-support-header { - display: flex; - align-items: flex-start; -} - -.media-support-info { - flex: 1; -} - -.projects-media img { - height: 60px; -} - -.iq-media-group .iq-media { - margin-left: -20px; - position: relative; - z-index: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-media-group .iq-media:hover { - z-index: 9; -} -.iq-media-group .iq-media img { - border: 2px solid #dcdfe8; -} -.iq-media-group .iq-media:first-child { - margin-left: 0; -} - -.iq-media-group .iq-media.border { - border: 2px solid #dcdfe8; -} - -.iq-media { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - background-repeat: no-repeat; - background-position: center center; - background-size: cover; -} -.iq-media:hover { - text-decoration: none; -} - -.media-pl { - text-align: center; -} - -.badge { - padding: 0.3em 0.6em; - line-height: 1.3; - text-transform: capitalize; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.breadcrumb.bg-primary .breadcrumb-item + .breadcrumb-item::before { - color: #fff; -} - -.alert { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} -.alert.bg-white { - border-width: 2px; -} -.alert .iq-alert-icon { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0 1.3rem 0 0; -} -.alert .iq-alert-icon i { - font-size: 2.441em; - line-height: normal; -} -.alert .iq-alert-text { - -ms-flex-item-align: center; - align-self: center; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} -.alert .close { - float: right; - font-size: 20px; - font-weight: 400; - line-height: 1; - color: #fff; - text-shadow: none; - opacity: 1; -} - -.close:not(:disabled):not(.disabled):focus { - outline: none; -} - -.close:not(:disabled):not(.disabled):hover { - outline: none; -} - -.dark .alert-primary { - color: #32bdea; - background-color: rgba(50, 189, 234, 0.2); - border-color: #c6edf9; -} -.dark .alert-primary hr { - border-top-color: #afe6f7; -} -.dark .alert-primary .alert-link { - color: #16a5d3; -} -.dark .alert-primary.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-secondary { - color: #ff7e41; - background-color: rgba(255, 126, 65, 0.2); - border-color: #ffdbca; -} -.dark .alert-secondary hr { - border-top-color: #ffcab1; -} -.dark .alert-secondary .alert-link { - color: #ff5b0e; -} -.dark .alert-secondary.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-success { - color: #78c091; - background-color: rgba(120, 192, 145, 0.2); - border-color: #d9ede0; -} -.dark .alert-success hr { - border-top-color: #c8e5d2; -} -.dark .alert-success .alert-link { - color: #55b075; -} -.dark .alert-success.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-info { - color: #7ee2ff; - background-color: rgba(126, 226, 255, 0.2); - border-color: #dbf7ff; -} -.dark .alert-info hr { - border-top-color: #c2f1ff; -} -.dark .alert-info .alert-link { - color: #4bd7ff; -} -.dark .alert-info.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-warning { - color: #ff9770; - background-color: rgba(255, 151, 112, 0.2); - border-color: #ffe2d7; -} -.dark .alert-warning hr { - border-top-color: #ffd0be; -} -.dark .alert-warning .alert-link { - color: #ff723d; -} -.dark .alert-warning.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-danger { - color: #e08db4; - background-color: rgba(224, 141, 180, 0.2); - border-color: #f6dfea; -} -.dark .alert-danger hr { - border-top-color: #f0cbdd; -} -.dark .alert-danger .alert-link { - color: #d5659a; -} -.dark .alert-danger.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-light { - color: #c7cbd3; - background-color: rgba(199, 203, 211, 0.2); - border-color: #eff0f3; -} -.dark .alert-light hr { - border-top-color: #e0e2e8; -} -.dark .alert-light .alert-link { - color: #aab0bd; -} -.dark .alert-light.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-dark { - color: #01041b; - background-color: rgba(1, 4, 27, 0.2); - border-color: #b8b9bf; -} -.dark .alert-dark hr { - border-top-color: #abacb3; -} -.dark .alert-dark .alert-link { - color: black; -} -.dark .alert-dark.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-orange { - color: #ff7e41; - background-color: rgba(255, 126, 65, 0.2); - border-color: #ffdbca; -} -.dark .alert-orange hr { - border-top-color: #ffcab1; -} -.dark .alert-orange .alert-link { - color: #ff5b0e; -} -.dark .alert-orange.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-purple { - color: #4731b6; - background-color: rgba(71, 49, 182, 0.2); - border-color: #cbc5eb; -} -.dark .alert-purple hr { - border-top-color: #bab2e4; -} -.dark .alert-purple .alert-link { - color: #37268e; -} -.dark .alert-purple.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-skyblue { - color: #158df7; - background-color: rgba(21, 141, 247, 0.2); - border-color: #bddffd; -} -.dark .alert-skyblue hr { - border-top-color: #a4d3fc; -} -.dark .alert-skyblue .alert-link { - color: #0773d2; -} -.dark .alert-skyblue.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.dark .alert-light-gray { - color: #f4f5fa; - background-color: rgba(244, 245, 250, 0.2); - border-color: #fcfcfe; -} -.dark .alert-light-gray hr { - border-top-color: #e9e9f8; -} -.dark .alert-light-gray .alert-link { - color: #d1d5ea; -} -.dark .alert-light-gray.bg-white { - background-color: #0d0d0d !important; - color: #c7cbd3 !important; -} - -.iq-example-row .row > .col { - padding-top: 0.75rem; - color: #676e8a; - padding-bottom: 0.75rem; - background-color: rgba(86, 61, 124, 0.15); - border: 1px solid rgba(86, 61, 124, 0.2); -} - -.iq-example-row .row > [class^="col-"] { - padding-top: 0.75rem; - color: #676e8a; - padding-bottom: 0.75rem; - background-color: rgba(86, 61, 124, 0.15); - border: 1px solid rgba(86, 61, 124, 0.2); -} - -.iq-example-row-flex-cols .row { - margin-bottom: 15px; - min-height: 10rem; - background-color: rgba(255, 0, 0, 0.1); -} - -.nav-pills .nav-item a { - color: #676e8a; -} - -.nav-pills .nav-link.active { - color: #32bdea; - background: #88dffb; -} - -.nav-pills .show > .nav-link { - color: #32bdea; - background: #88dffb; -} - -.nav-pills .nav-link:hover { - color: #32bdea; -} - -.nav-tabs { - border-bottom: 2px solid #88dffb; - margin-bottom: 15px; -} -.nav-tabs .nav-item { - margin-bottom: -2px; -} -.nav-tabs .nav-item a { - color: #676e8a; - border: none; - border-bottom: 2px solid transparent; -} -.nav-tabs .nav-item.show .nav-link { - border-bottom: 2px solid #32bdea; - color: #32bdea; -} -.nav-tabs .nav-link.active { - border-bottom: 2px solid #32bdea; - color: #32bdea; -} - -.custom-checkbox.custom-checkbox-color input.bg-primary ~ label::before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} - -.custom-checkbox.custom-checkbox-color input.bg-success ~ label::before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} - -.custom-checkbox.custom-checkbox-color input.bg-danger ~ label::before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} - -.custom-checkbox.custom-checkbox-color input.bg-warning ~ label::before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} - -.custom-checkbox.custom-checkbox-color input.bg-dark ~ label::before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} - -.custom-checkbox.custom-checkbox-color input.bg-info ~ label::before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} - -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-primary - ~ label::before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} - -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-success - ~ label::before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} - -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-danger - ~ label::before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} - -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-warning - ~ label::before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} - -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-dark - ~ label::before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} - -.custom-checkbox.custom-checkbox-color-check - input:checked.bg-info - ~ label::before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} - -.custom-radio.custom-radio-color input.bg-primary ~ label::before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} - -.custom-radio.custom-radio-color input.bg-success ~ label::before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} - -.custom-radio.custom-radio-color input.bg-danger ~ label::before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} - -.custom-radio.custom-radio-color input.bg-warning ~ label::before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} - -.custom-radio.custom-radio-color input.bg-dark ~ label::before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} - -.custom-radio.custom-radio-color input.bg-info ~ label::before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} - -.custom-radio.custom-radio-color-checked - input:checked.bg-primary - ~ label::before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} - -.custom-radio.custom-radio-color-checked - input:checked.bg-success - ~ label::before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} - -.custom-radio.custom-radio-color-checked - input:checked.bg-danger - ~ label::before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} - -.custom-radio.custom-radio-color-checked - input:checked.bg-warning - ~ label::before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} - -.custom-radio.custom-radio-color-checked input:checked.bg-dark ~ label::before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} - -.custom-radio.custom-radio-color-checked input:checked.bg-info ~ label::before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} - -.custom-switch.custom-switch-color input:checked.bg-primary ~ label::before { - background-color: #32bdea !important; - border-color: #32bdea !important; -} - -.custom-switch.custom-switch-color input:checked.bg-success ~ label::before { - background-color: #78c091 !important; - border-color: #78c091 !important; -} - -.custom-switch.custom-switch-color input:checked.bg-danger ~ label::before { - background-color: #e08db4 !important; - border-color: #e08db4 !important; -} - -.custom-switch.custom-switch-color input:checked.bg-warning ~ label::before { - background-color: #ff9770 !important; - border-color: #ff9770 !important; -} - -.custom-switch.custom-switch-color input:checked.bg-dark ~ label::before { - background-color: #676e8a !important; - border-color: #676e8a !important; -} - -.custom-switch.custom-switch-color input:checked.bg-info ~ label::before { - background-color: #7ee2ff !important; - border-color: #7ee2ff !important; -} - -.custom-checkbox.checkbox-icon label i { - position: absolute; - top: 6px; - left: -21px; - font-size: 10px; - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.custom-checkbox.checkbox-icon input:checked ~ label i { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); - color: #fff; -} - -.custom-checkbox.checkbox-icon input:checked ~ label::after { - display: none; -} - -.custom-control-input:checked ~ .custom-control-label::before { - background-color: #32bdea; - border-color: #32bdea; -} - -.custom-checkbox - .custom-control-input:disabled:checked - ~ .custom-control-label::before { - background-color: #88dffb; - color: #32bdea; -} - -.custom-radio - .custom-control-input:disabled:checked - ~ .custom-control-label::before { - background-color: #88dffb; - color: #32bdea; -} - -.custom-select:focus { - box-shadow: none; -} - -.custom-control-label { - line-height: 22px; -} - -.custom-switch.custom-switch-icon { - padding-left: 0; -} -.custom-switch.custom-switch-icon label .switch-icon-left { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -2px; - left: 8px; - right: auto; - color: #fff; -} -.custom-switch.custom-switch-icon label .switch-icon-left i { - font-size: 10px; -} -.custom-switch.custom-switch-icon label .switch-icon-right { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -3px; - right: 5px; - left: auto; -} -.custom-switch.custom-switch-icon label .switch-icon-right i { - font-size: 10px; -} -.custom-switch.custom-switch-icon .custom-control-label { - height: 20px; - width: 42px; - padding: 0; -} -.custom-switch.custom-switch-icon .custom-control-label::before { - height: 20px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - user-select: none; - top: 0; - left: 1px; - width: 2.75rem; -} -.custom-switch.custom-switch-icon .custom-control-label:after { - position: absolute; - top: 1px; - left: 2px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - user-select: none; - height: 18px; - width: 18px; -} -.custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label::after { - -webkit-transform: translateX(1.4rem); - -moz-transform: translateX(1.4rem); - -ms-transform: translateX(1.4rem); - -o-transform: translateX(1.4rem); - transform: translateX(1.4rem); -} - -.custom-switch.custom-switch-text { - padding-left: 0; -} -.custom-switch.custom-switch-text label .switch-icon-left { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -3px; - left: 8px; - right: auto; - color: #fff; -} -.custom-switch.custom-switch-text label .switch-icon-right { - position: absolute; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - top: -3px; - right: 5px; - left: auto; -} -.custom-switch.custom-switch-text label::before { - color: #000; - content: attr(data-off-label); - width: 2.85rem; - height: 20px; - padding: 0 4px; - font-size: 11px; - line-height: 18px; - text-align: right; -} -.custom-switch.custom-switch-text label:after { - position: absolute; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - user-select: none; - height: 16px; - width: 16px; -} -.custom-switch.custom-switch-text .custom-control-label { - width: 46px; -} -.custom-switch.custom-switch-text .custom-control-label::before { - height: 20px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - user-select: none; - top: 0; - left: 1px; - width: 2.75rem; - width: 100%; -} -.custom-switch.custom-switch-text .custom-control-label:after { - position: absolute; - top: 1px; - left: 2px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - user-select: none; - height: 18px; - width: 18px; -} -.custom-switch.custom-switch-text - .custom-control-input:checked - ~ .custom-control-label::after { - -webkit-transform: translateX(1.6rem); - -moz-transform: translateX(1.6rem); - -ms-transform: translateX(1.6rem); - -o-transform: translateX(1.6rem); - transform: translateX(1.6rem); -} -.custom-switch.custom-switch-text input:checked ~ label::before { - color: #fff; - content: attr(data-on-label); - text-align: left; -} -.custom-switch.custom-switch-text - input:checked - ~ label.custom-control-label::after { - -webkit-transform: translateX(1.6rem); - -moz-transform: translateX(1.6rem); - -ms-transform: translateX(1.6rem); - -o-transform: translateX(1.6rem); - transform: translateX(1.6rem); -} - -.custom-switch-inner { - display: block; - text-align: center; -} - -.form-label-group { - position: relative; - margin-bottom: 1.5rem; -} -.form-label-group > label { - position: absolute; - top: 0; - left: 0; - display: block; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - padding: 0.6rem; - color: #475f7b; - font-size: 0.85rem; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; -} - -.counter-value { - color: #fff; - padding: 1px 6px; - font-size: 0.6rem; - -webkit-border-radius: 0 0 10px 10px; - -moz-border-radius: 0 0 10px 10px; - -ms-border-radius: 0 0 10px 10px; - -o-border-radius: 0 0 10px 10px; - border-radius: 0 0 10px 10px; - margin-right: 1rem; -} - -.vector-map.h-500 { - width: 100%; - height: 500px; -} - -.countdown { - margin: 60px 0 0; - padding: 0; -} -.countdown li span { - font-size: 60px; - display: inline-block; - width: 100%; - color: #32bdea; -} -.countdown li:last-child { - margin-right: 0; -} - -.iq-comingsoon-form { - position: relative; -} -.iq-comingsoon-form button { - position: absolute; - right: 0; - top: 0; - padding: 11px 30px; -} - -.btn { - display: inline-block; - font-family: "Lato", sans-serif; - font-weight: 400; - color: #676e8a; - text-align: center; - vertical-align: middle; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 10px; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} -.btn:hover { - color: #676e8a; - text-decoration: none; -} -.btn:focus, -.btn.focus { - outline: none; - box-shadow: none; -} -.btn.disabled, -.btn:disabled { - opacity: 0.65; - box-shadow: none; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -.btn:not(:disabled):not(.disabled):active, -.btn:not(:disabled):not(.disabled).active { - box-shadow: none; -} -.btn:not(:disabled):not(.disabled):active:focus, -.btn:not(:disabled):not(.disabled).active:focus { - box-shadow: none; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; - box-shadow: unset; -} -.btn-primary:hover { - color: #fff; - background-color: #17aedf; - border-color: #16a5d3; -} -.btn-primary:focus, -.btn-primary.focus { - color: #fff; - background-color: #17aedf; - border-color: #16a5d3; - box-shadow: unset, 0 0 0 0.2rem rgba(81, 199, 237, 0.5); -} -.btn-primary.disabled, -.btn-primary:disabled { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-primary:not(:disabled):not(.disabled):active, -.btn-primary:not(:disabled):not(.disabled).active, -.show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #16a5d3; - border-color: #149cc8; -} -.btn-primary:not(:disabled):not(.disabled):active:focus, -.btn-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-primary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(81, 199, 237, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; - box-shadow: unset; -} -.btn-secondary:hover { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; -} -.btn-secondary:focus, -.btn-secondary.focus { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; - box-shadow: unset, 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-secondary.disabled, -.btn-secondary:disabled { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-secondary:not(:disabled):not(.disabled):active, -.btn-secondary:not(:disabled):not(.disabled).active, -.show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #ff5b0e; - border-color: #ff5301; -} -.btn-secondary:not(:disabled):not(.disabled):active:focus, -.btn-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-secondary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} - -.btn-success { - color: #fff; - background-color: #78c091; - border-color: #78c091; - box-shadow: unset; -} -.btn-success:hover { - color: #fff; - background-color: #5eb47c; - border-color: #55b075; -} -.btn-success:focus, -.btn-success.focus { - color: #fff; - background-color: #5eb47c; - border-color: #55b075; - box-shadow: unset, 0 0 0 0.2rem rgba(140, 201, 162, 0.5); -} -.btn-success.disabled, -.btn-success:disabled { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-success:not(:disabled):not(.disabled):active, -.btn-success:not(:disabled):not(.disabled).active, -.show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #55b075; - border-color: #4fa96e; -} -.btn-success:not(:disabled):not(.disabled):active:focus, -.btn-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-success.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(140, 201, 162, 0.5); -} - -.btn-info { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; - box-shadow: unset; -} -.btn-info:hover { - color: #fff; - background-color: #58d9ff; - border-color: #4bd7ff; -} -.btn-info:focus, -.btn-info.focus { - color: #fff; - background-color: #58d9ff; - border-color: #4bd7ff; - box-shadow: unset, 0 0 0 0.2rem rgba(145, 230, 255, 0.5); -} -.btn-info.disabled, -.btn-info:disabled { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-info:not(:disabled):not(.disabled):active, -.btn-info:not(:disabled):not(.disabled).active, -.show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #4bd7ff; - border-color: #3ed4ff; -} -.btn-info:not(:disabled):not(.disabled):active:focus, -.btn-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-info.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(145, 230, 255, 0.5); -} - -.btn-warning { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; - box-shadow: unset; -} -.btn-warning:hover { - color: #fff; - background-color: #ff7b4a; - border-color: #ff723d; -} -.btn-warning:focus, -.btn-warning.focus { - color: #fff; - background-color: #ff7b4a; - border-color: #ff723d; - box-shadow: unset, 0 0 0 0.2rem rgba(255, 167, 133, 0.5); -} -.btn-warning.disabled, -.btn-warning:disabled { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-warning:not(:disabled):not(.disabled):active, -.btn-warning:not(:disabled):not(.disabled).active, -.show > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ff723d; - border-color: #ff6930; -} -.btn-warning:not(:disabled):not(.disabled):active:focus, -.btn-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-warning.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 167, 133, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; - box-shadow: unset; -} -.btn-danger:hover { - color: #fff; - background-color: #d86fa0; - border-color: #d5659a; -} -.btn-danger:focus, -.btn-danger.focus { - color: #fff; - background-color: #d86fa0; - border-color: #d5659a; - box-shadow: unset, 0 0 0 0.2rem rgba(229, 158, 191, 0.5); -} -.btn-danger.disabled, -.btn-danger:disabled { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-danger:not(:disabled):not(.disabled):active, -.btn-danger:not(:disabled):not(.disabled).active, -.show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #d5659a; - border-color: #d25b93; -} -.btn-danger:not(:disabled):not(.disabled):active:focus, -.btn-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-danger.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(229, 158, 191, 0.5); -} - -.btn-light { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; - box-shadow: unset; -} -.btn-light:hover { - color: #fff; - background-color: #b2b7c2; - border-color: #aab0bd; -} -.btn-light:focus, -.btn-light.focus { - color: #fff; - background-color: #b2b7c2; - border-color: #aab0bd; - box-shadow: unset, 0 0 0 0.2rem rgba(174, 178, 186, 0.5); -} -.btn-light.disabled, -.btn-light:disabled { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-light:not(:disabled):not(.disabled):active, -.btn-light:not(:disabled):not(.disabled).active, -.show > .btn-light.dropdown-toggle { - color: #fff; - background-color: #aab0bd; - border-color: #a3aab7; -} -.btn-light:not(:disabled):not(.disabled):active:focus, -.btn-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-light.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(174, 178, 186, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #01041b; - border-color: #01041b; - box-shadow: unset; -} -.btn-dark:hover { - color: #fff; - background-color: black; - border-color: black; -} -.btn-dark:focus, -.btn-dark.focus { - color: #fff; - background-color: black; - border-color: black; - box-shadow: unset, 0 0 0 0.2rem rgba(39, 42, 61, 0.5); -} -.btn-dark.disabled, -.btn-dark:disabled { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-dark:not(:disabled):not(.disabled):active, -.btn-dark:not(:disabled):not(.disabled).active, -.show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: black; - border-color: black; -} -.btn-dark:not(:disabled):not(.disabled):active:focus, -.btn-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-dark.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(39, 42, 61, 0.5); -} - -.btn-orange { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; - box-shadow: unset; -} -.btn-orange:hover { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; -} -.btn-orange:focus, -.btn-orange.focus { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; - box-shadow: unset, 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-orange.disabled, -.btn-orange:disabled { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-orange:not(:disabled):not(.disabled):active, -.btn-orange:not(:disabled):not(.disabled).active, -.show > .btn-orange.dropdown-toggle { - color: #fff; - background-color: #ff5b0e; - border-color: #ff5301; -} -.btn-orange:not(:disabled):not(.disabled):active:focus, -.btn-orange:not(:disabled):not(.disabled).active:focus, -.show > .btn-orange.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} - -.btn-purple { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; - box-shadow: unset; -} -.btn-purple:hover { - color: #fff; - background-color: #3b2998; - border-color: #37268e; -} -.btn-purple:focus, -.btn-purple.focus { - color: #fff; - background-color: #3b2998; - border-color: #37268e; - box-shadow: unset, 0 0 0 0.2rem rgba(99, 80, 193, 0.5); -} -.btn-purple.disabled, -.btn-purple:disabled { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-purple:not(:disabled):not(.disabled):active, -.btn-purple:not(:disabled):not(.disabled).active, -.show > .btn-purple.dropdown-toggle { - color: #fff; - background-color: #37268e; - border-color: #332384; -} -.btn-purple:not(:disabled):not(.disabled):active:focus, -.btn-purple:not(:disabled):not(.disabled).active:focus, -.show > .btn-purple.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(99, 80, 193, 0.5); -} - -.btn-skyblue { - color: #fff; - background-color: #158df7; - border-color: #158df7; - box-shadow: unset; -} -.btn-skyblue:hover { - color: #fff; - background-color: #087ade; - border-color: #0773d2; -} -.btn-skyblue:focus, -.btn-skyblue.focus { - color: #fff; - background-color: #087ade; - border-color: #0773d2; - box-shadow: unset, 0 0 0 0.2rem rgba(56, 158, 248, 0.5); -} -.btn-skyblue.disabled, -.btn-skyblue:disabled { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-skyblue:not(:disabled):not(.disabled):active, -.btn-skyblue:not(:disabled):not(.disabled).active, -.show > .btn-skyblue.dropdown-toggle { - color: #fff; - background-color: #0773d2; - border-color: #076cc5; -} -.btn-skyblue:not(:disabled):not(.disabled):active:focus, -.btn-skyblue:not(:disabled):not(.disabled).active:focus, -.show > .btn-skyblue.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(56, 158, 248, 0.5); -} - -.btn-light-gray { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; - box-shadow: unset; -} -.btn-light-gray:hover { - color: #212529; - background-color: #daddee; - border-color: #d1d5ea; -} -.btn-light-gray:focus, -.btn-light-gray.focus { - color: #212529; - background-color: #daddee; - border-color: #d1d5ea; - box-shadow: unset, 0 0 0 0.2rem rgba(212, 214, 219, 0.5); -} -.btn-light-gray.disabled, -.btn-light-gray:disabled { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-light-gray:not(:disabled):not(.disabled):active, -.btn-light-gray:not(:disabled):not(.disabled).active, -.show > .btn-light-gray.dropdown-toggle { - color: #212529; - background-color: #d1d5ea; - border-color: #c8cde6; -} -.btn-light-gray:not(:disabled):not(.disabled):active:focus, -.btn-light-gray:not(:disabled):not(.disabled).active:focus, -.show > .btn-light-gray.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(212, 214, 219, 0.5); -} - -.btn-outline-primary { - color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:focus, -.btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #32bdea; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled):active, -.btn-outline-primary:not(:disabled):not(.disabled).active, -.show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, -.btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} - -.btn-outline-secondary { - color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:focus, -.btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-secondary.disabled, -.btn-outline-secondary:disabled { - color: #ff7e41; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active, -.btn-outline-secondary:not(:disabled):not(.disabled).active, -.show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, -.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} - -.btn-outline-success { - color: #78c091; - border-color: #78c091; -} -.btn-outline-success:hover { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-outline-success:focus, -.btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} -.btn-outline-success.disabled, -.btn-outline-success:disabled { - color: #78c091; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled):active, -.btn-outline-success:not(:disabled):not(.disabled).active, -.show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-outline-success:not(:disabled):not(.disabled):active:focus, -.btn-outline-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} - -.btn-outline-info { - color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:hover { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:focus, -.btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} -.btn-outline-info.disabled, -.btn-outline-info:disabled { - color: #7ee2ff; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled):active, -.btn-outline-info:not(:disabled):not(.disabled).active, -.show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:not(:disabled):not(.disabled):active:focus, -.btn-outline-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} - -.btn-outline-warning { - color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:hover { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:focus, -.btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} -.btn-outline-warning.disabled, -.btn-outline-warning:disabled { - color: #ff9770; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled):active, -.btn-outline-warning:not(:disabled):not(.disabled).active, -.show > .btn-outline-warning.dropdown-toggle { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, -.btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} - -.btn-outline-danger { - color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:focus, -.btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} -.btn-outline-danger.disabled, -.btn-outline-danger:disabled { - color: #e08db4; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled):active, -.btn-outline-danger:not(:disabled):not(.disabled).active, -.show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, -.btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} - -.btn-outline-light { - color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:hover { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:focus, -.btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} -.btn-outline-light.disabled, -.btn-outline-light:disabled { - color: #c7cbd3; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled):active, -.btn-outline-light:not(:disabled):not(.disabled).active, -.show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:not(:disabled):not(.disabled):active:focus, -.btn-outline-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} - -.btn-outline-dark { - color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:focus, -.btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} -.btn-outline-dark.disabled, -.btn-outline-dark:disabled { - color: #01041b; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled):active, -.btn-outline-dark:not(:disabled):not(.disabled).active, -.show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, -.btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} - -.btn-outline-orange { - color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:hover { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:focus, -.btn-outline-orange.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-orange.disabled, -.btn-outline-orange:disabled { - color: #ff7e41; - background-color: transparent; -} -.btn-outline-orange:not(:disabled):not(.disabled):active, -.btn-outline-orange:not(:disabled):not(.disabled).active, -.show > .btn-outline-orange.dropdown-toggle { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:not(:disabled):not(.disabled):active:focus, -.btn-outline-orange:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-orange.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} - -.btn-outline-purple { - color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:hover { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:focus, -.btn-outline-purple.focus { - box-shadow: 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} -.btn-outline-purple.disabled, -.btn-outline-purple:disabled { - color: #4731b6; - background-color: transparent; -} -.btn-outline-purple:not(:disabled):not(.disabled):active, -.btn-outline-purple:not(:disabled):not(.disabled).active, -.show > .btn-outline-purple.dropdown-toggle { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:not(:disabled):not(.disabled):active:focus, -.btn-outline-purple:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-purple.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} - -.btn-outline-skyblue { - color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:hover { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:focus, -.btn-outline-skyblue.focus { - box-shadow: 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} -.btn-outline-skyblue.disabled, -.btn-outline-skyblue:disabled { - color: #158df7; - background-color: transparent; -} -.btn-outline-skyblue:not(:disabled):not(.disabled):active, -.btn-outline-skyblue:not(:disabled):not(.disabled).active, -.show > .btn-outline-skyblue.dropdown-toggle { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:not(:disabled):not(.disabled):active:focus, -.btn-outline-skyblue:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-skyblue.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} - -.btn-outline-light-gray { - color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:hover { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:focus, -.btn-outline-light-gray.focus { - box-shadow: 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} -.btn-outline-light-gray.disabled, -.btn-outline-light-gray:disabled { - color: #f4f5fa; - background-color: transparent; -} -.btn-outline-light-gray:not(:disabled):not(.disabled):active, -.btn-outline-light-gray:not(:disabled):not(.disabled).active, -.show > .btn-outline-light-gray.dropdown-toggle { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:not(:disabled):not(.disabled):active:focus, -.btn-outline-light-gray:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-light-gray.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} - -.btn-link { - font-weight: 400; - color: #32bdea; - text-decoration: none; -} -.btn-link:hover { - color: #1393bc; - text-decoration: none; -} -.btn-link:focus, -.btn-link.focus { - text-decoration: none; -} -.btn-link:disabled, -.btn-link.disabled { - color: #6c757d; - pointer-events: none; -} - -.btn-lg, -.btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.btn-sm, -.btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.btn-lg, -.btn-group-lg > .btn { - font-size: inherit; - padding: 0.7rem 1rem; -} - -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.iq-progress-bar { - background: #c7cbd3; - box-shadow: 0 0 0; - height: 6px; - margin: 0; - position: relative; - width: 100%; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.iq-progress-bar > span { - background: #32bdea none repeat scroll 0 0; - position: relative; - display: block; - height: 100%; - width: 0; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.iq-progress-bar .progress-text { - position: absolute; - right: -10px; - top: -25px; - font-size: 13px; - font-weight: 500; -} - -.iq-progress-bar.iq-progress-bar-icon > span:after { - content: ""; - width: 12px; - height: 12px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - background: #fff; - border: 3px solid transparent; - position: absolute; - bottom: -3px; - right: 0; - z-index: 1; -} - -.iq-progress-bar.iq-progress-bar-icon > span.bg-primary:after { - border-color: #32bdea; -} - -.iq-progress-bar.iq-progress-bar-icon > span.bg-danger:after { - border-color: #e08db4; -} - -.iq-progress-bar.iq-progress-bar-icon > span.bg-success:after { - border-color: #78c091; -} - -.iq-progress-bar.iq-progress-bar-icon > span.bg-warning:after { - border-color: #ff9770; -} - -.iq-progress-bar.iq-progress-bar-icon > span.bg-info:after { - border-color: #7ee2ff; -} - -.iq-progress-bar.iq-progress-bar-icon > span.bg-dark:after { - border-color: #01041b; -} - -.progress-round.heatmap-progress { - height: 97px; - width: 97px; -} -.progress-round.heatmap-progress .progress-bar { - border-width: 10px; -} -.progress-round.heatmap-progress::after { - border: 10px solid #ff9273; -} - -.progress-round.income-progress .progress-bar { - border-width: 10px; -} - -.progress-round.income-progress::after { - border: 10px solid #ff9273; -} - -.progress-round.alarams-progress { - height: 110px; - width: 110px; -} - -.iq-progress-bar .progress-text-one { - position: absolute; - right: -15px; - top: -35px; - font-size: 13px; - line-height: 24px; - font-weight: 500; - background: #e08db4; - color: #fff; - padding: 0px 5px; -} - -.iq-progress-bar > span.bg-primary .progress-text-one:after { - border-color: #32bdea transparent transparent transparent; -} - -.iq-progress-bar > span.bg-success .progress-text-one:after { - border-color: #78c091 transparent transparent transparent; -} - -.iq-progress-bar > span.bg-warning .progress-text-one:after { - border-color: #ff9770 transparent transparent transparent; -} - -.iq-progress-bar > span.bg-orange .progress-text-one:after { - border-color: #ff7e41 transparent transparent transparent; -} - -.iq-progress-bar > span.bg-danger .progress-text-one:after { - border-color: #e08db4 transparent transparent transparent; -} - -.iq-progress-bar > span.bg-dark .progress-text-one:after { - border-color: #01041b transparent transparent transparent; -} - -.iq-progress-bar > span.bg-info .progress-text-one:after { - border-color: #7ee2ff transparent transparent transparent; -} - -.iq-progress-bar > span.bg-skyblue .progress-text-one:after { - border-color: #158df7 transparent transparent transparent; -} - -.progress-text-one { - position: relative; -} -.progress-text-one:after { - content: ""; - position: absolute; - top: 100%; - left: 50%; - margin-left: -5px; - border-width: 5px; - border-style: solid; -} - -.iq-circle-progressbar { - margin: 0 auto; - width: 100px !important; - height: 100px !important; -} -.iq-circle-progressbar .percent { - font-size: 1.3rem !important; -} -.iq-circle-progressbar svg { - width: 100px !important; - height: 100px !important; -} - -.progress-round { - width: 50px; - height: 50px; - background: none; - position: relative; -} -.progress-round::after { - content: ""; - width: 100%; - height: 100%; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - border: 3px solid #dcdfe8; - position: absolute; - top: 0; - left: 0; -} -.progress-round > span { - width: 50%; - height: 100%; - overflow: hidden; - position: absolute; - top: 0; - z-index: 1; -} -.progress-round .progress-left { - left: 0; -} -.progress-round .progress-left .progress-bar { - left: 100%; - border-top-right-radius: 80px; - border-bottom-right-radius: 80px; - border-left: 0; - -webkit-transform-origin: center left; - transform-origin: center left; -} -.progress-round .progress-bar { - width: 100%; - height: 100%; - background: none; - border-width: 3px; - border-style: solid; - position: absolute; - top: 0; -} -.progress-round .progress-right { - right: 0; -} -.progress-round .progress-right .progress-bar { - left: -100%; - border-top-left-radius: 80px; - border-bottom-left-radius: 80px; - border-right: 0; - -webkit-transform-origin: center right; - transform-origin: center right; -} -.progress-round .progress-value { - position: absolute; - top: 0; - left: 0; -} - -.progress-round.income-progress { - height: 78px; - width: 78px; -} -.progress-round.income-progress .progress-bar { - border-width: 10px; -} -.progress-round.income-progress::after { - border: 10px solid #ff9273; -} - -.progress-round.alarams-progress { - height: 110px; - width: 110px; -} - -.progress-round.goal-progress { - width: 130px; - height: 130px; -} - -.progress-round.goal-progress .progress-bar { - border-width: 10px; -} - -.progress-round.goal-progress::after { - border: 10px solid #f4f4f4; -} - -@keyframes progress-loading-1 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - } -} - -@keyframes progress-loading-2 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(80deg); - -moz-transform: rotate(80deg); - -ms-transform: rotate(80deg); - -o-transform: rotate(80deg); - transform: rotate(80deg); - } -} - -.progress.progress-round { - width: 60px; - height: 60px; - line-height: 60px; - background: none; - margin: 0 auto; - box-shadow: none; - position: relative; -} -.progress.progress-round > span { - width: 50%; - height: 100%; - overflow: hidden; - position: absolute; - top: 0; - z-index: 1; -} -.progress.progress-round .progress-left { - left: 0; -} -.progress.progress-round .progress-left .progress-bar { - left: 100%; - border-top-right-radius: 80px; - border-bottom-right-radius: 80px; - border-left: 0; - -webkit-transform-origin: center left; - transform-origin: center left; - animation: progress-loading-2 1.5s linear forwards 1.8s; -} -.progress.progress-round .progress-bar { - border-width: 5px; -} -.progress.progress-round .progress-right { - right: 0; -} -.progress.progress-round .progress-right .progress-bar { - left: -100%; - border-top-left-radius: 80px; - border-bottom-left-radius: 80px; - border-right: 0; - -webkit-transform-origin: center right; - transform-origin: center right; - animation: progress-loading-1 1.8s linear forwards; -} -.progress.progress-round:after { - content: ""; - width: 100%; - height: 100%; - border-radius: 50%; - border: 5px solid #c7cbd3; - position: absolute; - top: 0; - left: 0; -} -.progress.progress-round .progress-value { - font-size: 16px; - left: 18px; -} - -.progress.danger .progress-bar { - border-color: #e08db4; -} - -.progress.warning .progress-bar { - border-color: #ff9770; -} - -.progress.success .progress-bar { - border-color: #78c091; -} - -.progress.info .progress-bar { - border-color: #7ee2ff; -} - -.progress.primary .progress-bar { - border-color: #32bdea; -} - -.progress.orange .progress-bar { - border-color: #ff7e41; -} - -.page-link { - border-color: #32bdea; -} - -.br-theme-bars-1to10 .br-widget { - height: 50px; - white-space: nowrap; -} -.br-theme-bars-1to10 .br-widget a { - display: block; - width: 12px; - padding: 5px 0; - height: 28px; - float: left; - background-color: #ddd; - margin: 1px; - text-align: center; -} -.br-theme-bars-1to10 .br-widget a.br-active { - background-color: #32bdea; -} -.br-theme-bars-1to10 .br-widget a.br-selected { - background-color: #32bdea; -} -.br-theme-bars-1to10 .br-widget .br-current-rating { - font-size: 20px; - line-height: 2; - float: right; - color: #32bdea; - font-weight: 400; -} - -.br-theme-bars-1to10 .br-readonly a { - cursor: default; -} - -.br-theme-bars-1to10 .br-readonly a.br-active { - background-color: #f2cd95; -} - -.br-theme-bars-1to10 .br-readonly a.br-selected { - background-color: #f2cd95; -} - -.br-theme-bars-1to10 .br-readonly .br-current-rating { - color: #f2cd95; -} - -.br-theme-bars-pill .br-widget { - white-space: nowrap; -} -.br-theme-bars-pill .br-widget a { - padding: 7px 15px; - background-color: #ddd; - color: #676e8a; - text-decoration: none; - font-size: 13px; - line-height: 3; - text-align: center; - font-weight: 400; -} -.br-theme-bars-pill .br-widget a:first-child { - -webkit-border-top-left-radius: 999px; - -webkit-border-bottom-left-radius: 999px; - -moz-border-radius-topleft: 999px; - -moz-border-radius-bottomleft: 999px; - border-top-left-radius: 999px; - border-bottom-left-radius: 999px; -} -.br-theme-bars-pill .br-widget a:last-child { - -webkit-border-top-right-radius: 999px; - -webkit-border-bottom-right-radius: 999px; - -moz-border-radius-top-right: 999px; - -moz-border-radius-bottom-right: 999px; - border-top-right-radius: 999px !important; - border-bottom-right-radius: 999px !important; -} -.br-theme-bars-pill .br-widget a.br-active { - background-color: #32bdea; - color: white; -} -.br-theme-bars-pill .br-widget a.br-selected { - background-color: #32bdea; - color: white; -} - -.br-theme-bars-pill .br-readonly a { - cursor: default; -} - -.br-theme-bars-pill .br-readonly a.br-active { - background-color: #7cead1; -} - -.br-theme-bars-pill .br-readonly a.br-selected { - background-color: #7cead1; -} - -.br-theme-fontawesome-stars .br-widget a { - margin-right: 8px !important; -} -.br-theme-fontawesome-stars .br-widget a:after { - font-family: "Font Awesome 5 Free"; - font-weight: 900; -} - -i.amber-text { - color: #32bdea !important; -} - -#rateMe1 i { - font-size: 18px; -} - -.mdb-rating .rate-popover { - color: #808080; -} - -.mdb-rating .live { - color: #000; -} - -.mdb-rating .oneStar { - color: #44370f; -} - -.mdb-rating .twoStars { - color: #96781e; -} - -.mdb-rating .threeStars { - color: #e2b52e; -} - -.mdb-rating .fourStars { - color: #f1ba12; -} - -.mdb-rating .fiveStars { - color: #f3cb06; -} - -.mdb-rating .amber-text { - color: #ffc107; -} - -.rating-faces i { - font-size: 21px; -} - -.br-theme-bars-movie .br-widget { - white-space: nowrap; -} -.br-theme-bars-movie .br-widget a { - display: block; - width: 60px; - height: 10px; - float: left; - background-color: transparent; - border: 1px solid #32bdea; - margin: 1px; -} -.br-theme-bars-movie .br-widget a.br-active { - background-color: #32bdea; -} -.br-theme-bars-movie .br-widget a.br-selected { - background-color: #32bdea; -} -.br-theme-bars-movie .br-widget .br-current-rating { - clear: both; - width: 240px; - text-align: center; - font-weight: 600; - display: block; - padding-top: 0.5em; - color: #32bdea; - font-weight: 400; -} - -.br-theme-bars-movie .br-readonly a { - cursor: default; -} - -.br-theme-bars-movie .br-readonly a.br-active { - background-color: #729bf8; -} - -.br-theme-bars-movie .br-readonly a.br-selected { - background-color: #729bf8; -} - -.br-theme-bars-movie .br-readonly .br-current-rating { - color: #729bf8; -} - -.br-theme-fontawesome-stars .br-widget { - height: 28px; - white-space: nowrap; -} -.br-theme-fontawesome-stars .br-widget a { - text-rendering: auto; - -webkit-font-smoothing: antialiased; - text-decoration: none; - margin-right: 2px; -} -.br-theme-fontawesome-stars .br-widget a:after { - content: "\f005"; - color: #d2d2d2; -} -.br-theme-fontawesome-stars .br-widget a.br-active:after { - color: #edb867; -} -.br-theme-fontawesome-stars .br-widget a.br-selected:after { - color: #edb867; -} -.br-theme-fontawesome-stars .br-widget .br-current-rating { - display: none; -} - -.br-theme-fontawesome-stars .br-readonly a { - cursor: default; -} - -/*------------ Basic Tree -------------------------------------*/ -/*-------------------- Checkbox Tree ----------------------------*/ -.basic-tree li { - list-style-type: none; - margin: 0; - padding: 10px 5px 0 5px; - position: relative; - color: #110a57; -} -.basic-tree li::before { - content: ""; - left: -20px; - position: absolute; - right: auto; - border-left: 1px solid #999; - bottom: 50px; - height: 100%; - top: 0; - width: 1px; -} -.basic-tree li::after { - content: ""; - left: -20px; - position: absolute; - right: auto; - border-top: 1px solid #999; - height: 20px; - top: 25px; - width: 25px; -} -.basic-tree li:last-child::before { - height: 30px; -} - -.basic-tree li.t-parent > span { - cursor: pointer; -} -.basic-tree li.t-parent > span:hover { - color: #32bdea; - color: #32bdea; -} - -.basic-tree > ul > li::before { - border: 0; -} - -.basic-tree > ul > li::after { - border: 0; -} - -.flex-tree li { - position: relative; - list-style: none; - margin: 0; -} -.flex-tree li::before { - content: ""; - left: -20px; - position: absolute; - right: auto; - border-left: 1px solid #999; - bottom: 50px; - height: 100%; - top: 0; - width: 1px; - left: -25px; -} -.flex-tree li::after { - content: ""; - left: -20px; - position: absolute; - right: auto; - border-top: 1px solid #999; - height: 20px; - top: 25px; - width: 25px; - top: 12px; - left: -25px; -} -.flex-tree li:last-child::before { - height: 25px; -} -.flex-tree li label { - cursor: pointer; -} -.flex-tree li span { - cursor: pointer; -} -.flex-tree li span label { - cursor: pointer; -} -.flex-tree li span.open:after { - content: "\025BE"; - display: inline-block; - font: 400 16px/1 Arial, "Helvetica Neue", Helvetica, sans-serif; - width: 20px; - margin-top: 4px; - padding-left: 3px; - color: #ababab; -} -.flex-tree li span.closed:after { - content: "\025BE"; - display: inline-block; - font: 400 16px/1 Arial, "Helvetica Neue", Helvetica, sans-serif; - width: 20px; - margin-top: 4px; - padding-left: 3px; - color: #ababab; - content: "\025B4"; -} - -.flex-tree > ul > li::before { - border: 0; -} - -.flex-tree > ul > li::after { - border: 0; -} - -.flex-tree label { - font-weight: normal; -} - -.flex-tree label.node { - font-weight: bold; -} - -.flex-tree input[type="checkbox"] { - border: 1px solid #b4b9be; - background: #fff; - color: #555; - clear: none; - cursor: pointer; - display: inline-block; - line-height: 0; - height: 16px; - margin: -4px 4px 0 0; - outline: 0; - padding: 0; - text-align: center; - vertical-align: middle; - width: 16px; - min-width: 16px; - -webkit-appearance: none; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - transition: 0.05s border-color ease-in-out; -} -.flex-tree input[type="checkbox"]:focus { - border-color: #5b9dd9; - box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); -} -.flex-tree input[type="checkbox"]:checked { - background: #32bdea; - border: none; -} -.flex-tree input[type="checkbox"]:checked:before { - float: left; - display: inline-block; - vertical-align: middle; - width: 16px; - font: 400 20px/1 Arial, "Helvetica Neue", Helvetica, sans-serif; - -webkit-font-smoothing: antialiased; - content: "\02713"; - color: var(--white); - margin: 1px 0 0 0; - font-size: 17px !important; -} -.flex-tree input[type="checkbox"]:indeterminate:before { - float: left; - display: inline-block; - vertical-align: middle; - width: 16px; - font: 400 20px/1 Arial, "Helvetica Neue", Helvetica, sans-serif; - -webkit-font-smoothing: antialiased; - content: "\02043"; - color: #32bdea; - margin: -4px 0 0 -1px; -} - -.flex-tree input[type="checkbox"].indeterminate { - background-color: #eee; -} - -.ic-square { - width: 20px; - height: 20px; - background: transparent; - border: 1px solid #676e8a; - text-align: center; - line-height: 19px; - font-size: 12px; -} - -.tree-box { - margin: 0; -} - -.iq-footer { - padding: 0 15px; - margin-left: 260px; - width: calc(100vw - 264px); - background: #fff; - box-shadow: none; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-footer ul li a { - color: #676e8a; -} -.iq-footer ul li a:hover { - color: #32bdea; - text-decoration: none; -} - -body.tab-horizontal .iq-footer { - margin-left: 0; - width: 100%; -} - -.iq-mt--70 { - margin-top: -70px; -} - -.banner-main-text { - position: absolute; - left: 15%; - bottom: 13%; -} - -.nav.nav-pills.style-three { - margin-top: 10px; -} -.nav.nav-pills.style-three .nav-link.active:before { - display: inline-block; - width: 100%; - height: 3px; - background: #32bdea; - content: ""; - position: absolute; - left: 0; - bottom: 0px; -} -.nav.nav-pills.style-three .nav-link:hover:before { - display: inline-block; - width: 100%; - height: 3px; - background: #32bdea; - content: ""; - position: absolute; - left: 0; - bottom: 0px; -} -.nav.nav-pills.style-three .nav-link:before { - width: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - height: 3px; - background: #32bdea; - content: ""; - position: absolute; - right: 0; - bottom: 0px; -} -.nav.nav-pills.style-three a { - background: transparent; - position: relative; - margin-right: 30px; - padding: 10px 0px; -} -.nav.nav-pills.style-three a:last-child { - margin-right: 0px; -} - -.iq-card-body.banner-box { - padding-bottom: 0; -} - -@media (min-width: 1300px) { - body.sidebar-main .iq-footer { - margin-left: 70px; - width: calc(100vw - 74px); - } -} - -@media (max-width: 1299px) { - .iq-footer { - padding: 0px 15px; - margin-left: 0; - width: 100%; - } - body.sidebar-main .iq-footer { - padding: 15px 10px; - margin-left: 0; - width: 100%; - } - .without-right-sidebar .iq-footer { - width: 100%; - } -} - -@media (max-width: 991px) { - .iq-footer { - text-align: center !important; - padding: 0; - } - .iq-footer .col-lg-6.text-right { - text-align: center !important; - } -} - -.clear { - clear: both; -} - -@media (min-width: 1300px) { - .iq-menu-horizontal .iq-sidebar-menu li .iq-submenu.iq-submenu-data { - position: static; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-sidebar-logo { - display: none !important; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li:first-child a { - padding-left: 0px; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a:hover { - color: #32bdea; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li li .iq-arrow-right { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li ul { - display: block; - position: absolute; - top: 100%; - padding: 10px 0px; - min-width: 200px; - background: #fff; - z-index: 9; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - display: none; - animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; - -webkit-transform: translateY(100%); - -moz-transform: translateY(100%); - -ms-transform: translateY(100%); - -o-transform: translateY(100%); - transform: translateY(100%); - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu .iq-submenu li a { - padding: 12px 13px 12px 15px; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu > li:hover > a { - color: #32bdea; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li.menu-open .iq-arrow-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - } - .iq-menu-horizontal .iq-sidebar-menu li:hover > .iq-submenu { - display: block; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } - .iq-menu-horizontal .iq-sidebar-menu li:hover > .iq-submenu.iq-submenu-data { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } - .iq-menu-horizontal .iq-sidebar-menu li > .iq-submenu.iq-submenu-data { - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - visibility: visible; - left: 100%; - top: 0; - transform-origin: left center 0; - } - .iq-menu-horizontal .iq-sidebar-menu li > .iq-submenu .iq-arrow-right { - margin-right: 0px; - } - .iq-menu-horizontal .sub-scrll { - max-height: 315px; - overflow-y: scroll; - overflow-x: hidden; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li:hover .iq-arrow-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li:hover li .iq-arrow-right { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -@media (max-width: 1299px) { - .iq-menu-horizontal { - position: fixed; - left: 0; - right: 0; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - top: 0; - width: 0; - background: #fff; - height: 100vh; - z-index: 9; - overflow-y: scroll; - overflow-x: hidden; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } - .iq-menu-horizontal ul.iq-menu { - display: block !important; - background: #fff; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a { - padding: 15px 20px 15px 30px; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li a:hover { - color: #32bdea; - } - .iq-menu-horizontal .iq-sidebar-menu .iq-menu li ul { - position: static; - box-shadow: none; - } - .iq-menu-horizontal ul.iq-menu li a[aria-expanded="true"] .iq-arrow-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - } - .sidebar-main .iq-menu-horizontal { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - width: 260px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } -} - -.table { - border: 1px solid #dcdfe8; - border-radius: 10px; - overflow: hidden; - color: #110a57; -} -.table.table-dark th { - border-color: #110a57; - color: #fff; -} -.table.table-dark td { - border-color: #110a57; - color: #fff; -} -.table span, -.table p { - color: #676e8a; -} -.table .ligth { - white-space: nowrap; -} -.table .ligth th { - padding: 15px 20px !important; - text-transform: capitalize; - font-size: 17px; - line-height: 22px; - background: #f4f5fa; - color: #110a57; - border: 0px; - font-weight: 700 !important; -} -.table .ligth.ligth-data th:first-child { - text-align: center; - background-image: none; -} -.table .ligth.ligth-data th:last-child { - background-image: none; - text-align: center; -} -.table .ligth-body tr td:first-child { - text-align: center; -} -.table .ligth-body tr td:last-child { - text-align: center; -} -.table .ligth-body .list-action { - justify-content: center; -} -.table td { - padding: 15px 20px !important; - border: 0px; - border-bottom: 1px solid #dcdfe8; - color: #110a57; -} -.table label { - color: #110a57; -} - -.btn.add-list { - padding: 0.5rem 1rem; -} - -.dropdown-bg.btn { - background: #f4f5fa; - font-size: 14px; -} -.dropdown-bg.btn i { - margin-right: 0; -} - -.dropdown-menu { - animation: fade 400ms ease forwards; -} - -@keyframes fade { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@keyframes fadeInUp { - from { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@-webkit-keyframes dropdownAnimation { - 0% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } - 80% { - -webkit-transform: scale(1); - transform: scale(1); - } - 100% { - opacity: 1; - } -} - -@keyframes dropdownAnimation { - 0% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } - 80% { - -webkit-transform: scale(1); - transform: scale(1); - } - 100% { - opacity: 1; - } -} - -/* - * Background color - */ -.bg-blue { - color: #fff !important; - background-color: #32bdea !important; -} - -a.bg-blue:hover, -a.bg-blue:focus, -button.bg-blue:hover, -button.bg-blue:focus { - color: #fff !important; - background-color: #16a5d3 !important; -} - -.bg-indigo { - color: #fff !important; - background-color: #6610f2 !important; -} - -a.bg-indigo:hover, -a.bg-indigo:focus, -button.bg-indigo:hover, -button.bg-indigo:focus { - color: #fff !important; - background-color: #510bc4 !important; -} - -.bg-purple { - color: #fff !important; - background-color: #4731b6 !important; -} - -a.bg-purple:hover, -a.bg-purple:focus, -button.bg-purple:hover, -button.bg-purple:focus { - color: #fff !important; - background-color: #37268e !important; -} - -.bg-pink { - color: #fff !important; - background-color: #e83e8c !important; -} - -a.bg-pink:hover, -a.bg-pink:focus, -button.bg-pink:hover, -button.bg-pink:focus { - color: #fff !important; - background-color: #d91a72 !important; -} - -.bg-red { - color: #fff !important; - background-color: #e08db4 !important; -} - -a.bg-red:hover, -a.bg-red:focus, -button.bg-red:hover, -button.bg-red:focus { - color: #fff !important; - background-color: #d5659a !important; -} - -.bg-orange { - color: #fff !important; - background-color: #ff7e41 !important; -} - -a.bg-orange:hover, -a.bg-orange:focus, -button.bg-orange:hover, -button.bg-orange:focus { - color: #fff !important; - background-color: #ff5b0e !important; -} - -.bg-yellow { - color: #fff !important; - background-color: #ff9770 !important; -} - -a.bg-yellow:hover, -a.bg-yellow:focus, -button.bg-yellow:hover, -button.bg-yellow:focus { - color: #fff !important; - background-color: #ff723d !important; -} - -.bg-green { - color: #fff !important; - background-color: #78c091 !important; -} - -a.bg-green:hover, -a.bg-green:focus, -button.bg-green:hover, -button.bg-green:focus { - color: #fff !important; - background-color: #55b075 !important; -} - -.bg-teal { - color: #fff !important; - background-color: #20c997 !important; -} - -a.bg-teal:hover, -a.bg-teal:focus, -button.bg-teal:hover, -button.bg-teal:focus { - color: #fff !important; - background-color: #199d76 !important; -} - -.bg-cyan { - color: #fff !important; - background-color: #7ee2ff !important; -} - -a.bg-cyan:hover, -a.bg-cyan:focus, -button.bg-cyan:hover, -button.bg-cyan:focus { - color: #fff !important; - background-color: #4bd7ff !important; -} - -.bg-white { - color: #212529 !important; - background-color: #fff !important; -} - -a.bg-white:hover, -a.bg-white:focus, -button.bg-white:hover, -button.bg-white:focus { - color: #fff !important; - background-color: #e6e6e6 !important; -} - -.bg-gray { - color: #fff !important; - background-color: #6c757d !important; -} - -a.bg-gray:hover, -a.bg-gray:focus, -button.bg-gray:hover, -button.bg-gray:focus { - color: #fff !important; - background-color: #545b62 !important; -} - -.bg-gray-dark { - color: #fff !important; - background-color: #01041b !important; -} - -a.bg-gray-dark:hover, -a.bg-gray-dark:focus, -button.bg-gray-dark:hover, -button.bg-gray-dark:focus { - color: #fff !important; - background-color: black !important; -} - -.bg-skyblue { - color: #fff !important; - background-color: #158df7 !important; -} - -a.bg-skyblue:hover, -a.bg-skyblue:focus, -button.bg-skyblue:hover, -button.bg-skyblue:focus { - color: #fff !important; - background-color: #0773d2 !important; -} - -.bg-gradient-blue { - background: #32bdea linear-gradient(180deg, #51c7ed, #32bdea) repeat-x !important; -} - -.bg-gradient-indigo { - background: #6610f2 linear-gradient(180deg, #7d34f4, #6610f2) repeat-x !important; -} - -.bg-gradient-purple { - background: #4731b6 linear-gradient(180deg, #6350c1, #4731b6) repeat-x !important; -} - -.bg-gradient-pink { - background: #e83e8c linear-gradient(180deg, #eb5b9d, #e83e8c) repeat-x !important; -} - -.bg-gradient-red { - background: #e08db4 linear-gradient(180deg, #e59ebf, #e08db4) repeat-x !important; -} - -.bg-gradient-orange { - background: #ff7e41 linear-gradient(180deg, #ff915e, #ff7e41) repeat-x !important; -} - -.bg-gradient-yellow { - background: #ff9770 linear-gradient(180deg, #ffa785, #ff9770) repeat-x !important; -} - -.bg-gradient-green { - background: #78c091 linear-gradient(180deg, #8cc9a2, #78c091) repeat-x !important; -} - -.bg-gradient-teal { - background: #20c997 linear-gradient(180deg, #41d1a7, #20c997) repeat-x !important; -} - -.bg-gradient-cyan { - background: #7ee2ff linear-gradient(180deg, #91e6ff, #7ee2ff) repeat-x !important; -} - -.bg-gradient-white { - background: #fff linear-gradient(180deg, white, #fff) repeat-x !important; -} - -.bg-gradient-gray { - background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important; -} - -.bg-gradient-gray-dark { - background: #01041b linear-gradient(180deg, #272a3d, #01041b) repeat-x !important; -} - -.bg-gradient-skyblue { - background: #158df7 linear-gradient(180deg, #389ef8, #158df7) repeat-x !important; -} - -.bg-gradient-primary { - background: #32bdea linear-gradient(180deg, #51c7ed, #32bdea) repeat-x !important; -} - -.bg-gradient-secondary { - background: #ff7e41 linear-gradient(180deg, #ff915e, #ff7e41) repeat-x !important; -} - -.bg-gradient-success { - background: #78c091 linear-gradient(180deg, #8cc9a2, #78c091) repeat-x !important; -} - -.bg-gradient-info { - background: #7ee2ff linear-gradient(180deg, #91e6ff, #7ee2ff) repeat-x !important; -} - -.bg-gradient-warning { - background: #ff9770 linear-gradient(180deg, #ffa785, #ff9770) repeat-x !important; -} - -.bg-gradient-danger { - background: #e08db4 linear-gradient(180deg, #e59ebf, #e08db4) repeat-x !important; -} - -.bg-gradient-light { - background: #c7cbd3 linear-gradient(180deg, #cfd3da, #c7cbd3) repeat-x !important; -} - -.bg-gradient-dark { - background: #01041b linear-gradient(180deg, #272a3d, #01041b) repeat-x !important; -} - -.bg-gradient-orange { - background: #ff7e41 linear-gradient(180deg, #ff915e, #ff7e41) repeat-x !important; -} - -.bg-gradient-purple { - background: #4731b6 linear-gradient(180deg, #6350c1, #4731b6) repeat-x !important; -} - -.bg-gradient-skyblue { - background: #158df7 linear-gradient(180deg, #389ef8, #158df7) repeat-x !important; -} - -.bg-gradient-light-gray { - background: #f4f5fa linear-gradient(180deg, #f6f7fb, #f4f5fa) repeat-x !important; -} - -.bg-primary { - color: #fff !important; - background-color: #32bdea !important; -} - -a.bg-primary:hover, -a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - color: #fff !important; - background-color: #16a5d3 !important; -} - -.badge-primary { - color: #fff !important; - background-color: #32bdea !important; -} - -a.badge-primary:hover, -a.badge-primary:focus, -button.badge-primary:hover, -button.badge-primary:focus { - color: #fff !important; - background-color: #16a5d3 !important; -} - -.bg-secondary { - color: #fff !important; - background-color: #ff7e41 !important; -} - -a.bg-secondary:hover, -a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - color: #fff !important; - background-color: #ff5b0e !important; -} - -.badge-secondary { - color: #fff !important; - background-color: #ff7e41 !important; -} - -a.badge-secondary:hover, -a.badge-secondary:focus, -button.badge-secondary:hover, -button.badge-secondary:focus { - color: #fff !important; - background-color: #ff5b0e !important; -} - -.bg-success { - color: #fff !important; - background-color: #78c091 !important; -} - -a.bg-success:hover, -a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - color: #fff !important; - background-color: #55b075 !important; -} - -.badge-success { - color: #fff !important; - background-color: #78c091 !important; -} - -a.badge-success:hover, -a.badge-success:focus, -button.badge-success:hover, -button.badge-success:focus { - color: #fff !important; - background-color: #55b075 !important; -} - -.bg-info { - color: #fff !important; - background-color: #7ee2ff !important; -} - -a.bg-info:hover, -a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - color: #fff !important; - background-color: #4bd7ff !important; -} - -.badge-info { - color: #fff !important; - background-color: #7ee2ff !important; -} - -a.badge-info:hover, -a.badge-info:focus, -button.badge-info:hover, -button.badge-info:focus { - color: #fff !important; - background-color: #4bd7ff !important; -} - -.bg-warning { - color: #fff !important; - background-color: #ff9770 !important; -} - -a.bg-warning:hover, -a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - color: #fff !important; - background-color: #ff723d !important; -} - -.badge-warning { - color: #fff !important; - background-color: #ff9770 !important; -} - -a.badge-warning:hover, -a.badge-warning:focus, -button.badge-warning:hover, -button.badge-warning:focus { - color: #fff !important; - background-color: #ff723d !important; -} - -.bg-danger { - color: #fff !important; - background-color: #e08db4 !important; -} - -a.bg-danger:hover, -a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - color: #fff !important; - background-color: #d5659a !important; -} - -.badge-danger { - color: #fff !important; - background-color: #e08db4 !important; -} - -a.badge-danger:hover, -a.badge-danger:focus, -button.badge-danger:hover, -button.badge-danger:focus { - color: #fff !important; - background-color: #d5659a !important; -} - -.bg-light { - color: #212529 !important; - background-color: #c7cbd3 !important; -} - -a.bg-light:hover, -a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - color: #fff !important; - background-color: #aab0bd !important; -} - -.badge-light { - color: #212529 !important; - background-color: #c7cbd3 !important; -} - -a.badge-light:hover, -a.badge-light:focus, -button.badge-light:hover, -button.badge-light:focus { - color: #fff !important; - background-color: #aab0bd !important; -} - -.bg-dark { - color: #fff !important; - background-color: #01041b !important; -} - -a.bg-dark:hover, -a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - color: #fff !important; - background-color: black !important; -} - -.badge-dark { - color: #fff !important; - background-color: #01041b !important; -} - -a.badge-dark:hover, -a.badge-dark:focus, -button.badge-dark:hover, -button.badge-dark:focus { - color: #fff !important; - background-color: black !important; -} - -.bg-orange { - color: #fff !important; - background-color: #ff7e41 !important; -} - -a.bg-orange:hover, -a.bg-orange:focus, -button.bg-orange:hover, -button.bg-orange:focus { - color: #fff !important; - background-color: #ff5b0e !important; -} - -.badge-orange { - color: #fff !important; - background-color: #ff7e41 !important; -} - -a.badge-orange:hover, -a.badge-orange:focus, -button.badge-orange:hover, -button.badge-orange:focus { - color: #fff !important; - background-color: #ff5b0e !important; -} - -.bg-purple { - color: #fff !important; - background-color: #4731b6 !important; -} - -a.bg-purple:hover, -a.bg-purple:focus, -button.bg-purple:hover, -button.bg-purple:focus { - color: #fff !important; - background-color: #37268e !important; -} - -.badge-purple { - color: #fff !important; - background-color: #4731b6 !important; -} - -a.badge-purple:hover, -a.badge-purple:focus, -button.badge-purple:hover, -button.badge-purple:focus { - color: #fff !important; - background-color: #37268e !important; -} - -.bg-skyblue { - color: #fff !important; - background-color: #158df7 !important; -} - -a.bg-skyblue:hover, -a.bg-skyblue:focus, -button.bg-skyblue:hover, -button.bg-skyblue:focus { - color: #fff !important; - background-color: #0773d2 !important; -} - -.badge-skyblue { - color: #fff !important; - background-color: #158df7 !important; -} - -a.badge-skyblue:hover, -a.badge-skyblue:focus, -button.badge-skyblue:hover, -button.badge-skyblue:focus { - color: #fff !important; - background-color: #0773d2 !important; -} - -.bg-light-gray { - color: #212529 !important; - background-color: #f4f5fa !important; -} - -a.bg-light-gray:hover, -a.bg-light-gray:focus, -button.bg-light-gray:hover, -button.bg-light-gray:focus { - color: #fff !important; - background-color: #d1d5ea !important; -} - -.badge-light-gray { - color: #212529 !important; - background-color: #f4f5fa !important; -} - -a.badge-light-gray:hover, -a.badge-light-gray:focus, -button.badge-light-gray:hover, -button.badge-light-gray:focus { - color: #fff !important; - background-color: #d1d5ea !important; -} - -.bg-primary-light { - color: #1289ae !important; - background-color: #c6edf9 !important; -} - -a.bg-primary-light:hover, -a.bg-primary-light:focus, -button.bg-primary-light:hover, -button.bg-primary-light:focus { - color: #1289ae !important; - background-color: #98def4 !important; -} - -.bg-secondary-light { - color: #ca4100 !important; - background-color: #ffdbca !important; -} - -a.bg-secondary-light:hover, -a.bg-secondary-light:focus, -button.bg-secondary-light:hover, -button.bg-secondary-light:focus { - color: #ca4100 !important; - background-color: #ffb897 !important; -} - -.bg-success-light { - color: #408759 !important; - background-color: #d9ede0 !important; -} - -a.bg-success-light:hover, -a.bg-success-light:focus, -button.bg-success-light:hover, -button.bg-success-light:focus { - color: #408759 !important; - background-color: #b6ddc4 !important; -} - -.bg-info-light { - color: #00aadb !important; - background-color: #dbf7ff !important; -} - -a.bg-info-light:hover, -a.bg-info-light:focus, -button.bg-info-light:hover, -button.bg-info-light:focus { - color: #00aadb !important; - background-color: #a8ecff !important; -} - -.bg-warning-light { - color: #d73b00 !important; - background-color: #ffe2d7 !important; -} - -a.bg-warning-light:hover, -a.bg-warning-light:focus, -button.bg-warning-light:hover, -button.bg-warning-light:focus { - color: #d73b00 !important; - background-color: #ffbda4 !important; -} - -.bg-danger-light { - color: #a72f68 !important; - background-color: #f6dfea !important; -} - -a.bg-danger-light:hover, -a.bg-danger-light:focus, -button.bg-danger-light:hover, -button.bg-danger-light:focus { - color: #a72f68 !important; - background-color: #ebb7d0 !important; -} - -.bg-light-light { - color: #616982 !important; - background-color: #eff0f3 !important; -} - -a.bg-light-light:hover, -a.bg-light-light:focus, -button.bg-light-light:hover, -button.bg-light-light:focus { - color: #616982 !important; - background-color: #d2d5dd !important; -} - -.bg-dark-light { - color: #393a3f !important; - background-color: #b8b9bf !important; -} - -a.bg-dark-light:hover, -a.bg-dark-light:focus, -button.bg-dark-light:hover, -button.bg-dark-light:focus { - color: #393a3f !important; - background-color: #9d9fa7 !important; -} - -.bg-orange-light { - color: #ca4100 !important; - background-color: #ffdbca !important; -} - -a.bg-orange-light:hover, -a.bg-orange-light:focus, -button.bg-orange-light:hover, -button.bg-orange-light:focus { - color: #ca4100 !important; - background-color: #ffb897 !important; -} - -.bg-purple-light { - color: #3b2d84 !important; - background-color: #cbc5eb !important; -} - -a.bg-purple-light:hover, -a.bg-purple-light:focus, -button.bg-purple-light:hover, -button.bg-purple-light:focus { - color: #3b2d84 !important; - background-color: #a99fde !important; -} - -.bg-skyblue-light { - color: #0663b6 !important; - background-color: #bddffd !important; -} - -a.bg-skyblue-light:hover, -a.bg-skyblue-light:focus, -button.bg-skyblue-light:hover, -button.bg-skyblue-light:focus { - color: #0663b6 !important; - background-color: #8cc7fc !important; -} - -.bg-light-gray-light { - color: #3f3fbc !important; - background-color: #fcfcfe !important; -} - -a.bg-light-gray-light:hover, -a.bg-light-gray-light:focus, -button.bg-light-gray-light:hover, -button.bg-light-gray-light:focus { - color: #3f3fbc !important; - background-color: #d6d6f1 !important; -} - -/*** Sections backgrounds ***/ -/*** Background colors with transparency ***/ -.bg-body { - background: #ffffff; -} - -.avatar-30 { - height: 30px; - width: 30px; - line-height: 30px; - min-width: 30px; -} - -.avatar-35 { - height: 35px; - width: 35px; - line-height: 35px; - min-width: 35px; -} - -.avatar-40 { - height: 40px; - width: 40px; - line-height: 40px; - min-width: 40px; -} - -.avatar-45 { - height: 45px; - width: 45px; - line-height: 45px; - min-width: 45px; -} - -.avatar-50 { - height: 50px; - width: 50px; - line-height: 50px; - min-width: 50px; -} - -.avatar-60 { - height: 60px; - width: 60px; - line-height: 60px; - min-width: 60px; -} - -.avatar-70 { - height: 70px; - width: 70px; - line-height: 70px; - min-width: 70px; -} - -.avatar-80 { - height: 80px; - width: 80px; - line-height: 80px; - min-width: 80px; -} - -.avatar-90 { - height: 90px; - width: 90px; - line-height: 90px; - min-width: 90px; -} - -.avatar-100 { - height: 100px; - width: 100px; - line-height: 100px; - min-width: 100px; -} - -.avatar-110 { - height: 110px; - width: 110px; - line-height: 110px; - min-width: 110px; -} - -.avatar-120 { - height: 120px; - width: 120px; - line-height: 120px; - min-width: 120px; -} - -.avatar-130 { - height: 130px; - width: 130px; - line-height: 130px; - min-width: 130px; -} - -.avatar-155 { - height: 155px; - width: 155px; - line-height: 155px; - min-width: 155px; -} - -.avatar-235 { - height: 235px; - width: 235px; - line-height: 235px; - min-width: 235px; -} - -/* - * Font Helper - */ -.font-size-12 { - font-size: 12px !important; -} - -.font-size-14 { - font-size: 14px !important; -} - -.font-size-16 { - font-size: 16px !important; -} - -.font-size-18 { - font-size: 18px !important; -} - -.font-size-20 { - font-size: 20px !important; -} - -.font-size-32 { - font-size: 32px !important; -} - -.font-size-40 { - font-size: 40px !important; -} - -/*** Weight and italics ***/ -.font-weight-300 { - font-weight: 300 !important; -} - -.font-weight-400 { - font-weight: 400 !important; -} - -.font-weight-500 { - font-weight: 500 !important; -} - -.font-weight-600 { - font-weight: 600 !important; -} - -.font-weight-700 { - font-weight: 700 !important; -} - -.font-weight-800 { - font-weight: 800 !important; -} - -.font-weight-900 { - font-weight: 900 !important; -} - -/*** Text decorations ***/ -.text-underline { - text-decoration: underline; -} - -.text-through { - text-decoration: line-through; -} - -/*** Text size ***/ -@media (min-width: 576px) { - .text-xs-chirag { - font-size: 12 !important; - } -} - -.text-sm { - font-size: 12 !important; -} - -.text-lg { - font-size: 12 !important; -} - -.text-xl { - font-size: 12 !important; -} - -/*** Line heights ***/ -.line-height-100 { - line-height: 1; -} - -.line-height-110 { - line-height: 1.1; -} - -.line-height-120 { - line-height: 1.2; -} - -.line-height-130 { - line-height: 1.3; -} - -.line-height-140 { - line-height: 1.4; -} - -.line-height-150 { - line-height: 1.5; -} - -.line-height-160 { - line-height: 1.6; -} - -.line-height-170 { - line-height: 1.7; -} - -.line-height-180 { - line-height: 1.8; -} - -/*** Letter spacings ***/ -.letter-spacing-1 { - letter-spacing: 0.0625rem; -} - -.letter-spacing-15 { - letter-spacing: 0.09375rem; -} - -.letter-spacing-2 { - letter-spacing: 0.125rem; -} - -/*** Text color variations ***/ -.text-blue { - color: #32bdea !important; -} - -a.text-blue:hover, -a.text-blue:focus { - color: #1393bc !important; -} - -.text-indigo { - color: #6610f2 !important; -} - -a.text-indigo:hover, -a.text-indigo:focus { - color: #4709ac !important; -} - -.text-purple { - color: #4731b6 !important; -} - -a.text-purple:hover, -a.text-purple:focus { - color: #2f217a !important; -} - -.text-pink { - color: #e83e8c !important; -} - -a.text-pink:hover, -a.text-pink:focus { - color: #c21766 !important; -} - -.text-red { - color: #e08db4 !important; -} - -a.text-red:hover, -a.text-red:focus { - color: #d0518c !important; -} - -.text-orange { - color: #ff7e41 !important; -} - -a.text-orange:hover, -a.text-orange:focus { - color: #f44e00 !important; -} - -.text-yellow { - color: #ff9770 !important; -} - -a.text-yellow:hover, -a.text-yellow:focus { - color: #ff5f24 !important; -} - -.text-green { - color: #78c091 !important; -} - -a.text-green:hover, -a.text-green:focus { - color: #4ba169 !important; -} - -.text-teal { - color: #20c997 !important; -} - -a.text-teal:hover, -a.text-teal:focus { - color: #158765 !important; -} - -.text-cyan { - color: #7ee2ff !important; -} - -a.text-cyan:hover, -a.text-cyan:focus { - color: #32d1ff !important; -} - -.text-white { - color: #fff !important; -} - -a.text-white:hover, -a.text-white:focus { - color: #d9d9d9 !important; -} - -.text-gray { - color: #6c757d !important; -} - -a.text-gray:hover, -a.text-gray:focus { - color: #494f54 !important; -} - -.text-gray-dark { - color: #01041b !important; -} - -a.text-gray-dark:hover, -a.text-gray-dark:focus { - color: black !important; -} - -.text-skyblue { - color: #158df7 !important; -} - -a.text-skyblue:hover, -a.text-skyblue:focus { - color: #0665b9 !important; -} - -/*! -Animate.css - http://daneden.me/animate -Licensed under the MIT license - -Copyright (c) 2013 Daniel Eden - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ -.animated { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.animated.hinge { - -webkit-animation-duration: 2s; - animation-duration: 2s; -} - -@-webkit-keyframes bounce { - 0%, - 20%, - 50%, - 80%, - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -@keyframes bounce { - 0%, - 20%, - 50%, - 80%, - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 40% { - -webkit-transform: translateY(-30px); - -ms-transform: translateY(-30px); - transform: translateY(-30px); - } - 60% { - -webkit-transform: translateY(-15px); - -ms-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -.bounce { - -webkit-animation-name: bounce; - animation-name: bounce; -} - -@-webkit-keyframes flash { - 0%, - 50%, - 100% { - opacity: 1; - } - 25%, - 75% { - opacity: 0; - } -} - -@keyframes flash { - 0%, - 50%, - 100% { - opacity: 1; - } - 25%, - 75% { - opacity: 0; - } -} - -.flash { - -webkit-animation-name: flash; - animation-name: flash; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes pulse { - 0% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - 50% { - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } -} - -.pulse { - -webkit-animation-name: pulse; - animation-name: pulse; -} - -@-webkit-keyframes shake { - 0%, - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } -} - -@keyframes shake { - 0%, - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translateX(-10px); - -ms-transform: translateX(-10px); - transform: translateX(-10px); - } - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translateX(10px); - -ms-transform: translateX(10px); - transform: translateX(10px); - } -} - -.shake { - -webkit-animation-name: shake; - animation-name: shake; -} - -@-webkit-keyframes swing { - 20% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 40% { - -webkit-transform: rotate(-10deg); - transform: rotate(-10deg); - } - 60% { - -webkit-transform: rotate(5deg); - transform: rotate(5deg); - } - 80% { - -webkit-transform: rotate(-5deg); - transform: rotate(-5deg); - } - 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -@keyframes swing { - 20% { - -webkit-transform: rotate(15deg); - -ms-transform: rotate(15deg); - transform: rotate(15deg); - } - 40% { - -webkit-transform: rotate(-10deg); - -ms-transform: rotate(-10deg); - transform: rotate(-10deg); - } - 60% { - -webkit-transform: rotate(5deg); - -ms-transform: rotate(5deg); - transform: rotate(5deg); - } - 80% { - -webkit-transform: rotate(-5deg); - -ms-transform: rotate(-5deg); - transform: rotate(-5deg); - } - 100% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -.swing { - -webkit-transform-origin: top center; - -ms-transform-origin: top center; - transform-origin: top center; - -webkit-animation-name: swing; - animation-name: swing; -} - -@-webkit-keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - 10%, - 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - 40%, - 60%, - 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - 100% { - -webkit-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -@keyframes tada { - 0% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - 10%, - 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - -ms-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale(1.1) rotate(3deg); - -ms-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - 40%, - 60%, - 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - -ms-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - 100% { - -webkit-transform: scale(1) rotate(0); - -ms-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -.tada { - -webkit-animation-name: tada; - animation-name: tada; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes wobble { - 0% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - 15% { - -webkit-transform: translateX(-25%) rotate(-5deg); - transform: translateX(-25%) rotate(-5deg); - } - 30% { - -webkit-transform: translateX(20%) rotate(3deg); - transform: translateX(20%) rotate(3deg); - } - 45% { - -webkit-transform: translateX(-15%) rotate(-3deg); - transform: translateX(-15%) rotate(-3deg); - } - 60% { - -webkit-transform: translateX(10%) rotate(2deg); - transform: translateX(10%) rotate(2deg); - } - 75% { - -webkit-transform: translateX(-5%) rotate(-1deg); - transform: translateX(-5%) rotate(-1deg); - } - 100% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -@keyframes wobble { - 0% { - -webkit-transform: translateX(0%); - -ms-transform: translateX(0%); - transform: translateX(0%); - } - 15% { - -webkit-transform: translateX(-25%) rotate(-5deg); - -ms-transform: translateX(-25%) rotate(-5deg); - transform: translateX(-25%) rotate(-5deg); - } - 30% { - -webkit-transform: translateX(20%) rotate(3deg); - -ms-transform: translateX(20%) rotate(3deg); - transform: translateX(20%) rotate(3deg); - } - 45% { - -webkit-transform: translateX(-15%) rotate(-3deg); - -ms-transform: translateX(-15%) rotate(-3deg); - transform: translateX(-15%) rotate(-3deg); - } - 60% { - -webkit-transform: translateX(10%) rotate(2deg); - -ms-transform: translateX(10%) rotate(2deg); - transform: translateX(10%) rotate(2deg); - } - 75% { - -webkit-transform: translateX(-5%) rotate(-1deg); - -ms-transform: translateX(-5%) rotate(-1deg); - transform: translateX(-5%) rotate(-1deg); - } - 100% { - -webkit-transform: translateX(0%); - -ms-transform: translateX(0%); - transform: translateX(0%); - } -} - -.wobble { - -webkit-animation-name: wobble; - animation-name: wobble; -} - -@-webkit-keyframes bounceIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.05); - transform: scale(1.05); - } - 70% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes bounceIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - -ms-transform: scale(0.3); - transform: scale(0.3); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); - } - 70% { - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); - } - 100% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } -} - -.bounceIn { - -webkit-animation-name: bounceIn; - animation-name: bounceIn; -} - -@-webkit-keyframes bounceInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(30px); - transform: translateY(30px); - } - 80% { - -webkit-transform: translateY(-10px); - transform: translateY(-10px); - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes bounceInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(30px); - -ms-transform: translateY(30px); - transform: translateY(30px); - } - 80% { - -webkit-transform: translateY(-10px); - -ms-transform: translateY(-10px); - transform: translateY(-10px); - } - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.bounceInDown { - -webkit-animation-name: bounceInDown; - animation-name: bounceInDown; -} - -@-webkit-keyframes bounceInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(30px); - transform: translateX(30px); - } - 80% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes bounceInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(30px); - -ms-transform: translateX(30px); - transform: translateX(30px); - } - 80% { - -webkit-transform: translateX(-10px); - -ms-transform: translateX(-10px); - transform: translateX(-10px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.bounceInLeft { - -webkit-animation-name: bounceInLeft; - animation-name: bounceInLeft; -} - -@-webkit-keyframes bounceInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(-30px); - transform: translateX(-30px); - } - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes bounceInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(-30px); - -ms-transform: translateX(-30px); - transform: translateX(-30px); - } - 80% { - -webkit-transform: translateX(10px); - -ms-transform: translateX(10px); - transform: translateX(10px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.bounceInRight { - -webkit-animation-name: bounceInRight; - animation-name: bounceInRight; -} - -@-webkit-keyframes bounceInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - 80% { - -webkit-transform: translateY(10px); - transform: translateY(10px); - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes bounceInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(-30px); - -ms-transform: translateY(-30px); - transform: translateY(-30px); - } - 80% { - -webkit-transform: translateY(10px); - -ms-transform: translateY(10px); - transform: translateY(10px); - } - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.bounceInUp { - -webkit-animation-name: bounceInUp; - animation-name: bounceInUp; -} - -@-webkit-keyframes bounceOut { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - 25% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } -} - -@keyframes bounceOut { - 0% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - 25% { - -webkit-transform: scale(0.95); - -ms-transform: scale(0.95); - transform: scale(0.95); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - opacity: 0; - -webkit-transform: scale(0.3); - -ms-transform: scale(0.3); - transform: scale(0.3); - } -} - -.bounceOut { - -webkit-animation-name: bounceOut; - animation-name: bounceOut; -} - -@-webkit-keyframes bounceOutDown { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes bounceOutDown { - 0% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.bounceOutDown { - -webkit-animation-name: bounceOutDown; - animation-name: bounceOutDown; -} - -@-webkit-keyframes bounceOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes bounceOutLeft { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.bounceOutLeft { - -webkit-animation-name: bounceOutLeft; - animation-name: bounceOutLeft; -} - -@-webkit-keyframes bounceOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes bounceOutRight { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.bounceOutRight { - -webkit-animation-name: bounceOutRight; - animation-name: bounceOutRight; -} - -@-webkit-keyframes bounceOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes bounceOutUp { - 0% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.bounceOutUp { - -webkit-animation-name: bounceOutUp; - animation-name: bounceOutUp; -} - -@-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -.fadeIn { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -@-webkit-keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDown { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} - -@-webkit-keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDownBig { - -webkit-animation-name: fadeInDownBig; - animation-name: fadeInDownBig; -} - -@-webkit-keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeft { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} - -@-webkit-keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeftBig { - -webkit-animation-name: fadeInLeftBig; - animation-name: fadeInLeftBig; -} - -@-webkit-keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRight { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} - -@-webkit-keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRightBig { - -webkit-animation-name: fadeInRightBig; - animation-name: fadeInRightBig; -} - -@-webkit-keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUp { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} - -@-webkit-keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUpBig { - -webkit-animation-name: fadeInUpBig; - animation-name: fadeInUpBig; -} - -@-webkit-keyframes fadeOut { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - -@keyframes fadeOut { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - -.fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} - -@-webkit-keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } -} - -@keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } -} - -.fadeOutDown { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} - -@-webkit-keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.fadeOutDownBig { - -webkit-animation-name: fadeOutDownBig; - animation-name: fadeOutDownBig; -} - -@-webkit-keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -@keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -.fadeOutLeft { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} - -@-webkit-keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.fadeOutLeftBig { - -webkit-animation-name: fadeOutLeftBig; - animation-name: fadeOutLeftBig; -} - -@-webkit-keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } -} - -@keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } -} - -.fadeOutRight { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} - -@-webkit-keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.fadeOutRightBig { - -webkit-animation-name: fadeOutRightBig; - animation-name: fadeOutRightBig; -} - -@-webkit-keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -@keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -.fadeOutUp { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} - -@-webkit-keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.fadeOutUpBig { - -webkit-animation-name: fadeOutUpBig; - animation-name: fadeOutUpBig; -} - -@-webkit-keyframes flip { - 0% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 40% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) - scale(1); - transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 50% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) - scale(1); - transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 80% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) - scale(0.95); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 100% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -@keyframes flip { - 0% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 40% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) - scale(1); - -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 50% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) - scale(1); - -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 80% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) - scale(0.95); - -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 100% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -.animated.flip { - -webkit-backface-visibility: visible; - -ms-backface-visibility: visible; - backface-visibility: visible; - -webkit-animation-name: flip; - animation-name: flip; -} - -@-webkit-keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateX(-10deg); - transform: perspective(400px) rotateX(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateX(10deg); - transform: perspective(400px) rotateX(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} - -@keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotateX(90deg); - -ms-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateX(-10deg); - -ms-transform: perspective(400px) rotateX(-10deg); - transform: perspective(400px) rotateX(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateX(10deg); - -ms-transform: perspective(400px) rotateX(10deg); - transform: perspective(400px) rotateX(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateX(0deg); - -ms-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} - -.flipInX { - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInX; - animation-name: flipInX; -} - -@-webkit-keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateY(-10deg); - transform: perspective(400px) rotateY(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateY(10deg); - transform: perspective(400px) rotateY(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} - -@keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotateY(90deg); - -ms-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateY(-10deg); - -ms-transform: perspective(400px) rotateY(-10deg); - transform: perspective(400px) rotateY(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateY(10deg); - -ms-transform: perspective(400px) rotateY(10deg); - transform: perspective(400px) rotateY(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateY(0deg); - -ms-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} - -.flipInY { - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInY; - animation-name: flipInY; -} - -@-webkit-keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} - -@keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px) rotateX(0deg); - -ms-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateX(90deg); - -ms-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} - -.flipOutX { - -webkit-animation-name: flipOutX; - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -@-webkit-keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} - -@keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px) rotateY(0deg); - -ms-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateY(90deg); - -ms-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} - -.flipOutY { - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipOutY; - animation-name: flipOutY; -} - -@-webkit-keyframes lightSpeedIn { - 0% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - 60% { - -webkit-transform: translateX(-20%) skewX(30deg); - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - 80% { - -webkit-transform: translateX(0%) skewX(-15deg); - transform: translateX(0%) skewX(-15deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } -} - -@keyframes lightSpeedIn { - 0% { - -webkit-transform: translateX(100%) skewX(-30deg); - -ms-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - 60% { - -webkit-transform: translateX(-20%) skewX(30deg); - -ms-transform: translateX(-20%) skewX(30deg); - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - 80% { - -webkit-transform: translateX(0%) skewX(-15deg); - -ms-transform: translateX(0%) skewX(-15deg); - transform: translateX(0%) skewX(-15deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(0%) skewX(0deg); - -ms-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } -} - -.lightSpeedIn { - -webkit-animation-name: lightSpeedIn; - animation-name: lightSpeedIn; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} - -@-webkit-keyframes lightSpeedOut { - 0% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} - -@keyframes lightSpeedOut { - 0% { - -webkit-transform: translateX(0%) skewX(0deg); - -ms-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(100%) skewX(-30deg); - -ms-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} - -.lightSpeedOut { - -webkit-animation-name: lightSpeedOut; - animation-name: lightSpeedOut; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} - -@-webkit-keyframes rotateIn { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(-200deg); - transform: rotate(-200deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateIn { - 0% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(-200deg); - -ms-transform: rotate(-200deg); - transform: rotate(-200deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateIn { - -webkit-animation-name: rotateIn; - animation-name: rotateIn; -} - -@-webkit-keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInDownLeft { - -webkit-animation-name: rotateInDownLeft; - animation-name: rotateInDownLeft; -} - -@-webkit-keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInDownRight { - -webkit-animation-name: rotateInDownRight; - animation-name: rotateInDownRight; -} - -@-webkit-keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInUpLeft { - -webkit-animation-name: rotateInUpLeft; - animation-name: rotateInUpLeft; -} - -@-webkit-keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInUpRight { - -webkit-animation-name: rotateInUpRight; - animation-name: rotateInUpRight; -} - -@-webkit-keyframes rotateOut { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(200deg); - transform: rotate(200deg); - opacity: 0; - } -} - -@keyframes rotateOut { - 0% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(200deg); - -ms-transform: rotate(200deg); - transform: rotate(200deg); - opacity: 0; - } -} - -.rotateOut { - -webkit-animation-name: rotateOut; - animation-name: rotateOut; -} - -@-webkit-keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -@keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -.rotateOutDownLeft { - -webkit-animation-name: rotateOutDownLeft; - animation-name: rotateOutDownLeft; -} - -@-webkit-keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -@keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -.rotateOutDownRight { - -webkit-animation-name: rotateOutDownRight; - animation-name: rotateOutDownRight; -} - -@-webkit-keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -.rotateOutUpLeft { - -webkit-animation-name: rotateOutUpLeft; - animation-name: rotateOutUpLeft; -} - -@-webkit-keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -.rotateOutUpRight { - -webkit-animation-name: rotateOutUpRight; - animation-name: rotateOutUpRight; -} - -@-webkit-keyframes slideInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes slideInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.slideInDown { - -webkit-animation-name: slideInDown; - animation-name: slideInDown; -} - -@-webkit-keyframes slideInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes slideInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.slideInLeft { - -webkit-animation-name: slideInLeft; - animation-name: slideInLeft; -} - -@-webkit-keyframes slideInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes slideInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.slideInRight { - -webkit-animation-name: slideInRight; - animation-name: slideInRight; -} - -@-webkit-keyframes slideOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes slideOutLeft { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.slideOutLeft { - -webkit-animation-name: slideOutLeft; - animation-name: slideOutLeft; -} - -@-webkit-keyframes slideOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes slideOutRight { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.slideOutRight { - -webkit-animation-name: slideOutRight; - animation-name: slideOutRight; -} - -@-webkit-keyframes slideOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes slideOutUp { - 0% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.slideOutUp { - -webkit-animation-name: slideOutUp; - animation-name: slideOutUp; -} - -@-webkit-keyframes hinge { - 0% { - -webkit-transform: rotate(0); - transform: rotate(0); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 20%, - 60% { - -webkit-transform: rotate(80deg); - transform: rotate(80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 40% { - -webkit-transform: rotate(60deg); - transform: rotate(60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 80% { - -webkit-transform: rotate(60deg) translateY(0); - transform: rotate(60deg) translateY(0); - opacity: 1; - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 100% { - -webkit-transform: translateY(700px); - transform: translateY(700px); - opacity: 0; - } -} - -@keyframes hinge { - 0% { - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 20%, - 60% { - -webkit-transform: rotate(80deg); - -ms-transform: rotate(80deg); - transform: rotate(80deg); - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 40% { - -webkit-transform: rotate(60deg); - -ms-transform: rotate(60deg); - transform: rotate(60deg); - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 80% { - -webkit-transform: rotate(60deg) translateY(0); - -ms-transform: rotate(60deg) translateY(0); - transform: rotate(60deg) translateY(0); - opacity: 1; - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 100% { - -webkit-transform: translateY(700px); - -ms-transform: translateY(700px); - transform: translateY(700px); - opacity: 0; - } -} - -.hinge { - -webkit-animation-name: hinge; - animation-name: hinge; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translateX(-100%) rotate(-120deg); - transform: translateX(-100%) rotate(-120deg); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } -} - -@keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translateX(-100%) rotate(-120deg); - -ms-transform: translateX(-100%) rotate(-120deg); - transform: translateX(-100%) rotate(-120deg); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - -ms-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } -} - -.rollIn { - -webkit-animation-name: rollIn; - animation-name: rollIn; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes rollOut { - 0% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } - 100% { - opacity: 0; - -webkit-transform: translateX(100%) rotate(120deg); - transform: translateX(100%) rotate(120deg); - } -} - -@keyframes rollOut { - 0% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - -ms-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } - 100% { - opacity: 0; - -webkit-transform: translateX(100%) rotate(120deg); - -ms-transform: translateX(100%) rotate(120deg); - transform: translateX(100%) rotate(120deg); - } -} - -.rollOut { - -webkit-animation-name: rollOut; - animation-name: rollOut; -} - -.swal2-popup.swal2-toast { - flex-direction: column; - align-items: stretch; - width: auto; - padding: 1.25em; - overflow-y: hidden; - background: #fff; - box-shadow: 0 0 0.625em #d9d9d9; -} -.swal2-popup.swal2-toast .swal2-header { - flex-direction: row; - padding: 0; -} -.swal2-popup.swal2-toast .swal2-title { - flex-grow: 1; - justify-content: flex-start; - margin: 0 0.625em; - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-loading { - justify-content: center; -} -.swal2-popup.swal2-toast .swal2-input { - height: 2em; - margin: 0.3125em auto; - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-validation-message { - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-footer { - margin: 0.5em 0 0; - padding: 0.5em 0 0; - font-size: 0.8em; -} -.swal2-popup.swal2-toast .swal2-close { - position: static; - width: 0.8em; - height: 0.8em; - line-height: 0.8; -} -.swal2-popup.swal2-toast .swal2-content { - justify-content: flex-start; - margin: 0 0.625em; - padding: 0; - font-size: 1em; - text-align: initial; -} -.swal2-popup.swal2-toast .swal2-html-container { - padding: 0.625em 0 0; -} -.swal2-popup.swal2-toast .swal2-html-container:empty { - padding: 0; -} -.swal2-popup.swal2-toast .swal2-icon { - width: 2em; - min-width: 2em; - height: 2em; - margin: 0 0.5em 0 0; -} -.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content { - display: flex; - align-items: center; - font-size: 1.8em; - font-weight: bold; -} -@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { - .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content { - font-size: 0.25em; - } -} -.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring { - width: 2em; - height: 2em; -} -.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] { - top: 0.875em; - width: 1.375em; -} -.swal2-popup.swal2-toast - .swal2-icon.swal2-error - [class^="swal2-x-mark-line"][class$="left"] { - left: 0.3125em; -} -.swal2-popup.swal2-toast - .swal2-icon.swal2-error - [class^="swal2-x-mark-line"][class$="right"] { - right: 0.3125em; -} -.swal2-popup.swal2-toast .swal2-actions { - flex: 1; - flex-basis: auto !important; - align-self: stretch; - width: auto; - height: 2.2em; - height: auto; - margin: 0 0.3125em; - margin-top: 0.3125em; - padding: 0; -} -.swal2-popup.swal2-toast .swal2-styled { - margin: 0.125em 0.3125em; - padding: 0.3125em 0.625em; - font-size: 1em; -} -.swal2-popup.swal2-toast .swal2-styled:focus { - box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-popup.swal2-toast .swal2-success { - border-color: #a5dc86; -} -.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"] { - position: absolute; - width: 1.6em; - height: 3em; - transform: rotate(45deg); - border-radius: 50%; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-circular-line"][class$="left"] { - top: -0.8em; - left: -0.5em; - transform: rotate(-45deg); - transform-origin: 2em 2em; - border-radius: 4em 0 0 4em; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-circular-line"][class$="right"] { - top: -0.25em; - left: 0.9375em; - transform-origin: 0 1.5em; - border-radius: 0 4em 4em 0; -} -.swal2-popup.swal2-toast .swal2-success .swal2-success-ring { - width: 2em; - height: 2em; -} -.swal2-popup.swal2-toast .swal2-success .swal2-success-fix { - top: 0; - left: 0.4375em; - width: 0.4375em; - height: 2.6875em; -} -.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"] { - height: 0.3125em; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-line"][class$="tip"] { - top: 1.125em; - left: 0.1875em; - width: 0.75em; -} -.swal2-popup.swal2-toast - .swal2-success - [class^="swal2-success-line"][class$="long"] { - top: 0.9375em; - right: 0.1875em; - width: 1.375em; -} -.swal2-popup.swal2-toast - .swal2-success.swal2-icon-show - .swal2-success-line-tip { - animation: swal2-toast-animate-success-line-tip 0.75s; -} -.swal2-popup.swal2-toast - .swal2-success.swal2-icon-show - .swal2-success-line-long { - animation: swal2-toast-animate-success-line-long 0.75s; -} -.swal2-popup.swal2-toast.swal2-show { - animation: swal2-toast-show 0.5s; -} -.swal2-popup.swal2-toast.swal2-hide { - animation: swal2-toast-hide 0.1s forwards; -} - -.swal2-container { - display: flex; - position: fixed; - z-index: 1060; - top: 0; - right: 0; - bottom: 0; - left: 0; - flex-direction: row; - align-items: center; - justify-content: center; - padding: 0.625em; - overflow-x: hidden; - transition: background-color 0.1s; - -webkit-overflow-scrolling: touch; -} -.swal2-container.swal2-backdrop-show, -.swal2-container.swal2-noanimation { - background: rgba(0, 0, 0, 0.4); -} -.swal2-container.swal2-backdrop-hide { - background: transparent !important; -} -.swal2-container.swal2-top { - align-items: flex-start; -} -.swal2-container.swal2-top-start, -.swal2-container.swal2-top-left { - align-items: flex-start; - justify-content: flex-start; -} -.swal2-container.swal2-top-end, -.swal2-container.swal2-top-right { - align-items: flex-start; - justify-content: flex-end; -} -.swal2-container.swal2-center { - align-items: center; -} -.swal2-container.swal2-center-start, -.swal2-container.swal2-center-left { - align-items: center; - justify-content: flex-start; -} -.swal2-container.swal2-center-end, -.swal2-container.swal2-center-right { - align-items: center; - justify-content: flex-end; -} -.swal2-container.swal2-bottom { - align-items: flex-end; -} -.swal2-container.swal2-bottom-start, -.swal2-container.swal2-bottom-left { - align-items: flex-end; - justify-content: flex-start; -} -.swal2-container.swal2-bottom-end, -.swal2-container.swal2-bottom-right { - align-items: flex-end; - justify-content: flex-end; -} -.swal2-container.swal2-bottom > :first-child, -.swal2-container.swal2-bottom-start > :first-child, -.swal2-container.swal2-bottom-left > :first-child, -.swal2-container.swal2-bottom-end > :first-child, -.swal2-container.swal2-bottom-right > :first-child { - margin-top: auto; -} -.swal2-container.swal2-grow-fullscreen > .swal2-modal { - display: flex !important; - flex: 1; - align-self: stretch; - justify-content: center; -} -.swal2-container.swal2-grow-row > .swal2-modal { - display: flex !important; - flex: 1; - align-content: center; - justify-content: center; -} -.swal2-container.swal2-grow-column { - flex: 1; - flex-direction: column; -} -.swal2-container.swal2-grow-column.swal2-top, -.swal2-container.swal2-grow-column.swal2-center, -.swal2-container.swal2-grow-column.swal2-bottom { - align-items: center; -} -.swal2-container.swal2-grow-column.swal2-top-start, -.swal2-container.swal2-grow-column.swal2-center-start, -.swal2-container.swal2-grow-column.swal2-bottom-start, -.swal2-container.swal2-grow-column.swal2-top-left, -.swal2-container.swal2-grow-column.swal2-center-left, -.swal2-container.swal2-grow-column.swal2-bottom-left { - align-items: flex-start; -} -.swal2-container.swal2-grow-column.swal2-top-end, -.swal2-container.swal2-grow-column.swal2-center-end, -.swal2-container.swal2-grow-column.swal2-bottom-end, -.swal2-container.swal2-grow-column.swal2-top-right, -.swal2-container.swal2-grow-column.swal2-center-right, -.swal2-container.swal2-grow-column.swal2-bottom-right { - align-items: flex-end; -} -.swal2-container.swal2-grow-column > .swal2-modal { - display: flex !important; - flex: 1; - align-content: center; - justify-content: center; -} -.swal2-container.swal2-no-transition { - transition: none !important; -} -.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not( - .swal2-top-left - ):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not( - .swal2-center-left - ):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not( - .swal2-bottom-end - ):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) - > .swal2-modal { - margin: auto; -} -@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { - .swal2-container .swal2-modal { - margin: 0 !important; - } -} - -.swal2-popup { - display: none; - position: relative; - box-sizing: border-box; - flex-direction: column; - justify-content: center; - width: 32em; - max-width: 100%; - padding: 1.25em; - border: none; - border-radius: 5px; - background: #fff; - font-family: inherit; - font-size: 1rem; -} -.swal2-popup:focus { - outline: none; -} -.swal2-popup.swal2-loading { - overflow-y: hidden; -} - -.swal2-header { - display: flex; - flex-direction: column; - align-items: center; - padding: 0 1.8em; -} - -.swal2-title { - position: relative; - max-width: 100%; - margin: 0 0 0.4em; - padding: 0; - color: #595959; - font-size: 1.875em; - font-weight: 600; - text-align: center; - text-transform: none; - word-wrap: break-word; -} - -.swal2-actions { - display: flex; - z-index: 1; - box-sizing: border-box; - flex-wrap: wrap; - align-items: center; - justify-content: center; - width: 100%; - margin: 1.25em auto 0; - padding: 0; -} -.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] { - opacity: 0.4; -} -.swal2-actions:not(.swal2-loading) .swal2-styled:hover { - background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); -} -.swal2-actions:not(.swal2-loading) .swal2-styled:active { - background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); -} - -.swal2-loader { - display: none; - align-items: center; - justify-content: center; - width: 2.2em; - height: 2.2em; - margin: 0 1.875em; - animation: swal2-rotate-loading 1.5s linear 0s infinite normal; - border-width: 0.25em; - border-style: solid; - border-radius: 100%; - border-color: #2778c4 transparent #2778c4 transparent; -} - -.swal2-styled { - margin: 0.3125em; - padding: 0.625em 1.1em; - box-shadow: none; - font-weight: 500; -} -.swal2-styled:not([disabled]) { - cursor: pointer; -} -.swal2-styled.swal2-confirm { - border: 0; - border-radius: 0.25em; - background: initial; - background-color: #2778c4; - color: #fff; - font-size: 1em; -} -.swal2-styled.swal2-deny { - border: 0; - border-radius: 0.25em; - background: initial; - background-color: #d14529; - color: #fff; - font-size: 1em; -} -.swal2-styled.swal2-cancel { - border: 0; - border-radius: 0.25em; - background: initial; - background-color: #757575; - color: #fff; - font-size: 1em; -} -.swal2-styled:focus { - outline: none; - box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-styled::-moz-focus-inner { - border: 0; -} - -.swal2-footer { - justify-content: center; - margin: 1.25em 0 0; - padding: 1em 0 0; - border-top: 1px solid #eee; - color: #545454; - font-size: 1em; -} - -.swal2-timer-progress-bar-container { - position: absolute; - right: 0; - bottom: 0; - left: 0; - height: 0.25em; - overflow: hidden; - border-bottom-right-radius: 5px; - border-bottom-left-radius: 5px; -} - -.swal2-timer-progress-bar { - width: 100%; - height: 0.25em; - background: rgba(0, 0, 0, 0.2); -} - -.swal2-image { - max-width: 100%; - margin: 1.25em auto; -} - -.swal2-close { - position: absolute; - z-index: 2; - top: 0; - right: 0; - align-items: center; - justify-content: center; - width: 1.2em; - height: 1.2em; - padding: 0; - overflow: hidden; - transition: color 0.1s ease-out; - border: none; - border-radius: 5px; - background: transparent; - color: #cccccc; - font-family: serif; - font-size: 2.5em; - line-height: 1.2; - cursor: pointer; -} -.swal2-close:hover { - transform: none; - background: transparent; - color: #f27474; -} -.swal2-close:focus { - outline: none; - box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-close::-moz-focus-inner { - border: 0; -} - -.swal2-content { - z-index: 1; - justify-content: center; - margin: 0; - padding: 0 1.6em; - color: #545454; - font-size: 1.125em; - font-weight: normal; - line-height: normal; - text-align: center; - word-wrap: break-word; -} - -.swal2-input, -.swal2-file, -.swal2-textarea, -.swal2-select, -.swal2-radio, -.swal2-checkbox { - margin: 1em auto; -} - -.swal2-input, -.swal2-file, -.swal2-textarea { - box-sizing: border-box; - width: 100%; - transition: border-color 0.3s, box-shadow 0.3s; - border: 1px solid #d9d9d9; - border-radius: 0.1875em; - background: inherit; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06); - color: inherit; - font-size: 1.125em; -} -.swal2-input.swal2-inputerror, -.swal2-file.swal2-inputerror, -.swal2-textarea.swal2-inputerror { - border-color: #f27474 !important; - box-shadow: 0 0 2px #f27474 !important; -} -.swal2-input:focus, -.swal2-file:focus, -.swal2-textarea:focus { - border: 1px solid #b4dbed; - outline: none; - box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5); -} -.swal2-input::placeholder, -.swal2-file::placeholder, -.swal2-textarea::placeholder { - color: #cccccc; -} - -.swal2-range { - margin: 1em auto; - background: #fff; -} -.swal2-range input { - width: 80%; -} -.swal2-range output { - width: 20%; - color: inherit; - font-weight: 600; - text-align: center; -} -.swal2-range input, -.swal2-range output { - height: 2.625em; - padding: 0; - font-size: 1.125em; - line-height: 2.625em; -} - -.swal2-input { - height: 2.625em; - padding: 0 0.75em; -} -.swal2-input[type="number"] { - max-width: 10em; -} - -.swal2-file { - background: inherit; - font-size: 1.125em; -} - -.swal2-textarea { - height: 6.75em; - padding: 0.75em; -} - -.swal2-select { - min-width: 50%; - max-width: 100%; - padding: 0.375em 0.625em; - background: inherit; - color: inherit; - font-size: 1.125em; -} - -.swal2-radio, -.swal2-checkbox { - align-items: center; - justify-content: center; - background: #fff; - color: inherit; -} -.swal2-radio label, -.swal2-checkbox label { - margin: 0 0.6em; - font-size: 1.125em; -} -.swal2-radio input, -.swal2-checkbox input { - flex-shrink: 0; - margin: 0 0.4em; -} - -.swal2-input-label { - display: flex; - justify-content: center; - margin: 1em auto; -} - -.swal2-validation-message { - align-items: center; - justify-content: center; - margin: 0 -2.7em; - padding: 0.625em; - overflow: hidden; - background: #f0f0f0; - color: #666666; - font-size: 1em; - font-weight: 300; -} -.swal2-validation-message::before { - content: "!"; - display: inline-block; - width: 1.5em; - min-width: 1.5em; - height: 1.5em; - margin: 0 0.625em; - border-radius: 50%; - background-color: #f27474; - color: #fff; - font-weight: 600; - line-height: 1.5em; - text-align: center; -} - -.swal2-icon { - position: relative; - box-sizing: content-box; - justify-content: center; - width: 5em; - height: 5em; - margin: 1.25em auto 1.875em; - border: 0.25em solid transparent; - border-radius: 50%; - border-color: #000; - font-family: inherit; - line-height: 5em; - cursor: default; - user-select: none; -} -.swal2-icon .swal2-icon-content { - display: flex; - align-items: center; - font-size: 3.75em; -} -.swal2-icon.swal2-error { - border-color: #f27474; - color: #f27474; -} -.swal2-icon.swal2-error .swal2-x-mark { - position: relative; - flex-grow: 1; -} -.swal2-icon.swal2-error [class^="swal2-x-mark-line"] { - display: block; - position: absolute; - top: 2.3125em; - width: 2.9375em; - height: 0.3125em; - border-radius: 0.125em; - background-color: #f27474; -} -.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] { - left: 1.0625em; - transform: rotate(45deg); -} -.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] { - right: 1em; - transform: rotate(-45deg); -} -.swal2-icon.swal2-error.swal2-icon-show { - animation: swal2-animate-error-icon 0.5s; -} -.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark { - animation: swal2-animate-error-x-mark 0.5s; -} -.swal2-icon.swal2-warning { - border-color: #facea8; - color: #f8bb86; -} -.swal2-icon.swal2-info { - border-color: #9de0f6; - color: #3fc3ee; -} -.swal2-icon.swal2-question { - border-color: #c9dae1; - color: #87adbd; -} -.swal2-icon.swal2-success { - border-color: #a5dc86; - color: #a5dc86; -} -.swal2-icon.swal2-success [class^="swal2-success-circular-line"] { - position: absolute; - width: 3.75em; - height: 7.5em; - transform: rotate(45deg); - border-radius: 50%; -} -.swal2-icon.swal2-success - [class^="swal2-success-circular-line"][class$="left"] { - top: -0.4375em; - left: -2.0635em; - transform: rotate(-45deg); - transform-origin: 3.75em 3.75em; - border-radius: 7.5em 0 0 7.5em; -} -.swal2-icon.swal2-success - [class^="swal2-success-circular-line"][class$="right"] { - top: -0.6875em; - left: 1.875em; - transform: rotate(-45deg); - transform-origin: 0 3.75em; - border-radius: 0 7.5em 7.5em 0; -} -.swal2-icon.swal2-success .swal2-success-ring { - position: absolute; - z-index: 2; - top: -0.25em; - left: -0.25em; - box-sizing: content-box; - width: 100%; - height: 100%; - border: 0.25em solid rgba(165, 220, 134, 0.3); - border-radius: 50%; -} -.swal2-icon.swal2-success .swal2-success-fix { - position: absolute; - z-index: 1; - top: 0.5em; - left: 1.625em; - width: 0.4375em; - height: 5.625em; - transform: rotate(-45deg); -} -.swal2-icon.swal2-success [class^="swal2-success-line"] { - display: block; - position: absolute; - z-index: 2; - height: 0.3125em; - border-radius: 0.125em; - background-color: #a5dc86; -} -.swal2-icon.swal2-success [class^="swal2-success-line"][class$="tip"] { - top: 2.875em; - left: 0.8125em; - width: 1.5625em; - transform: rotate(45deg); -} -.swal2-icon.swal2-success [class^="swal2-success-line"][class$="long"] { - top: 2.375em; - right: 0.5em; - width: 2.9375em; - transform: rotate(-45deg); -} -.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip { - animation: swal2-animate-success-line-tip 0.75s; -} -.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long { - animation: swal2-animate-success-line-long 0.75s; -} -.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right { - animation: swal2-rotate-success-circular-line 4.25s ease-in; -} - -.swal2-progress-steps { - flex-wrap: wrap; - align-items: center; - max-width: 100%; - margin: 0 0 1.25em; - padding: 0; - background: inherit; - font-weight: 600; -} -.swal2-progress-steps li { - display: inline-block; - position: relative; -} -.swal2-progress-steps .swal2-progress-step { - z-index: 20; - flex-shrink: 0; - width: 2em; - height: 2em; - border-radius: 2em; - background: #2778c4; - color: #fff; - line-height: 2em; - text-align: center; -} -.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step { - background: #2778c4; -} -.swal2-progress-steps - .swal2-progress-step.swal2-active-progress-step - ~ .swal2-progress-step { - background: #add8e6; - color: #fff; -} -.swal2-progress-steps - .swal2-progress-step.swal2-active-progress-step - ~ .swal2-progress-step-line { - background: #add8e6; -} -.swal2-progress-steps .swal2-progress-step-line { - z-index: 10; - flex-shrink: 0; - width: 2.5em; - height: 0.4em; - margin: 0 -1px; - background: #2778c4; -} - -[class^="swal2"] { - -webkit-tap-highlight-color: transparent; -} - -.swal2-show { - animation: swal2-show 0.3s; -} - -.swal2-hide { - animation: swal2-hide 0.15s forwards; -} - -.swal2-noanimation { - transition: none; -} - -.swal2-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -.swal2-rtl .swal2-close { - right: auto; - left: 0; -} - -.swal2-rtl .swal2-timer-progress-bar { - right: 0; - left: auto; -} - -@supports (-ms-accelerator: true) { - .swal2-range input { - width: 100% !important; - } - .swal2-range output { - display: none; - } -} - -@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { - .swal2-range input { - width: 100% !important; - } - .swal2-range output { - display: none; - } -} - -@keyframes swal2-toast-show { - 0% { - transform: translateY(-0.625em) rotateZ(2deg); - } - 33% { - transform: translateY(0) rotateZ(-2deg); - } - 66% { - transform: translateY(0.3125em) rotateZ(2deg); - } - 100% { - transform: translateY(0) rotateZ(0deg); - } -} - -@keyframes swal2-toast-hide { - 100% { - transform: rotateZ(1deg); - opacity: 0; - } -} - -@keyframes swal2-toast-animate-success-line-tip { - 0% { - top: 0.5625em; - left: 0.0625em; - width: 0; - } - 54% { - top: 0.125em; - left: 0.125em; - width: 0; - } - 70% { - top: 0.625em; - left: -0.25em; - width: 1.625em; - } - 84% { - top: 1.0625em; - left: 0.75em; - width: 0.5em; - } - 100% { - top: 1.125em; - left: 0.1875em; - width: 0.75em; - } -} - -@keyframes swal2-toast-animate-success-line-long { - 0% { - top: 1.625em; - right: 1.375em; - width: 0; - } - 65% { - top: 1.25em; - right: 0.9375em; - width: 0; - } - 84% { - top: 0.9375em; - right: 0; - width: 1.125em; - } - 100% { - top: 0.9375em; - right: 0.1875em; - width: 1.375em; - } -} - -@keyframes swal2-show { - 0% { - transform: scale(0.7); - } - 45% { - transform: scale(1.05); - } - 80% { - transform: scale(0.95); - } - 100% { - transform: scale(1); - } -} - -@keyframes swal2-hide { - 0% { - transform: scale(1); - opacity: 1; - } - 100% { - transform: scale(0.5); - opacity: 0; - } -} - -@keyframes swal2-animate-success-line-tip { - 0% { - top: 1.1875em; - left: 0.0625em; - width: 0; - } - 54% { - top: 1.0625em; - left: 0.125em; - width: 0; - } - 70% { - top: 2.1875em; - left: -0.375em; - width: 3.125em; - } - 84% { - top: 3em; - left: 1.3125em; - width: 1.0625em; - } - 100% { - top: 2.8125em; - left: 0.8125em; - width: 1.5625em; - } -} - -@keyframes swal2-animate-success-line-long { - 0% { - top: 3.375em; - right: 2.875em; - width: 0; - } - 65% { - top: 3.375em; - right: 2.875em; - width: 0; - } - 84% { - top: 2.1875em; - right: 0; - width: 3.4375em; - } - 100% { - top: 2.375em; - right: 0.5em; - width: 2.9375em; - } -} - -@keyframes swal2-rotate-success-circular-line { - 0% { - transform: rotate(-45deg); - } - 5% { - transform: rotate(-45deg); - } - 12% { - transform: rotate(-405deg); - } - 100% { - transform: rotate(-405deg); - } -} - -@keyframes swal2-animate-error-x-mark { - 0% { - margin-top: 1.625em; - transform: scale(0.4); - opacity: 0; - } - 50% { - margin-top: 1.625em; - transform: scale(0.4); - opacity: 0; - } - 80% { - margin-top: -0.375em; - transform: scale(1.15); - } - 100% { - margin-top: 0; - transform: scale(1); - opacity: 1; - } -} - -@keyframes swal2-animate-error-icon { - 0% { - transform: rotateX(100deg); - opacity: 0; - } - 100% { - transform: rotateX(0deg); - opacity: 1; - } -} - -@keyframes swal2-rotate-loading { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) { - overflow: hidden; -} - -body.swal2-height-auto { - height: auto !important; -} - -body.swal2-no-backdrop .swal2-container { - top: auto; - right: auto; - bottom: auto; - left: auto; - max-width: calc(100% - 0.625em * 2); - background-color: transparent !important; -} -body.swal2-no-backdrop .swal2-container > .swal2-modal { - box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); -} -body.swal2-no-backdrop .swal2-container.swal2-top { - top: 0; - left: 50%; - transform: translateX(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-top-start, -body.swal2-no-backdrop .swal2-container.swal2-top-left { - top: 0; - left: 0; -} -body.swal2-no-backdrop .swal2-container.swal2-top-end, -body.swal2-no-backdrop .swal2-container.swal2-top-right { - top: 0; - right: 0; -} -body.swal2-no-backdrop .swal2-container.swal2-center { - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} -body.swal2-no-backdrop .swal2-container.swal2-center-start, -body.swal2-no-backdrop .swal2-container.swal2-center-left { - top: 50%; - left: 0; - transform: translateY(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-center-end, -body.swal2-no-backdrop .swal2-container.swal2-center-right { - top: 50%; - right: 0; - transform: translateY(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-bottom { - bottom: 0; - left: 50%; - transform: translateX(-50%); -} -body.swal2-no-backdrop .swal2-container.swal2-bottom-start, -body.swal2-no-backdrop .swal2-container.swal2-bottom-left { - bottom: 0; - left: 0; -} -body.swal2-no-backdrop .swal2-container.swal2-bottom-end, -body.swal2-no-backdrop .swal2-container.swal2-bottom-right { - right: 0; - bottom: 0; -} - -@media print { - body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) { - overflow-y: scroll !important; - } - body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) - > [aria-hidden="true"] { - display: none; - } - body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) - .swal2-container { - position: static !important; - } -} - -body.swal2-toast-shown .swal2-container { - background-color: transparent; -} -body.swal2-toast-shown .swal2-container.swal2-top { - top: 0; - right: auto; - bottom: auto; - left: 50%; - transform: translateX(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-top-end, -body.swal2-toast-shown .swal2-container.swal2-top-right { - top: 0; - right: 0; - bottom: auto; - left: auto; -} -body.swal2-toast-shown .swal2-container.swal2-top-start, -body.swal2-toast-shown .swal2-container.swal2-top-left { - top: 0; - right: auto; - bottom: auto; - left: 0; -} -body.swal2-toast-shown .swal2-container.swal2-center-start, -body.swal2-toast-shown .swal2-container.swal2-center-left { - top: 50%; - right: auto; - bottom: auto; - left: 0; - transform: translateY(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-center { - top: 50%; - right: auto; - bottom: auto; - left: 50%; - transform: translate(-50%, -50%); -} -body.swal2-toast-shown .swal2-container.swal2-center-end, -body.swal2-toast-shown .swal2-container.swal2-center-right { - top: 50%; - right: 0; - bottom: auto; - left: auto; - transform: translateY(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-bottom-start, -body.swal2-toast-shown .swal2-container.swal2-bottom-left { - top: auto; - right: auto; - bottom: 0; - left: 0; -} -body.swal2-toast-shown .swal2-container.swal2-bottom { - top: auto; - right: auto; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} -body.swal2-toast-shown .swal2-container.swal2-bottom-end, -body.swal2-toast-shown .swal2-container.swal2-bottom-right { - top: auto; - right: 0; - bottom: 0; - left: auto; -} - -.croppy-round .cropper-view-box, -.croppy-round .cropper-face { - border-radius: 50%; -} - -@media screen and (max-width: 640px) { - .dataTables_wrapper .dataTables_filter, - .dataTables_wrapper .dataTables_length { - text-align: left !important; - } -} - -.scroller { - overflow-y: auto; - scrollbar-color: #32bdea #88dffb; - scrollbar-width: thin; -} -.scroller::-webkit-scrollbar-thumb { - background-color: #32bdea; -} -.scroller::-webkit-scrollbar-track { - background-color: #88dffb; -} -.scroller::-moz-scrollbar-thumb { - background-color: #32bdea; -} -.scroller::-moz-scrollbar-track { - background-color: #88dffb; -} - -::-webkit-scrollbar { - width: 8px; - height: 8px; - border-radius: 20px; -} - -::-moz-scrollbar { - width: 8px; - height: 8px; - border-radius: 20px; -} - -::-webkit-scrollbar-track { - background: #dcdfe8; - border-radius: 20px; -} - -::-webkit-scrollbar-thumb { - background: #01041b; - border-radius: 20px; -} -::-webkit-scrollbar-thumb:hover { - background: #01041b; - border-radius: 20px; -} - -::-moz-scrollbar-thumb { - background: #01041b; - border-radius: 20px; -} -::-moz-scrollbar-thumb:hover { - background: #01041b; - border-radius: 20px; -} - -::-webkit-scrollbar { - width: 4px; - height: 8px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -::-moz-scrollbar { - width: 4px; - height: 8px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.scrollbar-thumb { - width: 4px !important; -} - -.scrollbar-track-y { - width: 4px !important; -} - -body { - font-family: "Lato", sans-serif; - font-weight: 400; - font-style: normal; - font-size: 16px; - line-height: 29px; - padding: 0; - margin: 0; - color: #676e8a; - background: #ffffff; -} - -a:hover { - text-decoration: none; -} - -.btn i { - margin-right: 5px; -} - -.iq-mb-3 { - margin-bottom: 30px !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 600; -} - -button:focus { - outline: none; -} - -.line-height { - line-height: normal; -} - -.rounded-normal, -.rounded-small { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -:focus { - outline: none; -} - -.text-break { - word-break: break-all; -} - -.border-none { - border: none !important; -} - -.breadcrumb-item + .breadcrumb-item::before { - margin-top: 5px; -} - -.user-list-files { - justify-content: flex-end; -} -.user-list-files a { - padding: 10px 15px; - margin: 0 0 0 10px; - border-radius: 5px; - line-height: normal; -} - -code { - color: #e08db4; -} - -.slick-loading .slick-list { - background: transparent !important; -} - -ul.iq-edit-profile li a { - padding: 1rem 1rem !important; - text-align: center; -} - -.change-mode { - margin-right: 0; - margin-top: 0px; -} -.change-mode .custom-switch.custom-switch-icon .custom-control-input { - height: 100%; -} -.change-mode - .custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:after { - transform: translateX(1.6rem); -} -.change-mode - .custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:before { - background-color: #0d0d0d; - border-color: #0d0d0d; -} -.change-mode .custom-switch.custom-switch-icon label.custom-control-label { - height: 31px; - width: 30px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label:after { - top: 0; - left: 0; - width: 35px; - height: 30px; - -webkit-border-radius: 5px 0 0 5px; - -moz-border-radius: 5px 0 0 5px; - -ms-border-radius: 5px 0 0 5px; - -o-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; - background-color: #32bdea; - border-color: #32bdea; - z-index: 0; - display: none; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label:before { - width: 38px; - height: 38px; - top: 0; - left: 0; - background-color: #fff; - border: 1px solid #dcdfe8; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-left { - top: 5px; - z-index: 1; - left: 11px; - line-height: 24px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-left - i { - font-size: 16px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-right { - right: 3px; - top: 5px; - line-height: 24px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-right - i { - font-size: 16px; -} - -.custom-control-input:focus ~ .custom-control-label:before { - box-shadow: none !important; -} - -g[aria-describedby="id-22-description"] { - stroke: none; -} - -@media (min-width: 1400px) { - .container { - max-width: 1300px; - } - .container-lg { - max-width: 1300px; - } - .container-md { - max-width: 1300px; - } - .container-sm { - max-width: 1300px; - } - .container-xl { - max-width: 1300px; - } -} - -@media (max-width: 1300px) { - .flatpickr-rContainer { - padding-right: 40px; - } - .flatpickr-months .flatpickr-next-month { - padding-right: 40px; - } - .flatpickr-months .flatpickr-prev-month { - padding-right: 40px; - } - .flatpickr-current-month { - left: 7.5%; - } -} - -@media (max-width: 767px) { - .table { - width: 100%; - max-width: 100%; - margin-bottom: 1rem; - display: block; - overflow-x: auto; - } - .tree { - display: inline-table; - } -} - -@media (max-width: 575px) { - .user-list-files { - justify-content: center; - margin-top: 15px; - } -} - -.content-page { - overflow: hidden; - margin-left: 260px; - padding: 105px 15px 0px; - min-height: 100vh; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -@media (min-width: 1300px) { - body.sidebar-main .content-page { - margin-left: 70px; - } - body.sidebar-main .iq-menu-bt-sidebar { - display: block; - margin-left: auto; - margin-right: auto; - padding-left: 0; - } -} - -@media (max-width: 1299px) { - .content-page { - margin-left: 0; - padding: 95px 15px 0; - } -} - -@media (max-width: 991px) { - .content-page { - padding: 75px 0 0; - } -} - -@media (max-width: 479px) { - .welcome-content { - display: block !important; - text-align: center; - } - .welcome-content .breadcrumb { - justify-content: center; - } -} - -label { - color: #01041b; -} - -.table td { - vertical-align: middle; -} - -.table th { - vertical-align: middle; -} - -.form-control { - height: 45px; - line-height: 45px; - background: #ffffff; - border: 1px solid #dcdfe8; - font-size: 14px; - color: #676e8a; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - box-shadow: none; -} -.form-control:focus { - color: #01041b; - border-color: #32bdea; - box-shadow: none; -} - -.form-control-sm { - height: 30px; - line-height: 30px; -} - -.form-control-lg { - height: 50px; - line-height: 50px; -} - -.spin { - -webkit-animation: spin 2s infinite linear; - animation: spin 2s infinite linear; -} - -.input-group .input-group-prepend .input-group-text { - border: 1px solid #bfc9d4; - background-color: #ffffff; -} - -.input-group .input-group-append .input-group-text { - border: 1px solid #bfc9d4; - background-color: #ffffff; -} - -textarea.form-control { - background-color: #ffffff; - line-height: 28px; -} - -#editor { - height: 375px; -} - -.uploader-file { - display: block; - clear: both; - margin: 0 auto; - width: 100%; - max-width: 600px; -} -.uploader-file label { - float: left; - clear: both; - width: 100%; - padding: 2rem 1.5rem; - text-align: center; - background: #fff; - border-radius: 7px; - border: 3px solid #eee; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - user-select: none; -} -.uploader-file label.hover { - border: 3px solid; - box-shadow: inset 0 0 0 6px #eee; -} -.uploader-file label.hover #start-one i.fa { - -webkit-transform: scale(0.8); - -moz-transform: scale(0.8); - -ms-transform: scale(0.8); - -o-transform: scale(0.8); - transform: scale(0.8); - -webkit-opacity: 0.3; - -moz-opacity: 0.3; - -ms-opacity: 0.3; - -o-opacity: 0.3; - opacity: 0.3; -} -.uploader-file #start-one { - float: left; - clear: both; - width: 100%; -} -.uploader-file #start-one i.fa { - font-size: 50px; - margin-bottom: 1rem; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.uploader-file #start-one.hidden { - display: none; -} -.uploader-file #response { - float: left; - clear: both; - width: 100%; -} -.uploader-file #response #messages { - margin-bottom: 0.5rem; -} -.uploader-file #response.hidden { - display: none; -} -.uploader-file #file-image { - display: inline; - margin: 0 auto 0.5rem auto; - width: auto; - height: auto; - max-width: 180px; -} -.uploader-file #file-image.hidden { - display: none; -} -.uploader-file #notimage { - display: block; - float: left; - clear: both; - width: 100%; -} -.uploader-file #notimage.hidden { - display: none; -} -.uploader-file progress { - display: inline; - clear: both; - margin: 0 auto; - width: 100%; - max-width: 180px; - height: 8px; - border: 0; - border-radius: 4px; - background-color: #eee; - overflow: hidden; -} -.uploader-file .progress { - display: inline; - clear: both; - margin: 0 auto; - width: 100%; - max-width: 180px; - height: 8px; - border: 0; - border-radius: 4px; - background-color: #eee; - overflow: hidden; -} -.uploader-file input[type="file"] { - display: none; -} -.uploader-file div { - margin: 0 0 0.5rem 0; - color: #5f6982; -} - -.spin { - -webkit-animation: spin 2s infinite linear; - animation: spin 2s infinite linear; -} - -.input-group .input-group-prepend .input-group-text { - border: 1px solid #dcdfe8; - background-color: #ffffff; -} - -.input-group .input-group-append .input-group-text { - border: 1px solid #dcdfe8; - background-color: #ffffff; -} - -.custom-select { - height: 46px; - border: 1px solid #dcdfe8; -} - -.dropone.dropdown-toggle:after { - display: none; -} - -.input-group-sm > .custom-select { - height: 30px; -} - -.input-group-sm > .form-control:not(textarea) { - height: 30px; -} - -.input-group-lg > .custom-select { - height: 50px; -} - -.input-group-lg > .form-control:not(textarea) { - height: 50px; -} - -.input-group-text.text-area { - padding: 1.9rem 0.75rem; -} - -.custom-file-label::after { - background-color: #ffffff; - color: #676e8a; -} - -.custom-file-input:focus ~ .custom-file-label { - border-color: #32bdea; - box-shadow: none; -} - -.btn-outline-primary.disabled { - color: #32bdea; - background-color: transparent; -} - -.btn-outline-primary:disabled { - color: #32bdea; - background-color: transparent; -} - -table.dataTable thead td { - padding: 10px 10px !important; -} - -table.dataTable thead th { - padding: 10px 10px !important; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: #ffffff; -} - -.table-bordered { - border: 1px solid #dcdfe8; -} -.table-bordered td { - border: 1px solid #dcdfe8; -} -.table-bordered th { - border: 1px solid #dcdfe8; -} - -.dataTables_wrapper .dataTables_filter { - color: #676e8a; -} - -.dataTables_wrapper .dataTables_info { - color: #676e8a; -} - -.dataTables_wrapper .dataTables_length { - color: #676e8a; -} - -.dataTables_wrapper .dataTables_paginate { - color: #676e8a; -} - -.dataTables_wrapper .dataTables_processing { - color: #676e8a; -} - -.dataTables_wrapper .dataTables_paginate .paginate_button { - padding: 0; - margin: 0; -} -.dataTables_wrapper .dataTables_paginate .paginate_button:hover { - color: #01041b !important; - border-radius: 10px; - background: #88dffb !important; -} - -.dataTables_wrapper .dataTables_paginate span .paginate_button { - padding: 0px 10px; - border-radius: 10px; - margin: 0 3px; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button.current { - padding: 3px 10px; - color: #32bdea !important; - border: 1px solid #32bdea !important; - background: #88dffb !important; - border-radius: 10px; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover { - color: #32bdea !important; - border: 1px solid #32bdea !important; - background: #88dffb !important; -} -.dataTables_wrapper .dataTables_paginate span .paginate_button:hover { - color: #01041b !important; - border: 1px solid #32bdea !important; - background: #88dffb !important; -} - -.dataTables_wrapper .dataTables_filter input { - border-color: #dcdfe8; - background-color: transparent; - border-style: solid; - border-width: 1px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -table.dataTable thead td { - padding: 10px 18px; - border-bottom: 1px solid #dcdfe8 !important; -} - -table.dataTable thead th { - padding: 10px 18px; - border-bottom: 1px solid #dcdfe8 !important; - color: #110a57 !important; -} - -table.dataTable.no-footer { - border-bottom: 1px solid #dcdfe8 !important; -} - -.dataTables_wrapper .dataTables_paginate .paginate_button { - box-shadow: none !important; - outline: none !important; -} - -.dataTables_wrapper .dataTables_info { - padding-top: 15px !important; -} - -.dataTables_wrapper .dataTables_length label { - border-color: #dcdfe8 !important; -} - -.dataTables_wrapper .dataTables_length select { - border-color: #dcdfe8 !important; -} - -.custom-control-label:after { - top: 0.25rem; -} - -.custom-control-label:before { - top: 0.25rem; -} - -.custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); -} - -.select2-container--default .select2-selection--multiple { - height: 45px; - line-height: 34px; - background: #fafbfe; - border: 1px solid #f1f1f1; - font-size: 14px; - color: #535f6b; - border-radius: 5px; -} - -#form-wizard1 { - position: relative; -} -#form-wizard1 input[type="file"] { - line-height: 27px; -} -#form-wizard1 fieldset:not(:first-of-type) { - display: none; -} - -#form-wizard2 { - position: relative; -} - -#form-wizard3 { - position: relative; -} - -.steps { - font-size: 20px; - color: #676e8a; - font-weight: normal; - text-align: right; -} - -#top-tab-list { - margin: 0 -10px 60px; - overflow: hidden; - color: #676e8a; -} -#top-tab-list .active { - color: #32bdea; -} -#top-tab-list li { - list-style-type: none; - font-size: 18px; - width: 25%; - float: left; - text-align: left; - position: relative; - font-weight: 400; -} -#top-tab-list li i { - display: inline-block; - text-align: center; - height: 50px; - width: 50px; - line-height: 50px; - font-size: 20px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - margin: 0 15px 0 0; - color: #fff; - background: #32bdea; -} -#top-tab-list li a { - background: #88dffb; - color: #32bdea; - display: block; - padding: 15px; - margin: 0 10px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - text-decoration: none; -} -#top-tab-list li.active a { - color: #fff; - background: #32bdea; -} -#top-tab-list li.active i { - background-color: #fff; - color: #32bdea; -} -#top-tab-list li.active.done a { - background: #78c091; -} -#top-tab-list li.active.done i { - color: #78c091; -} -#top-tab-list li#confirm.active a { - background: #78c091; -} -#top-tab-list li#confirm.active i { - color: #78c091; -} - -.fit-image { - width: 100%; - object-fit: cover; -} - -@media (max-width: 991px) { - #top-tab-list li a { - margin: 0 5px; - padding: 15px 8px; - } -} - -@media (max-width: 767px) { - #top-tab-list li { - width: 100%; - margin-bottom: 15px; - } -} - -.stepwizard-row { - display: block; - margin: 0 -20px; -} -.stepwizard-row .wizard-step a.btn { - background: #fff; - color: #676e8a; - font-size: 18px; - font-weight: 400; - display: block; - padding: 50px 15px; - margin: 10px 20px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - text-decoration: none; - border: 1px solid #88dffb; -} -.stepwizard-row .wizard-step i { - display: block; - text-align: center; - height: 65px; - width: 65px; - line-height: 65px; - font-size: 25px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - margin: 0 auto 20px; - color: #fff; - background: #32bdea; -} -.stepwizard-row #user.active a { - background: #88dffb; - border-color: #32bdea; -} -.stepwizard-row #document.active a { - background: #f1c8db; - border-color: #e08db4; -} -.stepwizard-row #bank.active a { - background: #a0d9b4; - border-color: #78c091; -} -.stepwizard-row #confirm.active a { - background: #ffaa8a; - border-color: #ff9770; -} -.stepwizard-row .wizard-step#user i { - background: #88dffb; - color: #32bdea; -} -.stepwizard-row .wizard-step#document i { - background: #f1c8db; - color: #e08db4; -} -.stepwizard-row .wizard-step#bank i { - background: #a0d9b4; - color: #78c091; -} -.stepwizard-row .wizard-step#confirm i { - background: #ffaa8a; - color: #ff9770; -} -.stepwizard-row .wizard-step.active i { - background-color: #fff !important; -} -.stepwizard-row .wizard-step#document.active i { - background: #f1c8db; - color: #e08db4; -} -.stepwizard-row .wizard-step#bank.active i { - background: #a0d9b4; - color: #78c091; -} -.stepwizard-row .wizard-step#confirm.active i { - background: #ffaa8a; - color: #ff9770; -} - -.stepwizard { - display: table; - width: 100%; - position: relative; -} - -.setup-content { - margin-top: 60px; -} - -.wizard-step { - font-size: 18px; - width: 25%; - float: left; - position: relative; - font-weight: 400; - text-align: center; -} - -.has-error .help-block { - color: #e08db4; -} - -.has-error .control-label { - color: #e08db4; -} - -.has-error .radio { - color: #e08db4; -} - -.has-error .checkbox { - color: #e08db4; -} - -.has-error .radio-inline { - color: #e08db4; -} - -.has-error .checkbox-inline { - color: #e08db4; -} - -.has-error .form-control { - border: 1px solid #e08db4; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} - -.btn.disabled { - cursor: not-allowed; - pointer-events: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.btn[disabled] { - cursor: not-allowed; - pointer-events: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -@media (max-width: 767px) { - .wizard-step { - width: 50%; - } -} - -@media (max-width: 479px) { - .wizard-step { - width: 100%; - } -} - -#form-wizard3 fieldset:not(:first-of-type) { - display: none; -} - -#top-tabbar-vertical { - overflow: hidden; - color: #676e8a; - margin: 0 -20px 60px; -} -#top-tabbar-vertical .active { - color: #32bdea; -} -#top-tabbar-vertical li { - list-style-type: none; - font-size: 18px; - width: 100%; - float: left; - position: relative; - font-weight: 400; -} -#top-tabbar-vertical li i { - display: inline-block; - text-align: center; - height: 50px; - width: 50px; - line-height: 50px; - font-size: 20px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - margin: 0 20px 0 0; -} -#top-tabbar-vertical li a { - background: #fff; - color: #000; - display: block; - padding: 20px 15px; - margin: 10px 20px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - text-decoration: none; - border: 1px solid #88dffb; -} -#top-tabbar-vertical li.step1 i { - background: #88dffb; - color: #32bdea; -} -#top-tabbar-vertical li.step2 i { - background: #f1c8db; - color: #e08db4; -} -#top-tabbar-vertical li.step3 i { - background: #a0d9b4; - color: #78c091; -} -#top-tabbar-vertical li.step4 i { - background: #ffaa8a; - color: #ff9770; -} -#top-tabbar-vertical li.active a { - border-color: transparent; -} -#top-tabbar-vertical li.active i { - background-color: #fff; - color: #32bdea; - background: #fff !important; -} -#top-tabbar-vertical .step1.active a { - background: #88dffb; -} -#top-tabbar-vertical .step2.active a { - background: #f1c8db; -} -#top-tabbar-vertical .step3.active a { - background: #a0d9b4; -} -#top-tabbar-vertical .step4.active a { - background: #ffaa8a; -} - -.iq-icons-list { - line-height: 50px; - margin-bottom: 15px; - display: inline-block; -} -.iq-icons-list i { - text-align: center; - vertical-align: middle; - font-size: 22px; - width: 40px; - height: 50px; - line-height: 50px; - margin-right: 10px; - display: inline-block; -} -.iq-icons-list .icon { - text-align: center; - vertical-align: middle; - font-size: 22px; - width: 40px; - height: 40px; - line-height: 50px; - margin-right: 10px; - display: inline-block; -} -.iq-icons-list span { - display: inline-block; - vertical-align: middle; -} - -.iq-card-icon { - height: 60px; - width: 60px; - display: inline-block; - line-height: 60px; - text-align: center; - font-size: 22px; -} - -.ion-icon { - height: 15px; - width: 15px; - line-height: 15px; - font-size: 22px; - margin-right: 10px; -} - -.iq-iconbox { - height: 50px; - width: 50px; - line-height: 50px; - text-align: center; - font-size: 25px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.iq-icon-box { - height: 64px; - width: 64px; - min-width: 64px; - line-height: 64px; - text-align: center; - margin-right: 10px; - font-size: 26px; - text-decoration: none; -} - -.card.iq-border-box { - border-bottom: 4px solid; -} - -.profile-icon { - height: 40px; - width: 40px; - line-height: 40px; - text-align: center; - font-size: 20px; - font-weight: 700; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} - -.iq-error { - width: 100%; - overflow: hidden; - display: inline-block; -} -.iq-error h1.text-in-box { - position: absolute; - top: 0; - left: 0; - right: 0; - font-size: 8em; - font-weight: 700; -} - -.iq-error-img { - position: static; - display: inline-block; - margin-bottom: 20px; -} - -.error-500 .iq-error-img { - width: 100%; -} - -.height-self-center { - height: 100vh; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.iq-maintenance img { - width: 20%; -} - -@media (max-width: 767px) { - .iq-error h1.text-in-box { - font-size: 5em; - } -} - -@media (max-width: 479px) { - .iq-error h1.text-in-box { - font-size: 4em; - } - .iq-error h2 { - font-size: 1.5em; - } -} - -.login-content { - position: relative; - height: 100vh; - z-index: 99; -} -.login-content .floating-label label { - color: #676e8a; - font-size: 14px; - font-weight: 400; - position: absolute; - pointer-events: none; - left: 12px; - top: 50%; - -webkit-transform: translateY(-50%); - -moz-transform: translateY(-50%); - -ms-transform: translateY(-50%); - -o-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.login-content .form-control { - border-color: #c7cbd3; -} -.login-content .form-control:focus { - border-color: #32bdea; -} -.login-content .custom-control-label::before { - background-color: #ffffff; -} -.login-content .custom-control-label.control-label-1 { - line-height: 24px; -} -.login-content .auth-card { - position: relative; - overflow: hidden; - width: 100%; - min-height: 480px; - height: auto; - margin: 15px auto; - display: block; -} -.login-content .auth-card .auth-content { - min-height: 480px; - height: 100% !important; -} - -.floating-label { - position: relative; - margin-bottom: 20px; -} - -.floating-input:focus ~ label { - color: #32bdea; - top: 0; - left: 6px; - font-size: 10px; - background: #ffffff; - padding: 5px 8px; -} - -.floating-input:not(:placeholder-shown) { - color: #676e8a; - border: 1px solid #dcdfe8; -} -.floating-input:not(:placeholder-shown) ~ label { - top: 0; - font-size: 14px; - background: #ffffff; - padding: 5px 8px; -} - -@media (min-width: 992px) { - .lb-img { - position: absolute; - bottom: 0; - left: 0; - width: 213px; - } - .rb-img { - position: absolute; - bottom: 0; - right: 0; - width: 194px; - } - .cnf-mail { - width: 80%; - } -} - -@media (max-width: 991px) { - .lb-img { - display: none; - } - .rb-img { - display: none; - } -} - -@media (max-width: 575px) { - .content-right { - display: none; - } -} - -#loading { - background-color: #ffffff; - height: 100%; - width: 100%; - position: fixed; - margin-top: 0px; - top: 0px; - left: 0px; - bottom: 0px; - overflow: hidden !important; - right: 0px; - z-index: 999999; -} - -#loading-center { - background: url(../../assets/loader.gif) no-repeat scroll center center; - background-size: 20%; - width: 100%; - height: 100%; - position: relative; -} - -.loader { - width: 3em; - height: 3em; - margin: auto; - left: 0; - right: 0; - top: 0; - bottom: 0; - position: absolute; -} - -/*------------------*/ -@keyframes loader1 { - 0%, - 100% { - box-shadow: 0em -2.6em 0em 0em #4788ff, - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.5), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7); - } - 12.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.7), - 1.8em -1.8em 0 0em #4788ff, 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5); - } - 25% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.5), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7), 2.5em 0em 0 0em #4788ff, - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 37.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.7), 1.75em 1.75em 0 0em #4788ff, - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 50% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.5), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.7), 0em 2.5em 0 0em #4788ff, - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 62.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.5), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.7), -1.8em 1.8em 0 0em #4788ff, - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 75% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.5), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.7), -2.6em 0em 0 0em #4788ff, - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 87.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.5), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.7), -1.8em -1.8em 0 0em #4788ff; - } -} - -@-webkit-keyframes loader1 { - 0%, - 100% { - box-shadow: 0em -2.6em 0em 0em #4788ff, - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.5), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7); - } - 12.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.7), - 1.8em -1.8em 0 0em #4788ff, 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5); - } - 25% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.5), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7), 2.5em 0em 0 0em #4788ff, - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 37.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.7), 1.75em 1.75em 0 0em #4788ff, - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 50% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.5), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.7), 0em 2.5em 0 0em #4788ff, - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 62.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.5), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.7), -1.8em 1.8em 0 0em #4788ff, - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 75% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.5), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.7), -2.6em 0em 0 0em #4788ff, - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 87.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.5), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.7), -1.8em -1.8em 0 0em #4788ff; - } -} - -@-webkit-keyframes loader2 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader2 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader-3-outter { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader-3-outter { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader-3-inner { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@keyframes loader-3-inner { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@-webkit-keyframes loader4 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader4 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader5 { - 0%, - 100% { - -webkit-transform: translateX(0px); - -moz-transform: translateX(0px); - -ms-transform: translateX(0px); - -o-transform: translateX(0px); - transform: translateX(0px); - } - 75% { - -webkit-transform: translateX(30px); - -moz-transform: translateX(30px); - -ms-transform: translateX(30px); - -o-transform: translateX(30px); - transform: translateX(30px); - } -} - -@keyframes loader5_1 { - 0%, - 100% { - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); - } - 75% { - -webkit-transform: translateY(30px); - -moz-transform: translateY(30px); - -ms-transform: translateY(30px); - -o-transform: translateY(30px); - transform: translateY(30px); - } -} - -@keyframes loader5_2 { - 0%, - 100% { - -webkit-transform: translate(0px, 0px); - -moz-transform: translate(0px, 0px); - -ms-transform: translate(0px, 0px); - -o-transform: translate(0px, 0px); - transform: translate(0px, 0px); - } - 75% { - -webkit-transform: translate(30px, 30px); - -moz-transform: translate(30px, 30px); - -ms-transform: translate(30px, 30px); - -o-transform: translate(30px, 30px); - transform: translate(30px, 30px); - } -} - -@keyframes inner1 { - 0% { - -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - } - 100% { - -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - } -} - -@keyframes inner2 { - 0% { - -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - } - 100% { - -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - } -} - -@keyframes inner3 { - 0% { - -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - } - 100% { - -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - } -} - -@keyframes loader7 { - 0% { - -webkit-transform: rotate(0); - -moz-transform: rotate(0); - -ms-transform: rotate(0); - -o-transform: rotate(0); - transform: rotate(0); - } - 50% { - -webkit-transform: rotateY(180deg); - -moz-transform: rotateY(180deg); - -ms-transform: rotateY(180deg); - -o-transform: rotateY(180deg); - transform: rotateY(180deg); - } - 100% { - -webkit-transform: rotateY(180deg) rotateX(180deg); - -moz-transform: rotateY(180deg) rotateX(180deg); - -ms-transform: rotateY(180deg) rotateX(180deg); - -o-transform: rotateY(180deg) rotateX(180deg); - transform: rotateY(180deg) rotateX(180deg); - } -} - -@-webkit-keyframes loader8 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader8 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader9 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader9 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader10 { - 0%, - 100% { - -webkit-transform: translate(0, 0) rotate(0); - -moz-transform: translate(0, 0) rotate(0); - -ms-transform: translate(0, 0) rotate(0); - -o-transform: translate(0, 0) rotate(0); - transform: translate(0, 0) rotate(0); - } - 25% { - -webkit-transform: translate(40px, 40px) rotate(45deg); - -moz-transform: translate(40px, 40px) rotate(45deg); - -ms-transform: translate(40px, 40px) rotate(45deg); - -o-transform: translate(40px, 40px) rotate(45deg); - transform: translate(40px, 40px) rotate(45deg); - } - 50% { - -webkit-transform: translate(0px, 80px) rotate(0deg); - -moz-transform: translate(0px, 80px) rotate(0deg); - -ms-transform: translate(0px, 80px) rotate(0deg); - -o-transform: translate(0px, 80px) rotate(0deg); - transform: translate(0px, 80px) rotate(0deg); - } - 75% { - -webkit-transform: translate(-40px, 40px) rotate(45deg); - -moz-transform: translate(-40px, 40px) rotate(45deg); - -ms-transform: translate(-40px, 40px) rotate(45deg); - -o-transform: translate(-40px, 40px) rotate(45deg); - transform: translate(-40px, 40px) rotate(45deg); - } -} - -@keyframes loader11 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader12 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - } - 50% { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - border-radius: 0%; - } - 100% { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - } -} - -@-webkit-keyframes loader13 { - to { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader13 { - to { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader14 { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 50% { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - 100% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} - -@keyframes loader14 { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 50% { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - 100% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} - -@-webkit-keyframes loader15-inner { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@keyframes loader15-inner { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@-webkit-keyframes loader15 { - 0% { - border-width: 0px; - } - 100% { - border-width: 10px; - } -} - -@keyframes loader15 { - 0% { - border-width: 0px; - } - 100% { - border-width: 10px; - } -} - -@-webkit-keyframes loader16 { - 0% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader16 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.iq-loader-box { - height: 150px; - text-align: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - vertical-align: middle; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} -.iq-loader-box [class*="loader-"] { - display: inline-block; - width: 60px; - height: 60px; - color: inherit; - vertical-align: middle; - position: relative; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} -.iq-loader-box .iq-loader-1 { - width: 1em; - height: 1em; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: relative; - text-indent: -9999em; - -webkit-animation: loader1 1.1s infinite ease; - animation: loader1 1.1s infinite ease; - -webkit-transform: translateZ(0); - -moz-transform: translateZ(0); - -ms-transform: translateZ(0); - -o-transform: translateZ(0); - transform: translateZ(0); -} -.iq-loader-box .iq-loader-2 { - border: 7px double #37e6b0; - -webkit-animation: loader2 1s linear infinite; - animation: loader2 1s linear infinite; -} -.iq-loader-box .iq-loader-2:before { - content: ""; - position: absolute; - width: 12px; - height: 12px; - background: #37e6b0; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - bottom: 0; - right: 37px; -} -.iq-loader-box .iq-loader-2:after { - content: ""; - position: absolute; - width: 12px; - height: 12px; - background: #37e6b0; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - bottom: 0; - right: 37px; - left: 37px; - top: 0; -} -.iq-loader-box .iq-loader-3 { - position: relative; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - display: inline-block; - vertical-align: middle; -} -.iq-loader-box .iq-loader-3 .loader-outter { - position: absolute; - border: 4px solid #f50057; - border-left-color: transparent; - border-bottom: 0; - width: 100%; - height: 100%; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - -webkit-animation: loader-3-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) - infinite; - animation: loader-3-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; -} -.iq-loader-box .iq-loader-3 .loader-inner { - position: absolute; - border: 4px solid #f50057; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 40px; - height: 40px; - left: calc(50% - 20px); - top: calc(50% - 20px); - border-right: 0; - border-top-color: transparent; - -webkit-animation: loader-3-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) - infinite; - animation: loader-3-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; -} -.iq-loader-box .iq-loader-4 { - border: 0.2em solid transparent; - border-top-color: #fe721c; - border-bottom-color: #fe721c; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: relative; - -webkit-animation: 1s loader4 linear infinite; - animation: 1s loader4 linear infinite; -} -.iq-loader-box .iq-loader-4:before { - content: ""; - display: block; - width: 0; - height: 0; - position: absolute; - border: 0.2em solid transparent; - border-bottom-color: #fe721c; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); - right: -0.3em; - top: -0.05em; -} -.iq-loader-box .iq-loader-4:after { - content: ""; - display: block; - width: 0; - height: 0; - position: absolute; - border: 0.2em solid transparent; - border-bottom-color: #fe721c; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - left: -0.3em; - bottom: -0.05em; -} -.iq-loader-box .iq-loader-5 { - width: 100px; - height: 100px; - border-radius: 100%; - position: relative; - margin: 0 auto; -} -.iq-loader-box .iq-loader-5 span { - display: block; - position: absolute; - left: calc(50% - 20px); - top: calc(50% - 20px); - width: 20px; - height: 20px; - background-color: var(--info); -} -.iq-loader-box .iq-loader-5 span:nth-child(1) { - animation: loader5 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-5 span:nth-child(2) { - animation: loader5_1 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-5 span:nth-child(3) { - animation: loader5_2 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-6 .inner { - position: absolute; - box-sizing: border-box; - width: 100%; - height: 100%; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} -.iq-loader-box .iq-loader-6 .inner1 { - left: 0%; - top: 0%; - animation: inner1 1s linear infinite; - border-bottom: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-6 .inner2 { - right: 0%; - top: 0%; - animation: inner2 1s linear infinite; - border-right: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-6 .inner3 { - right: 0%; - bottom: 0%; - animation: inner3 1s linear infinite; - border-top: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-7:before { - content: ""; - position: absolute; - left: 0px; - width: 50px; - height: 50px; - background-color: #3498db; - animation: loader7 1s infinite; -} -.iq-loader-box .iq-loader-8 { - border: 1.2em solid transparent; - border-left-color: #d0bac2; - border-right-color: #d0bac2; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - -webkit-animation: 1s loader8 linear infinite; - animation: 1s loader8 linear infinite; -} -.iq-loader-box .iq-loader-9 { - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 7em; - height: 7em; - margin: 60px auto; - font-size: 10px; - position: relative; - text-indent: -9999em; - border-top: 1.1em solid rgba(255, 107, 208, 0.2); - border-right: 1.1em solid rgba(255, 107, 208, 0.2); - border-bottom: 1.1em solid rgba(255, 107, 208, 0.2); - border-left: 1.1em solid #ff6bd0; - -webkit-transform: translateZ(0); - -ms-transform: translateZ(0); - transform: translateZ(0); - -webkit-animation: loader9 1.1s infinite linear; - animation: loader9 1.1s infinite linear; -} -.iq-loader-box .iq-loader-9:after { - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 7em; - height: 7em; -} -.iq-loader-box .iq-loader-10:before { - content: ""; - width: 20px; - height: 20px; - position: absolute; - top: -10px; - left: calc(50% - 10px); - background-color: #3450db; - animation: loader10 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-10:after { - content: ""; - width: 20px; - height: 20px; - position: absolute; - top: -10px; - left: calc(50% - 10px); - background-color: #3450db; - animation: loader10 1s ease-in-out infinite; - bottom: 0; - animation-delay: 0.5s; -} -.iq-loader-box .iq-loader-11 { - background: #000000; -} -.iq-loader-box .iq-loader-11:before { - content: ""; - position: absolute; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 25px; - height: 25px; - margin: 0 0 0 -12px; - background-color: white; - top: auto; - bottom: 0; - left: 50%; - transform-origin: 50% 0%; - animation: loader11 1s infinite linear; -} -.iq-loader-box .iq-loader-12 { - animation: loader12 1s infinite linear; - background: #6dca5c; -} -.iq-loader-box .iq-loader-13 { - border-top: 0.2em solid #a7a4ca; - border-right: 0.2em solid transparent; - -webkit-animation: loader13 1s linear infinite; - animation: loader13 1s linear infinite; - border-radius: 100%; - position: relative; -} -.iq-loader-box .iq-loader-14 { - border: 0 solid transparent; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: relative; -} -.iq-loader-box .iq-loader-14:before { - content: ""; - border: 1em solid #13d7eb; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: inherit; - height: inherit; - position: absolute; - top: 0; - left: 0; - -webkit-animation: loader14 1s linear infinite; - animation: loader14 1s linear infinite; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} -.iq-loader-box .iq-loader-14:after { - content: ""; - border: 1em solid #13d7eb; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: inherit; - height: inherit; - position: absolute; - top: 0; - left: 0; - -webkit-animation: loader14 1s linear infinite; - animation: loader14 1s linear infinite; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} -.iq-loader-box .iq-loader-15 { - border: 6px groove #7e57c2; - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - -webkit-transition: all 1s ease; - transition: all 1s ease; - -webkit-animation: loader15-inner 1s ease-out alternate infinite; - animation: loader15-inner 1s ease-out alternate infinite; -} -.iq-loader-box .iq-loader-15 .loader-inner { - border: 0px inset #9575cd; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 100%; - height: 100%; - -webkit-animation: loader15 1s ease-out alternate infinite; - animation: loader15 1s ease-out alternate infinite; -} -.iq-loader-box .iq-loader-16 { - width: 70px; - height: 70px; - border: 5px dashed #b3a57c; - -webkit-animation: loader16 2s linear both infinite; - animation: loader16 2s linear both infinite; -} - -.iq-timeline { - margin: 0 0 0 20px; - padding: 0; - width: 100%; -} -.iq-timeline li { - margin-left: 35px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -.iq-timeline li .timeline-dots { - position: absolute; - top: 20px; - left: -54px; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #ffffff; - height: 40px; - width: 40px; - line-height: 25px; - text-align: center; -} - -.iq-timeline:before { - content: ""; - position: absolute; - left: 50%; - -webkit-transform: translateX(-50%); - -moz-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} - -.timeline-page .iq-timeline ul li { - width: 50%; - padding: 5px 30px 40px 30px; - cursor: pointer; - margin: 0px; -} -.timeline-page .iq-timeline ul li:nth-child(odd) { - float: left; - text-align: right; - clear: both; -} -.timeline-page .iq-timeline ul li:nth-child(odd) .timeline-dots { - right: -8px; - left: auto; -} -.timeline-page .iq-timeline ul li:nth-child(odd) .time { - padding-left: 10px; - right: -145px; - -webkit-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3); - -moz-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3); - -ms-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3); - -o-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3); - box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3); -} -.timeline-page .iq-timeline ul li:nth-child(even) { - float: right; - text-align: left; - clear: both; -} -.timeline-page .iq-timeline ul li:nth-child(even) .timeline-dots { - left: -8px; - right: auto; -} -.timeline-page .iq-timeline ul li:nth-child(even) .time { - text-align: right; - padding-right: 10px; - left: -145px; - -webkit-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3); - -moz-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3); - -ms-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3); - -o-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3); - box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3); -} -.timeline-page .iq-timeline ul li .time { - position: absolute; - top: 15px; - background-color: #32bdea; - color: #fff; - text-align: left; - width: 120px; - height: 28px; - line-height: 28px; - border-radius: 20px; -} - -.timeline-page .iq-timeline li .timeline-dots { - height: 15px; - width: 15px; - background: #fff !important; -} - -.timeline-page .iq-timeline0 ul li { - width: 50%; - padding: 5px 30px 40px 30px; - cursor: pointer; - margin: 0px; -} -.timeline-page .iq-timeline0 ul li:nth-child(odd) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} -.timeline-page .iq-timeline0 ul li:nth-child(odd) .timeline-dots { - left: 12px; - right: auto; -} -.timeline-page .iq-timeline0 ul li:nth-child(odd) .timeline-dots.timeline-dot1 { - left: 12px; - right: auto; -} -.timeline-page .iq-timeline0 ul li:nth-child(even) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} -.timeline-page .iq-timeline0 ul li:nth-child(even) .timeline-dots { - left: 12px; - right: auto; -} -.timeline-page - .iq-timeline0 - ul - li:nth-child(even) - .timeline-dots.timeline-dot1 { - left: 12px; - right: auto; -} - -.timeline-page .iq-timeline0 li .timeline-dots { - height: 15px; - width: 15px; - background: #fff !important; -} - -.timeline-page .iq-timeline0 li .timeline-dots1 { - position: absolute; - top: 0; - left: 0; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #fff; - height: 40px; - width: 40px; - line-height: 25px; - text-align: center; -} - -.timeline-page .iq-timeline0 li .timeline-dots.timeline-dot1 { - height: 15px; - width: 15px; -} - -.timeline-page .iq-timeline1 ul li { - width: 50%; - padding: 20px 30px 0px 30px; - cursor: pointer; - margin: 0px; -} -.timeline-page .iq-timeline1 ul li:nth-child(odd) { - float: left; - text-align: right; - clear: both; - margin-left: -19px; -} -.timeline-page .iq-timeline1 ul li:nth-child(odd) .timeline-dots { - right: -28px; - left: auto; -} -.timeline-page .iq-timeline1 ul li:nth-child(even) { - float: right; - text-align: left; - clear: both; - margin-right: -20px; -} -.timeline-page .iq-timeline1 ul li:nth-child(even) .timeline-dots { - left: -27px; - right: auto; -} - -.timeline-page .iq-timeline2 ul li:nth-child(odd) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} - -.timeline-page .iq-timeline2 ul li:nth-child(even) { - float: left; - text-align: left; - width: 100%; - padding: 0 0 0 60px; - margin-bottom: 20px; -} - -.timeline-page .iq-timeline2:before { - content: ""; - position: absolute; - left: 30px; - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} - -.timeline-page .iq-timeline2 .content-date { - position: absolute; - top: 0; - left: 0; - width: 60px; - height: 60px; - line-height: 22px; - padding-top: 8px; - text-align: center; - margin-left: 0px; - border-radius: 100%; -} -.timeline-page .iq-timeline2 .content-date .date { - display: block; - font-size: 20px; - font-weight: 700; -} - -.iq-timeline0 li { - margin-left: 35px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -.iq-timeline0 li .timeline-dots { - position: absolute; - top: 20px; - left: -54px; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #ffffff; - height: 40px; - width: 40px; - line-height: 25px; - text-align: center; -} - -.iq-timeline0:before { - content: ""; - position: absolute; - left: 20px; - -webkit-transform: translateX(-50%); - -moz-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} - -.iq-timeline1 li { - margin-left: 35px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} -.iq-timeline1 li .timeline-dots { - position: absolute; - top: 20px; - left: -54px; - border: 3px solid #32bdea; - border-radius: 90px; - padding: 5px; - background: #fff; - height: 15px; - width: 15px; - line-height: 25px; - text-align: center; -} - -.iq-timeline1:before { - content: ""; - position: absolute; - left: 50%; - -webkit-transform: translateX(-50%); - -moz-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - width: 2px; - height: 100%; - background-color: #ccc; -} - -.iq-timeline2 li { - margin-left: 0px; - position: relative; - padding: 15px 15px 0 5px; - list-style-type: none; -} - -@media (max-width: 575px) { - .timeline-page .iq-timeline ul li { - padding-left: 10px; - padding-right: 10px; - } - .timeline-page .iq-timeline ul li .time { - width: 90px; - } - .timeline-page .iq-timeline ul li:nth-child(odd) .time { - right: -115px; - } - .timeline-page .iq-timeline ul li:nth-child(even) .time { - left: -115px; - } -} - -.active-faq a.accordion-title { - display: block; - padding-right: 45px; -} - -.iq-accordion.career-style.faq-style .iq-accordion-block { - padding: 10px 5px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.iq-accordion.career-style.faq-style .iq-accordion-block .accordion-title span { - padding-left: 0px; -} -.iq-accordion.career-style.faq-style .iq-accordion-block .accordion-details p { - padding-left: 15px; - padding-top: 15px; - padding-bottom: 15px; -} - -.iq-accordion.career-style.faq-style .accordion-title:before { - display: inline-block; - cursor: pointer; - content: ""; - font-family: remixicon; - position: absolute; - top: -8px; - right: 15px; - color: #1e1e1e; - font-size: 16px; - line-height: 16px; - font-weight: normal; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - width: 45px; - height: 45px; - line-height: 45px; - text-align: center; - -webkit-border-radius: 90px; - -moz-border-radius: 90px; - -ms-border-radius: 90px; - -o-border-radius: 90px; - border-radius: 90px; -} - -.iq-accordion.career-style.faq-style - .iq-accordion-block.accordion-active - .accordion-title:before { - content: ""; - display: inline-block; - -webkit-border-radius: 90px; - -moz-border-radius: 90px; - -ms-border-radius: 90px; - -o-border-radius: 90px; - border-radius: 90px; -} - -.iq-accordion.career-style.faq-style .active-faq .row { - background: transparent; - padding: 10px 0px; -} - -.iq-accordion.career-style .iq-accordion-block { - margin-bottom: 30px; -} -.iq-accordion.career-style .iq-accordion-block .accordion-title span { - font-size: 16px; - display: table-cell; - color: #01041b; -} - -#loading { - background-color: #ffffff; - height: 100%; - width: 100%; - position: fixed; - margin-top: 0px; - top: 0px; - left: 0px; - bottom: 0px; - overflow: hidden !important; - right: 0px; - z-index: 999999; -} - -#loading-center { - background: url(../../assets/loader.gif) no-repeat scroll center center; - background-size: 20%; - width: 100%; - height: 100%; - position: relative; -} - -.loader { - width: 3em; - height: 3em; - margin: auto; - left: 0; - right: 0; - top: 0; - bottom: 0; - position: absolute; -} - -/*------------------*/ -@keyframes loader1 { - 0%, - 100% { - box-shadow: 0em -2.6em 0em 0em #4788ff, - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.5), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7); - } - 12.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.7), - 1.8em -1.8em 0 0em #4788ff, 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5); - } - 25% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.5), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7), 2.5em 0em 0 0em #4788ff, - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 37.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.7), 1.75em 1.75em 0 0em #4788ff, - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 50% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.5), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.7), 0em 2.5em 0 0em #4788ff, - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 62.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.5), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.7), -1.8em 1.8em 0 0em #4788ff, - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 75% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.5), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.7), -2.6em 0em 0 0em #4788ff, - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 87.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.5), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.7), -1.8em -1.8em 0 0em #4788ff; - } -} - -@-webkit-keyframes loader1 { - 0%, - 100% { - box-shadow: 0em -2.6em 0em 0em #4788ff, - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.5), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7); - } - 12.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.7), - 1.8em -1.8em 0 0em #4788ff, 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5); - } - 25% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.5), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.7), 2.5em 0em 0 0em #4788ff, - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 37.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.5), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.7), 1.75em 1.75em 0 0em #4788ff, - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 50% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.5), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.7), 0em 2.5em 0 0em #4788ff, - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.2), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 62.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.5), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.7), -1.8em 1.8em 0 0em #4788ff, - -2.6em 0em 0 0em rgba(71, 136, 255, 0.2), - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 75% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.5), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.7), -2.6em 0em 0 0em #4788ff, - -1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2); - } - 87.5% { - box-shadow: 0em -2.6em 0em 0em rgba(71, 136, 255, 0.2), - 1.8em -1.8em 0 0em rgba(71, 136, 255, 0.2), - 2.5em 0em 0 0em rgba(71, 136, 255, 0.2), - 1.75em 1.75em 0 0em rgba(71, 136, 255, 0.2), - 0em 2.5em 0 0em rgba(71, 136, 255, 0.2), - -1.8em 1.8em 0 0em rgba(71, 136, 255, 0.5), - -2.6em 0em 0 0em rgba(71, 136, 255, 0.7), -1.8em -1.8em 0 0em #4788ff; - } -} - -@-webkit-keyframes loader2 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader2 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader-3-outter { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader-3-outter { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader-3-inner { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@keyframes loader-3-inner { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@-webkit-keyframes loader4 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader4 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader5 { - 0%, - 100% { - -webkit-transform: translateX(0px); - -moz-transform: translateX(0px); - -ms-transform: translateX(0px); - -o-transform: translateX(0px); - transform: translateX(0px); - } - 75% { - -webkit-transform: translateX(30px); - -moz-transform: translateX(30px); - -ms-transform: translateX(30px); - -o-transform: translateX(30px); - transform: translateX(30px); - } -} - -@keyframes loader5_1 { - 0%, - 100% { - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); - } - 75% { - -webkit-transform: translateY(30px); - -moz-transform: translateY(30px); - -ms-transform: translateY(30px); - -o-transform: translateY(30px); - transform: translateY(30px); - } -} - -@keyframes loader5_2 { - 0%, - 100% { - -webkit-transform: translate(0px, 0px); - -moz-transform: translate(0px, 0px); - -ms-transform: translate(0px, 0px); - -o-transform: translate(0px, 0px); - transform: translate(0px, 0px); - } - 75% { - -webkit-transform: translate(30px, 30px); - -moz-transform: translate(30px, 30px); - -ms-transform: translate(30px, 30px); - -o-transform: translate(30px, 30px); - transform: translate(30px, 30px); - } -} - -@keyframes inner1 { - 0% { - -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); - } - 100% { - -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); - } -} - -@keyframes inner2 { - 0% { - -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); - } - 100% { - -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); - } -} - -@keyframes inner3 { - 0% { - -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); - } - 100% { - -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); - } -} - -@keyframes loader7 { - 0% { - -webkit-transform: rotate(0); - -moz-transform: rotate(0); - -ms-transform: rotate(0); - -o-transform: rotate(0); - transform: rotate(0); - } - 50% { - -webkit-transform: rotateY(180deg); - -moz-transform: rotateY(180deg); - -ms-transform: rotateY(180deg); - -o-transform: rotateY(180deg); - transform: rotateY(180deg); - } - 100% { - -webkit-transform: rotateY(180deg) rotateX(180deg); - -moz-transform: rotateY(180deg) rotateX(180deg); - -ms-transform: rotateY(180deg) rotateX(180deg); - -o-transform: rotateY(180deg) rotateX(180deg); - transform: rotateY(180deg) rotateX(180deg); - } -} - -@-webkit-keyframes loader8 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader8 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader9 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader9 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader10 { - 0%, - 100% { - -webkit-transform: translate(0, 0) rotate(0); - -moz-transform: translate(0, 0) rotate(0); - -ms-transform: translate(0, 0) rotate(0); - -o-transform: translate(0, 0) rotate(0); - transform: translate(0, 0) rotate(0); - } - 25% { - -webkit-transform: translate(40px, 40px) rotate(45deg); - -moz-transform: translate(40px, 40px) rotate(45deg); - -ms-transform: translate(40px, 40px) rotate(45deg); - -o-transform: translate(40px, 40px) rotate(45deg); - transform: translate(40px, 40px) rotate(45deg); - } - 50% { - -webkit-transform: translate(0px, 80px) rotate(0deg); - -moz-transform: translate(0px, 80px) rotate(0deg); - -ms-transform: translate(0px, 80px) rotate(0deg); - -o-transform: translate(0px, 80px) rotate(0deg); - transform: translate(0px, 80px) rotate(0deg); - } - 75% { - -webkit-transform: translate(-40px, 40px) rotate(45deg); - -moz-transform: translate(-40px, 40px) rotate(45deg); - -ms-transform: translate(-40px, 40px) rotate(45deg); - -o-transform: translate(-40px, 40px) rotate(45deg); - transform: translate(-40px, 40px) rotate(45deg); - } -} - -@keyframes loader11 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader12 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - } - 50% { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - border-radius: 0%; - } - 100% { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - } -} - -@-webkit-keyframes loader13 { - to { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader13 { - to { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes loader14 { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 50% { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - 100% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} - -@keyframes loader14 { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } - 50% { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - } - 100% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - } -} - -@-webkit-keyframes loader15-inner { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@keyframes loader15-inner { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } -} - -@-webkit-keyframes loader15 { - 0% { - border-width: 0px; - } - 100% { - border-width: 10px; - } -} - -@keyframes loader15 { - 0% { - border-width: 0px; - } - 100% { - border-width: 10px; - } -} - -@-webkit-keyframes loader16 { - 0% { - -webkit-transform: rotate(-360deg); - -moz-transform: rotate(-360deg); - -ms-transform: rotate(-360deg); - -o-transform: rotate(-360deg); - transform: rotate(-360deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader16 { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.iq-loader-box { - height: 150px; - text-align: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - vertical-align: middle; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} -.iq-loader-box [class*="loader-"] { - display: inline-block; - width: 60px; - height: 60px; - color: inherit; - vertical-align: middle; - position: relative; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} -.iq-loader-box .iq-loader-1 { - width: 1em; - height: 1em; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: relative; - text-indent: -9999em; - -webkit-animation: loader1 1.1s infinite ease; - animation: loader1 1.1s infinite ease; - -webkit-transform: translateZ(0); - -moz-transform: translateZ(0); - -ms-transform: translateZ(0); - -o-transform: translateZ(0); - transform: translateZ(0); -} -.iq-loader-box .iq-loader-2 { - border: 7px double #37e6b0; - -webkit-animation: loader2 1s linear infinite; - animation: loader2 1s linear infinite; -} -.iq-loader-box .iq-loader-2:before { - content: ""; - position: absolute; - width: 12px; - height: 12px; - background: #37e6b0; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - bottom: 0; - right: 37px; -} -.iq-loader-box .iq-loader-2:after { - content: ""; - position: absolute; - width: 12px; - height: 12px; - background: #37e6b0; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - bottom: 0; - right: 37px; - left: 37px; - top: 0; -} -.iq-loader-box .iq-loader-3 { - position: relative; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - display: inline-block; - vertical-align: middle; -} -.iq-loader-box .iq-loader-3 .loader-outter { - position: absolute; - border: 4px solid #f50057; - border-left-color: transparent; - border-bottom: 0; - width: 100%; - height: 100%; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - -webkit-animation: loader-3-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) - infinite; - animation: loader-3-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; -} -.iq-loader-box .iq-loader-3 .loader-inner { - position: absolute; - border: 4px solid #f50057; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 40px; - height: 40px; - left: calc(50% - 20px); - top: calc(50% - 20px); - border-right: 0; - border-top-color: transparent; - -webkit-animation: loader-3-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) - infinite; - animation: loader-3-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; -} -.iq-loader-box .iq-loader-4 { - border: 0.2em solid transparent; - border-top-color: #fe721c; - border-bottom-color: #fe721c; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: relative; - -webkit-animation: 1s loader4 linear infinite; - animation: 1s loader4 linear infinite; -} -.iq-loader-box .iq-loader-4:before { - content: ""; - display: block; - width: 0; - height: 0; - position: absolute; - border: 0.2em solid transparent; - border-bottom-color: #fe721c; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); - right: -0.3em; - top: -0.05em; -} -.iq-loader-box .iq-loader-4:after { - content: ""; - display: block; - width: 0; - height: 0; - position: absolute; - border: 0.2em solid transparent; - border-bottom-color: #fe721c; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - left: -0.3em; - bottom: -0.05em; -} -.iq-loader-box .iq-loader-5 { - width: 100px; - height: 100px; - border-radius: 100%; - position: relative; - margin: 0 auto; -} -.iq-loader-box .iq-loader-5 span { - display: block; - position: absolute; - left: calc(50% - 20px); - top: calc(50% - 20px); - width: 20px; - height: 20px; - background-color: var(--info); -} -.iq-loader-box .iq-loader-5 span:nth-child(1) { - animation: loader5 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-5 span:nth-child(2) { - animation: loader5_1 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-5 span:nth-child(3) { - animation: loader5_2 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-6 .inner { - position: absolute; - box-sizing: border-box; - width: 100%; - height: 100%; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} -.iq-loader-box .iq-loader-6 .inner1 { - left: 0%; - top: 0%; - animation: inner1 1s linear infinite; - border-bottom: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-6 .inner2 { - right: 0%; - top: 0%; - animation: inner2 1s linear infinite; - border-right: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-6 .inner3 { - right: 0%; - bottom: 0%; - animation: inner3 1s linear infinite; - border-top: 3px solid #ff4b4b; -} -.iq-loader-box .iq-loader-7:before { - content: ""; - position: absolute; - left: 0px; - width: 50px; - height: 50px; - background-color: #3498db; - animation: loader7 1s infinite; -} -.iq-loader-box .iq-loader-8 { - border: 1.2em solid transparent; - border-left-color: #d0bac2; - border-right-color: #d0bac2; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - -webkit-animation: 1s loader8 linear infinite; - animation: 1s loader8 linear infinite; -} -.iq-loader-box .iq-loader-9 { - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 7em; - height: 7em; - margin: 60px auto; - font-size: 10px; - position: relative; - text-indent: -9999em; - border-top: 1.1em solid rgba(255, 107, 208, 0.2); - border-right: 1.1em solid rgba(255, 107, 208, 0.2); - border-bottom: 1.1em solid rgba(255, 107, 208, 0.2); - border-left: 1.1em solid #ff6bd0; - -webkit-transform: translateZ(0); - -ms-transform: translateZ(0); - transform: translateZ(0); - -webkit-animation: loader9 1.1s infinite linear; - animation: loader9 1.1s infinite linear; -} -.iq-loader-box .iq-loader-9:after { - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 7em; - height: 7em; -} -.iq-loader-box .iq-loader-10:before { - content: ""; - width: 20px; - height: 20px; - position: absolute; - top: -10px; - left: calc(50% - 10px); - background-color: #3450db; - animation: loader10 1s ease-in-out infinite; -} -.iq-loader-box .iq-loader-10:after { - content: ""; - width: 20px; - height: 20px; - position: absolute; - top: -10px; - left: calc(50% - 10px); - background-color: #3450db; - animation: loader10 1s ease-in-out infinite; - bottom: 0; - animation-delay: 0.5s; -} -.iq-loader-box .iq-loader-11 { - background: #000000; -} -.iq-loader-box .iq-loader-11:before { - content: ""; - position: absolute; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 25px; - height: 25px; - margin: 0 0 0 -12px; - background-color: white; - top: auto; - bottom: 0; - left: 50%; - transform-origin: 50% 0%; - animation: loader11 1s infinite linear; -} -.iq-loader-box .iq-loader-12 { - animation: loader12 1s infinite linear; - background: #6dca5c; -} -.iq-loader-box .iq-loader-13 { - border-top: 0.2em solid #a7a4ca; - border-right: 0.2em solid transparent; - -webkit-animation: loader13 1s linear infinite; - animation: loader13 1s linear infinite; - border-radius: 100%; - position: relative; -} -.iq-loader-box .iq-loader-14 { - border: 0 solid transparent; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: relative; -} -.iq-loader-box .iq-loader-14:before { - content: ""; - border: 1em solid #13d7eb; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: inherit; - height: inherit; - position: absolute; - top: 0; - left: 0; - -webkit-animation: loader14 1s linear infinite; - animation: loader14 1s linear infinite; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} -.iq-loader-box .iq-loader-14:after { - content: ""; - border: 1em solid #13d7eb; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: inherit; - height: inherit; - position: absolute; - top: 0; - left: 0; - -webkit-animation: loader14 1s linear infinite; - animation: loader14 1s linear infinite; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} -.iq-loader-box .iq-loader-15 { - border: 6px groove #7e57c2; - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - -webkit-transition: all 1s ease; - transition: all 1s ease; - -webkit-animation: loader15-inner 1s ease-out alternate infinite; - animation: loader15-inner 1s ease-out alternate infinite; -} -.iq-loader-box .iq-loader-15 .loader-inner { - border: 0px inset #9575cd; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - width: 100%; - height: 100%; - -webkit-animation: loader15 1s ease-out alternate infinite; - animation: loader15 1s ease-out alternate infinite; -} -.iq-loader-box .iq-loader-16 { - width: 70px; - height: 70px; - border: 5px dashed #b3a57c; - -webkit-animation: loader16 2s linear both infinite; - animation: loader16 2s linear both infinite; -} - -.treegrid-indent { - width: 0px; - height: 16px; - display: inline-block; - position: relative; -} - -.tab-content .table tbody tr { - color: #000; -} - -.table-data .table tbody tr { - color: #000; -} - -.treegrid-expander { - width: 0px; - height: 16px; - display: inline-block; - position: relative; - left: -17px; - cursor: pointer; -} - -.glyphicon.glyphicon-chevron-right:before { - position: absolute; - content: "\EA6E"; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} - -.glyphicon.glyphicon-chevron-down:before { - position: absolute; - content: "\EA4E"; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} - -.glyphicon.glyphicon-plus:before { - position: absolute; - content: "\EA13"; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} - -.glyphicon.glyphicon-minus:before { - position: absolute; - content: "\F1AF"; - font-family: remixicon; - top: 0; - bottom: 0; - left: 0; - right: 0; -} - -.grid-m { - margin-bottom: 30px; -} -.grid-m:nth-last-child(-n + 4) { - margin-bottom: 0; -} - -.g-box { - background: #ffffff; -} - -.g-desc { - border: 1px solid rgba(210, 201, 255, 0.4); -} - -.masonry .item { - width: 25%; - padding: 10px; - display: block; -} -.masonry .item a { - cursor: zoom-in; -} -.masonry .item img { - width: 100%; -} - -.grid-sizer { - width: 25%; - padding: 10px; - display: block; -} - -.b-radius-top { - -webkit-border-radius: 10px 10px 0 0; - -moz-border-radius: 10px 10px 0 0; - -ms-border-radius: 10px 10px 0 0; - -o-border-radius: 10px 10px 0 0; - border-radius: 10px 10px 0 0; -} - -.b-radius-bottom { - -webkit-border-radius: 0 0 10px 10px; - -moz-border-radius: 0 0 10px 10px; - -ms-border-radius: 0 0 10px 10px; - -o-border-radius: 0 0 10px 10px; - border-radius: 0 0 10px 10px; -} - -.hover-effects { - overflow: hidden; - position: relative; -} -.hover-effects a { - cursor: pointer; -} -.hover-effects:hover .effect-1 { - -webkit-transform: scale3d(1.2, 1.2, 1); - -moz-transform: scale3d(1.2, 1.2, 1); - -ms-transform: scale3d(1.2, 1.2, 1); - -o-transform: scale3d(1.2, 1.2, 1); - transform: scale3d(1.2, 1.2, 1); -} -.hover-effects:hover .effect-2 { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); -} -.hover-effects:hover .effect-3 { - margin-left: 0; -} -.hover-effects:hover .effect-4 { - -webkit-transform: rotate(0) scale(1); - -moz-transform: rotate(0) scale(1); - -ms-transform: rotate(0) scale(1); - -o-transform: rotate(0) scale(1); - transform: rotate(0) scale(1); -} -.hover-effects:hover .ovrlay-1-a { - left: 0; - top: 0; -} -.hover-effects:hover .ovrlay-1-b { - left: 0; - top: 0; -} -.hover-effects:hover .ovrlay-2-a { - left: 0; -} -.hover-effects:hover .ovrlay-2-b { - left: 0; -} -.hover-effects:hover .ovrlay-3-a { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); -} -.hover-effects:hover .ovrlay-3-b { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); -} -.hover-effects:hover .ovrlay-4-a { - top: 0; -} -.hover-effects:hover .ovrlay-4-b { - top: 0; -} -.hover-effects:hover .ovrlay-5 { - left: 0; - opacity: 1; - visibility: visible; -} -.hover-effects:hover .ovrlay-6 { - visibility: visible; - -webkit-transform: perspective(600px) rotateX(0deg); - -moz-transform: perspective(600px) rotateX(0deg); - -ms-transform: perspective(600px) rotateX(0deg); - -o-transform: perspective(600px) rotateX(0deg); - transform: perspective(600px) rotateX(0deg); -} -.hover-effects:hover .ovrlay-7 { - opacity: 1; - -webkit-transform: perspective(400px) rotateX(0deg); - -moz-transform: perspective(400px) rotateX(0deg); - -ms-transform: perspective(400px) rotateX(0deg); - -o-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); -} -.hover-effects:hover .ovrlay-8 { - right: 0; -} -.hover-effects:hover .effect-8 { - right: 40px; -} - -.effect-1 { - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.effect-2 { - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-transform: scale(1.2); - -moz-transform: scale(1.2); - -ms-transform: scale(1.2); - -o-transform: scale(1.2); - transform: scale(1.2); -} - -.effect-3 { - margin-left: 30px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-transform: scale(1.3); - -moz-transform: scale(1.3); - -ms-transform: scale(1.3); - -o-transform: scale(1.3); - transform: scale(1.3); -} - -.effect-4 { - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-transform: rotate(12deg) scale(1.4); - -moz-transform: rotate(12deg) scale(1.4); - -ms-transform: rotate(12deg) scale(1.4); - -o-transform: rotate(12deg) scale(1.4); - transform: rotate(12deg) scale(1.4); -} - -.ovrlay-1-a { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - width: 100%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - left: -100%; - top: -100%; -} - -.ovrlay-1-b { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - width: 100%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - left: 100%; - top: 100%; -} - -.ovrlay-2-a { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - top: 0; - width: 100%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - left: -100%; -} - -.ovrlay-2-b { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - top: 0; - width: 100%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - left: 100%; -} - -.ovrlay-3-a { - position: absolute; - background: rgba(0, 0, 0, 0.25); - height: 100%; - left: 0; - top: 0; - width: 100%; - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - top: 100%; -} -.ovrlay-3-a .ovrlay-3-b { - position: absolute; - background: rgba(0, 0, 0, 0.25); - height: 100%; - left: 0; - top: 0; - width: 100%; - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.ovrlay-3-a .ovrlay-4-a { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - left: 0; - width: 100%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - top: -100%; -} -.ovrlay-3-a .ovrlay-4-b { - background: rgba(0, 0, 0, 0.25); - height: 100%; - position: absolute; - left: 0; - width: 100%; -} - -.ovrlay-5 { - position: absolute; - background: #32bdea; - width: 100%; - height: 100%; - top: 0; - padding: 0 15px 0 15px; - left: -100%; - z-index: 1; - overflow: auto; - visibility: hidden; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - color: #fff; -} -.ovrlay-5 h4 { - color: #fff; -} - -.ovrlay-6 { - background: #32bdea; - width: 100%; - position: absolute; - height: 100%; - top: 0; - left: 0; - overflow: auto; - visibility: hidden; - padding: 0 15px; - -webkit-transform: perspective(600px) rotateX(-90deg); - -moz-transform: perspective(600px) rotateX(-90deg); - -ms-transform: perspective(600px) rotateX(-90deg); - -o-transform: perspective(600px) rotateX(-90deg); - transform: perspective(600px) rotateX(-90deg); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.ovrlay-6 h4 { - color: #fff; -} -.ovrlay-6 p { - color: #fff; -} - -.ovrlay-8 { - background: #32bdea; - width: 40%; - height: 100%; - top: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - position: absolute; - right: -40%; - overflow: auto; - padding: 0 10px; -} -.ovrlay-8 h4 { - color: #fff; -} -.ovrlay-8 .i-btn { - position: absolute; - bottom: 10px; - right: 10%; - width: 40px; - height: 40px; - line-height: 40px; - font-size: 17px; - border-radius: 50%; - border: 1px solid #fff; - background: transparent; - text-align: center; - -webkit-transform: translateX(-50%); - -moz-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - color: #fff !important; -} - -.ovrlay-7 { - position: absolute; - background: rgba(0, 0, 0, 0.8); - height: 100%; - left: 0; - top: 0; - width: 100%; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-transform: perspective(400px) rotateX(-90deg); - -moz-transform: perspective(400px) rotateX(-90deg); - -ms-transform: perspective(400px) rotateX(-90deg); - -o-transform: perspective(400px) rotateX(-90deg); - transform: perspective(400px) rotateX(-90deg); - -webkit-transform-origin: top; - -moz-transform-origin: top; - -ms-transform-origin: top; - -o-transform-origin: top; - transform-origin: top; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.ovrlay-7 .button { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -moz-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - -o-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - width: 40px; - height: 40px; - border-radius: 50%; - background: #fff; - text-align: center; - line-height: 40px; -} -.ovrlay-7 .button i { - color: #32bdea; -} - -.effect-8 { - width: 100%; - position: relative; - right: 0; - top: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.data-table .table th { - border-bottom-width: 1px; - border-top: none; -} - -.dataTables_filter .form-control:focus { - background-color: #ffffff; - border-color: #32bdea; -} - -.dataTables_length .form-control:focus { - background-color: #ffffff; - border-color: #32bdea; -} - -@media (max-width: 991px) { - .masonry .item { - width: 33.33%; - } - .masonry .grid-sizer { - width: 33.33%; - } -} - -@media (max-width: 767px) { - .masonry .item { - width: 100%; - padding: 0 0 18px 0; - } - .masonry .grid-sizer { - width: 100%; - padding: 0 0 18px 0; - } -} - -.blog .image-block img.img-fluid { - background: #ceebee; -} - -.blog-half .blog-meta { - height: 80px; - width: 80px; - line-height: 30px; - padding: 0 22px; - margin-top: -15px; - border-radius: 10px; - text-align: center; - margin-right: 20px; - display: inline-block; - position: relative; -} -.blog-half .blog-meta .date { - font-size: 30px; - font-weight: 500; - padding-top: 15px; - letter-spacing: 0; -} -.blog-half .blog-meta .month { - font-size: 16px; - font-weight: 500; -} - -.blog-left .blog-description { - position: absolute; - bottom: 40px; - margin: 0 40px; - padding: 10px; - background: #fff; - left: 0; -} - -.blog-date .blog-meta-date { - position: absolute; - top: 15px; - left: 15px; - height: 70px; - width: 70px; - line-height: 25px; - border-radius: 10px; - text-align: center; - background: #32bdea; - color: #fff; -} -.blog-date .blog-meta-date .date { - font-size: 30px; - font-weight: 500; - padding-top: 13px; -} - -.blog-comments .blog-meta-date { - position: absolute; - bottom: 15px; - right: 15px; - height: 70px; - width: 70px; - line-height: 25px; - border-radius: 10px; - text-align: center; - background: #32bdea; - color: #fff; -} -.blog-comments .blog-meta-date .date { - font-size: 30px; - font-weight: 500; - padding-top: 13px; -} - -.blog-detail .blog-meta { - padding: 12px 15px; - background: rgba(192, 192, 192, 0.35); - color: #01041b; -} - -@media (max-width: 480px) { - .blog-half { - margin-bottom: 10px; - float: left; - width: 100% !important; - display: inline-block !important; - } - .blog-half .blog-meta { - margin-bottom: 10px; - } -} - -@keyframes animate-stripes { - 100% { - background-position: -100px 0; - } -} - -.p-card { - padding: 12px; -} - -.profile-card { - background: #32bdea; - padding: 37px 0; - position: relative; - overflow: hidden; -} -.profile-card:before { - content: ""; - position: absolute; - right: -63px; - top: -3px; - width: 120px; - height: 120px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - background: rgba(255, 255, 255, 0.2); - transform: rotate(36deg); -} -.profile-card:after { - content: ""; - position: absolute; - left: -62px; - bottom: 9px; - width: 126px; - height: 125px; - border-radius: 35px; - background: #2771f9; - transform: rotate(28deg); -} - -.profile-box { - background: #ffffff; - position: relative; - padding-bottom: 240px; - -webkit-border-radius: 0 0 10px 10px; - -moz-border-radius: 0 0 10px 10px; - -ms-border-radius: 0 0 10px 10px; - -o-border-radius: 0 0 10px 10px; - border-radius: 0 0 10px 10px; -} - -.pro-content { - margin-top: -55px; - position: absolute; - background: #fff; - padding: 20px; - left: 20px; - right: 20px; - -webkit-box-shadow: 0px 2px 25px 0px rgba(45, 69, 95, 0.06); - -moz-box-shadow: 0px 2px 25px 0px rgba(45, 69, 95, 0.06); - -ms-box-shadow: 0px 2px 25px 0px rgba(45, 69, 95, 0.06); - -o-box-shadow: 0px 2px 25px 0px rgba(45, 69, 95, 0.06); - box-shadow: 0px 2px 25px 0px rgba(45, 69, 95, 0.06); -} - -.p-icon { - width: 45px; - height: 45px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - background: #88dffb; - line-height: 45px; - color: #32bdea; - text-align: center; - font-size: 26px; -} - -.eml { - word-break: break-all; -} - -.iq-progress-bar.pro-skill { - height: 12px; -} -.iq-progress-bar.pro-skill > span { - background-image: linear-gradient( - 135deg, - transparent, - transparent 33%, - rgba(0, 0, 0, 0.1) 33%, - rgba(0, 0, 0, 0.1) 66%, - transparent 66% - ); - background-size: 35px 20px, 100% 100%, 100% 100%; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - position: relative; - animation: animate-stripes 5s linear infinite; -} -.iq-progress-bar.pro-skill > span.bg1 { - background-color: #e08db4; -} -.iq-progress-bar.pro-skill > span.bg2 { - background-color: #ff9770; -} -.iq-progress-bar.pro-skill > span.bg3 { - background-color: #7ee2ff; -} - -.social-ic { - background: #ffffff; - padding: 5px; -} -.social-ic a { - margin: 0 5px; - width: 40px; - height: 40px; - text-align: center; - line-height: 45px; - background: transparent; - position: relative; - z-index: 1; -} -.social-ic a i { - color: #676e8a; - font-size: 18px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - position: relative; - z-index: 3; -} -.social-ic a:before { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 0; - opacity: 0; - background: #32bdea; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - z-index: 2; -} -.social-ic a:nth-child(even):before { - top: 100%; -} -.social-ic a:nth-child(even):hover:before { - top: 0; -} -.social-ic a:hover:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - height: 100%; -} -.social-ic a:hover i { - color: #fff !important; - transform: rotateY(360deg); -} - -@media (max-width: 767px) { - .social-ic a { - width: 28px; - height: 28px; - line-height: 34px; - } - .social-ic a i { - font-size: 15px; - } -} - -.logo-invoice { - height: 55px; -} - -.print .card-title { - color: #fff; -} - -.print .table thead { - background: #ffffff; -} -.print .table thead th { - border: 0; -} - -.print .table th { - border: 0; -} - -.print .table td { - border-top: 0; -} - -.print .table tr { - border-top: 1px solid #dee2e6; -} -.print .table tr:first-child { - border-top: 0; -} - -.btn-primary-dark { - background: #06a3d6; - color: #fff; -} -.btn-primary-dark:hover { - color: #fff; -} - -.or-detail { - background: #ffffff; - border: 1px solid rgba(210, 201, 255, 0.4); -} -.or-detail p { - margin-bottom: 0; -} - -.ttl-amt { - border-top: 1px solid rgba(210, 201, 255, 0.4); -} - -#scroll1 { - position: relative; - width: 600px; - height: 250px; -} - -.sweet_al .btn { - margin-right: 5px; -} - -@media (max-width: 479px) { - .header-invoice { - display: block !important; - text-align: center; - } - .header-invoice .invoice-btn { - margin-top: 15px; - } -} - -.pricing .table th { - border-top: none; - border-bottom: 1px solid #dee2e6; -} - -.pricing .table td { - border-top: none !important; -} - -.pricing .table tr { - border-bottom: 1px solid #dee2e6; -} -.pricing .table tr:last-child { - border-bottom: 0; -} - -.prc-box { - background: #88dffb; - padding: 15px; - position: relative; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.type { - position: absolute; - background: #32bdea; - padding: 9px 25px; - color: #fff; - top: -15px; - left: 50%; - -webkit-transform: translateX(-50%); - -moz-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - font-weight: 500; -} -.type:before { - position: absolute; - content: ""; - width: 0; - height: 0; - right: -15px; - top: 0px; - border-left: 15px solid #06a3d6; - border-top: 15px solid transparent; -} -.type:after { - position: absolute; - content: ""; - width: 0; - height: 0; - left: -15px; - top: 0px; - border-right: 15px solid #06a3d6; - border-top: 15px solid transparent; -} - -.prc-box.active { - background: #32bdea; -} -.prc-box.active .h3 { - color: #fff; -} -.prc-box.active .type { - background: #88dffb; - color: #01041b; -} -.prc-box.active .type:before { - border-left: 16px solid #06a3d6; - right: -16px; -} -.prc-box.active .type:after { - border-right: 16px solid #06a3d6; - left: -16px; -} - -.prc-wrap { - border-bottom: none !important; -} - -.i_close { - font-size: 22px; -} - -.p-image { - position: absolute; - top: auto; - right: 6px; - bottom: 10px; - transition: all 0.3s ease; - background: #32bdea; - color: #fff; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - height: 30px; - width: 30px; - line-height: 28px; - text-align: center; - font-size: 12px; - cursor: pointer; -} - -.upload-button { - font-size: 1.5em; -} - -.file-upload { - display: none; -} - -.upload_profile { - position: relative; -} - -.child-cell.active { - color: #32bdea; -} - -.iq-social ul li a { - display: block; - text-align: center; - font-size: 16px; - line-height: 43px; -} - -.card .pricing-radius-box { - -webkit-border-radius: 60px 0 60px 0; - -moz-border-radius: 60px 0 60px 0; - -ms-border-radius: 60px 0 60px 0; - -o-border-radius: 60px 0 60px 0; - border-radius: 60px 0 60px 0; -} - -.pricing-header { - padding: 20px 0; - background: #f5f6f9; - -webkit-border-radius: 10px 10px 50% 50%; - -moz-border-radius: 10px 10px 50% 50%; - -ms-border-radius: 10px 10px 50% 50%; - -o-border-radius: 10px 10px 50% 50%; - border-radius: 10px 10px 50% 50%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - margin-bottom: 20px; -} - -.pricing-details .icon-data { - font-size: 50px; -} - -.pricing-custom-tab .tab-pane.fade.active.show { - display: block; -} - -.pricing-custom-tab .tab-pane.fade { - display: none; -} - -.pricing-custom-tab li.nav-item .nav-link { - border: 1px solid #dcdfe8; - color: #01041b; - font-size: 16px; - padding: 12px 35px; - -webkit-border-radius: 0; - -moz-border-radius: 0; - -ms-border-radius: 0; - -o-border-radius: 0; - border-radius: 0; -} - -.pricing-custom-tab li.nav-item .nav-link.active { - color: #fff; - background: #32bdea; -} - -.pricing-custom-tab li.nav-item .star-circle { - background-color: #32bdea; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); - -moz-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); - -ms-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); - -o-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); - color: #fff; - display: block; - font-size: 13px; - height: 25px; - padding: 0; - line-height: 23px; - text-align: center; - width: 20px; - position: absolute; - top: -14px; - left: -14px; - z-index: 1; -} - -.nav-pills li { - position: relative; -} - -#recent-hits-map { - height: 340px; -} - -#reporting-chart-04 { - height: 400px; -} - -.iq-avatars .iq-avatar { - margin-right: 10px; - margin-bottom: 10px; - position: relative; - display: inline-block; -} - -.profile-icon.iq-icon-box { - height: 58px; - width: 58px; - line-height: 58px; - text-align: center; - margin-right: 10px; - font-size: 26px; - text-decoration: none; -} - -.profile-overly { - position: absolute; - left: auto; - bottom: 0; - right: 0; - background: #fff; - padding: 10px 30px; - text-align: center; - border-radius: 10px 10px 0 0; -} - -ul.iq-contact-rest li a p { - word-break: break-all; -} - -.crm-p-image { - position: absolute; - top: auto; - left: 69px; - bottom: -9px; - transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); - border-radius: 50%; - height: 35px; - width: 35px; - text-align: center; - font-size: 12px; - line-height: 24px; - cursor: pointer; - border: 5px solid #fff; -} - -.card-profile { - margin-top: -120px; - font-size: 16px; -} - -.skill-number { - margin-right: 10px; - margin-left: 5px; -} - -.profile-tab.nav-pills .nav-item { - margin-bottom: 10px; -} -.profile-tab.nav-pills .nav-item:first-child .nav-link { - margin-left: 0; -} - -.profile-tab.nav-pills .nav-link { - font-size: 18px; - -webkit-opacity: 0.5; - -moz-opacity: 0.5; - -ms-opacity: 0.5; - -o-opacity: 0.5; - opacity: 0.5; - position: relative; - padding: 0 0px 10px; - margin: 0 20px; -} -.profile-tab.nav-pills .nav-link:before { - content: ""; - border: 1px solid #110a57; - background: #110a57; - width: 100%; - height: 1px; - position: absolute; - left: 0; - bottom: 0; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.profile-tab.nav-pills .nav-link.active { - background: transparent; - color: #110a57; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.profile-tab.nav-pills .nav-link.active:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.profile-tab.nav-pills .nav-link:hover { - background: transparent; - color: #110a57; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} -.profile-tab.nav-pills .nav-link:hover:before { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; -} - -.profile-content { - font-size: 16px; -} - -.profile-info { - position: relative; - padding: 0 10px; -} -.profile-info:before { - content: ""; - border-right: 1px solid #dcdfe8; - background: #dcdfe8; - height: 50px; - width: 1px; - position: absolute; - right: 0; - top: 30px; -} -.profile-info:first-child { - padding-left: 0; -} -.profile-info:last-child { - padding-right: 0; -} -.profile-info:last-child:before { - display: none; -} -.profile-info .profile-icon.icon { - line-height: 36px; -} - -.profile-media { - position: relative; - padding-bottom: 40px; - z-index: 9; -} -.profile-media:before { - content: ""; - border-right: 2px solid #dcdfe8; - background: #dcdfe8; - height: 100%; - width: 1px; - position: absolute; - left: 9px; - top: 0; - z-index: -1; -} - -.profile-dots { - height: 20px; - width: 20px; - border: 2px solid; - border-radius: 3px; - background: #fff; -} - -.iq-progress-primary { - background: #16a5d3 !important; -} - -.iq-progress-secondary { - background: #ff5b0e !important; -} - -.iq-progress-success { - background: #55b075 !important; -} - -.iq-progress-info { - background: #4bd7ff !important; -} - -.iq-progress-warning { - background: #ff723d !important; -} - -.iq-progress-danger { - background: #d5659a !important; -} - -.iq-progress-light { - background: #aab0bd !important; -} - -.iq-progress-dark { - background: black !important; -} - -.iq-progress-orange { - background: #ff5b0e !important; -} - -.iq-progress-purple { - background: #37268e !important; -} - -.iq-progress-skyblue { - background: #0773d2 !important; -} - -.iq-progress-light-gray { - background: #d1d5ea !important; -} - -.icon-primary { - color: #0c5d77 !important; -} - -.icon-text-primary { - color: #0c5d77 !important; -} - -.icon-secondary { - color: #a73600 !important; -} - -.icon-text-secondary { - color: #a73600 !important; -} - -.icon-success { - color: #336c47 !important; -} - -.icon-text-success { - color: #336c47 !important; -} - -.icon-info { - color: #00b1e4 !important; -} - -.icon-text-info { - color: #00b1e4 !important; -} - -.icon-warning { - color: #d63a00 !important; -} - -.icon-text-warning { - color: #d63a00 !important; -} - -.icon-danger { - color: #a72d66 !important; -} - -.icon-text-danger { - color: #a72d66 !important; -} - -.icon-light { - color: #717b90 !important; -} - -.icon-text-light { - color: #717b90 !important; -} - -.icon-dark { - color: black !important; -} - -.icon-text-dark { - color: black !important; -} - -.icon-orange { - color: #a73600 !important; -} - -.icon-text-orange { - color: #a73600 !important; -} - -.icon-purple { - color: #18113d !important; -} - -.icon-text-purple { - color: #18113d !important; -} - -.icon-skyblue { - color: #043d6f !important; -} - -.icon-text-skyblue { - color: #043d6f !important; -} - -.icon-light-gray { - color: #8b95ca !important; -} - -.icon-text-light-gray { - color: #8b95ca !important; -} - -@media (max-width: 991px) { - .profile-info:before { - display: none; - } -} - -@media (max-width: 575px) { - .card-profile { - margin-top: -70px; - } -} - -@media (max-width: 479px) { - .profile-overly h3 { - font-size: 14px; - } -} - -@media (max-width: 379px) { - .profile-tab.nav-pills .nav-item { - width: 100%; - } - .profile-tab.nav-pills .nav-item .nav-link { - margin: 0; - } -} - -.vactormap-height { - width: 100%; - height: 400px; -} - -.jvectormap-legend-title { - font-size: 12px; -} - -.jvectormap-legend .jvectormap-legend-tick-sample { - height: 26px; -} - -.jvectormap-legend-icons { - background: white; - border: black 1px solid; - color: black; -} - -.subscriber-detail .title { - padding: 5px 20px; - line-height: 26px; -} - -.subscriber-detail .iq-card-btn { - position: absolute; - top: 0px; - left: -15px; - margin: 0 auto; - border: 4px solid #fff; - padding: 2px; - height: 40px; - width: 40px; - line-height: 22px; - font-size: 20px; -} - -.subscriber-detail .iq-card-btn.title-instagram { - background-color: #d6249f !important; - background: radial-gradient( - circle at 30% 107%, - #fdf497 0, - #fdf497 5%, - #fd5949 45%, - #d6249f 60%, - #285aeb 90% - ) !important; - color: #fff; -} - -.subscriber-detail .iq-card-btn.title-whatsapp { - background-color: #00e676 !important; - color: #fff; - text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.22); -} - -.subscriber-detail .iq-card-btn.title-twitter { - background-color: #1da1f2 !important; - color: #fff; -} - -.subscriber-detail .iq-card-btn.title-facebook { - background-color: #3b5998 !important; - background-image: linear-gradient(#4e69a2, #3b5998 50%) !important; - color: #fff; -} - -.add-form-list .form-control.image-file { - line-height: 26px; -} - -.bootstrap-select .dropdown-toggle { - padding: 0.375rem 0.75rem; - font-size: 14px; - height: 45px; - line-height: 45px; - border: 1px solid #dcdfe8; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.bootstrap-select .dropdown-toggle .filter-option-inner-inner { - font-weight: normal; - color: #676e8a; -} -.bootstrap-select .dropdown-toggle:focus { - outline: unset !important; -} - -.bootstrap-select .dropdown-menu { - border: 1px solid #dcdfe8; - box-shadow: none; -} -.bootstrap-select .dropdown-menu li a:hover { - background-color: #ffffff; -} -.bootstrap-select .dropdown-menu li a.active { - background-color: #ffffff; - color: #110a57; -} -.bootstrap-select .dropdown-menu .inner { - border: unset; -} - -.dataTables_wrapper .dataTables_length { - margin-bottom: 20px; -} - -@media (max-width: 790px) { - .add-list { - margin-top: 20px; - } -} - -.ui-kit .iq-top-navbar { - width: 100%; - padding: 0 15px; -} - -.ui-kit .content-page { - margin: 0; -} - -.ui-kit .iq-footer { - width: 100%; - margin: 0; -} - -.ui-kit .header-logo { - display: flex; - align-items: flex-start; -} -.ui-kit .header-logo img { - height: 25px; -} - -.ui-kit .section-content { - padding: 50px 0; -} -.ui-kit .section-content .buttons button { - margin-right: 10px; -} -.ui-kit .section-content .content-shadow-input { - background: #f4f5fa; - padding: 50px 0; - margin-bottom: 50px; -} -.ui-kit .section-content .form-control-alt { - box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.2); - border: 0; - -webkit-transition: all 0.15s ease-in-out; - -moz-transition: all 0.15s ease-in-out; - -ms-transition: all 0.15s ease-in-out; - -o-transition: all 0.15s ease-in-out; - transition: all 0.15s ease-in-out; -} - -.dataTables_length label select { - margin: 0 8px; - padding: 3px; -} - -.dataTables_filter input { - padding: 0 10px; -} - -.dataTables_wrapper .dataTables_paginate span .paginate_button.current { - padding: 0 10px; - color: #01041b !important; -} - -.dataTables_wrapper .dataTables_info { - padding-top: 20px !important; -} - -.dataTables_wrapper .dataTables_paginate { - padding-top: 15px !important; -} - -.dataTables_wrapper .dataTables_filter { - margin-bottom: 20px; -} - -.data-table .badge { - padding: 8px 10px; -} - -.chat-page img { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -#chat-search { - padding-left: 40px; -} - -.form-group.chat-search-data > i { - position: absolute; - top: 8px; - left: 15px; - color: #32bdea; - font-size: 16px; -} - -.chat-sidebar-name { - width: 100%; -} -.chat-sidebar-name h6 { - font-size: 14px; -} -.chat-sidebar-name span { - color: #676e8a; -} - -.chat-msg-counter { - height: 15px; - width: 15px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - line-height: 16px; - margin: 0 auto; - font-size: 7px; -} - -.chat-meta span { - font-size: 8px; -} - -span.avatar-status { - position: absolute; - bottom: -10px; - top: auto; - left: auto; - right: -3px; -} - -.iq-chat-ui li a { - text-decoration: none; - display: block; - padding: 15px 0; - border-bottom: 1px solid #dcdfe8; -} - -.iq-chat-ui li a.active { - border-color: transparent; -} - -.iq-chat-ui li:last-child a { - border: none; -} - -.iq-chat-ui li:nth-child(2) a { - border: none; -} - -.iq-chat-ui li:nth-child(6) a { - border: none; -} - -.nav-pills li a.active { - color: #32bdea; - background-color: #88dffb; -} - -.chat-sidebar-channel { - overflow-y: scroll; - overflow-x: hidden; - height: 53vh; - margin-bottom: 15px; -} -.chat-sidebar-channel .avatar { - position: relative; -} -.chat-sidebar-channel h5 { - border-bottom: 1px solid #dcdfe8; - padding-bottom: 10px; -} - -.chat-data { - background: #88dffb; -} -.chat-data .tab-content { - position: relative; -} - -.chat-header-icons .dropdown-toggle:empty::after { - display: none; -} - -.chat-header-icons > a { - width: 40px; - height: 40px; - font-size: 20px; - margin: 0 5px 0 0; - color: #32bdea; - display: inline-block; - text-align: center; - line-height: 40px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - cursor: pointer; -} - -.chat-header-icons > span { - width: 40px; - height: 40px; - font-size: 20px; - margin: 0 5px 0 0; - color: #32bdea; - display: inline-block; - text-align: center; - line-height: 40px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - cursor: pointer; -} - -.chat-content { - position: relative; - height: calc(100vh - 20rem); - text-align: center; - padding: 1.4rem; - overflow-y: scroll; - overflow-x: hidden; -} -.chat-content .chat-left .chat-message { - text-align: left; - float: left; - margin: 0 0.3rem 1.8rem 1.3rem; - color: #676e8a; - background-color: #fff; - -webkit-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1); - -moz-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1); - -ms-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1); - -o-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1); - box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1); -} -.chat-content .chat-body .chat-message p { - margin-bottom: 0; -} - -.chat-button { - background: #fff; - color: #110a57; -} -.chat-button:hover { - background: #32bdea; - color: #fff; -} - -.chat-user { - float: right; - text-align: center; -} -.chat-user span.chat-time { - display: block; - font-size: 12px; - font-weight: 500; -} - -.chat-detail { - overflow: hidden; -} -.chat-detail .chat-message .chat-time { - position: absolute; - bottom: -20px; - right: 0; - color: #676e8a; - font-size: 0.8rem; - white-space: nowrap; -} - -.chat-message { - position: relative; - float: right; - text-align: right; - padding: 0.75rem 1rem; - margin: 0 1.33rem 1.33rem 0.3rem; - clear: both; - word-break: break-word; - color: #fff; - background: #32bdea; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-box-shadow: 0 2px 4px 0 #50b5ff; - -moz-box-shadow: 0 2px 4px 0 #50b5ff; - -ms-box-shadow: 0 2px 4px 0 #50b5ff; - -o-box-shadow: 0 2px 4px 0 #50b5ff; - box-shadow: 0 2px 4px 0 #50b5ff; -} -.chat-message > p { - margin: 0; -} - -.chat-left .chat-message::after { - right: auto; - left: -7px; - border-width: 5px 7px 5px 0; - border-color: transparent #fff transparent transparent; -} - -.chat-left .chat-user { - float: left; -} - -.avatar { - position: relative; -} - -.chat-start { - display: flex; - justify-content: center; - align-items: center; - height: 100%; - flex-direction: column; -} - -.chat-page .content-page { - min-height: 93vh; -} - -span.iq-start-icon { - font-size: 50px; - background: #fff; - width: 80px; - height: 80px; - line-height: 80px; - text-align: center; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; -} - -.chat-attagement { - font-size: 20px; -} -.chat-attagement a { - color: #676e8a; -} - -.chat-searchbar { - position: relative; -} - -.chat-user-detail-popup { - position: absolute; - top: 0; - width: 360px; - background: #fff; - right: 0; - overflow: hidden; - left: auto; - z-index: 9; - height: 100%; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-transform: translateX(110%); - -moz-transform: translateX(110%); - -ms-transform: translateX(110%); - -o-transform: translateX(110%); - transform: translateX(110%); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - visibility: hidden; -} - -.chat-user-detail-popup.show { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - visibility: visible; - -webkit-transform: translateX(0); - -moz-transform: translateX(0); - -ms-transform: translateX(0); - -o-transform: translateX(0); - transform: translateX(0); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.chatuser-detail { - padding: 0 35px; -} -.chatuser-detail .title { - font-weight: 500; -} - -.user-profile button.close-popup { - display: block; - font-size: 24px; -} - -ul.user-status { - list-style: none; -} - -#user-detail-popup { - position: absolute; - top: 0; - background: #fff; - right: 0; - overflow: hidden; - left: auto; - z-index: 9; - height: 100%; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-transform: translateX(-90%); - -moz-transform: translateX(-90%); - -ms-transform: translateX(-90%); - -o-transform: translateX(-90%); - transform: translateX(-90%); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - visibility: hidden; -} -#user-detail-popup .user-profile button.close-popup { - text-align: right; - width: 100%; -} - -#user-detail-popup.show { - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - visibility: visible; - -webkit-transform: translateX(0); - -moz-transform: translateX(0); - -ms-transform: translateX(0); - -o-transform: translateX(0); - transform: translateX(0); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -button.close-btn-res { - display: none; -} - -div.sidebar-toggle { - display: none; -} - -@media (max-width: 991px) { - .chat-data-left { - position: absolute; - left: -15px; - max-width: 320px; - top: 0; - z-index: 9; - background: #fff; - -webkit-transform: translateX(-100%); - -moz-transform: translateX(-100%); - -ms-transform: translateX(-100%); - -o-transform: translateX(-100%); - transform: translateX(-100%); - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; - overflow-y: scroll; - height: 100%; - } - .chat-sidebar-channel { - overflow: auto; - height: auto; - padding-left: 0 !important; - } - .chat-search { - padding-left: 0 !important; - } - .chat-data-left.show { - -webkit-transform: translateX(0); - -moz-transform: translateX(0); - -ms-transform: translateX(0); - -o-transform: translateX(0); - transform: translateX(0); - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - } - button.close-btn-res { - display: block; - background: transparent; - border: none; - font-size: 20px; - font-weight: 600; - position: absolute; - top: 10px; - left: auto; - right: 0; - } - .chat-head header { - padding-left: 15px; - } - #chat-user-detail-popup { - overflow-y: scroll; - padding-bottom: 20px; - } - #user-detail-popup { - overflow: scroll; - } - div.sidebar-toggle { - display: block; - } - .sidebar-toggle { - background: #88dffb; - padding: 12px 10px; - margin-right: 15px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - height: 40px; - width: 40px; - line-height: 17px; - text-align: center; - color: #32bdea; - } - .chat-page .content-page { - min-height: 90vh; - } - .chat-page .chat-start { - height: 74vh; - } -} - -@media (max-width: 767px) { - .chat-user-detail-popup { - width: 250px; - } -} - -@media (max-width: 479px) { - .chat-head header { - overflow-x: scroll; - } -} - -.iq-todo-page .search-link { - position: absolute; - top: 0; - left: 10px; - font-size: 18px; - line-height: 43px; - color: #676e8a; -} - -.iq-todo-page .todo-search { - padding-left: 35px; -} - -.iq-todo-page ul { - list-style: none; -} -.iq-todo-page ul li a { - color: #676e8a; - text-decoration: none; -} -.iq-todo-page ul ul li a { - padding-left: 25px; -} -.iq-todo-page ul > li > a { - padding: 10px 15px; - display: block; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.iq-todo-page ul > li li:hover a { - color: #32bdea; - background: #88dffb; -} -.iq-todo-page ul > li li.active a { - color: #32bdea; - background: #88dffb; -} -.iq-todo-page ul > li[aria-expanded="true"] > a { - color: #32bdea; - background: #88dffb; -} - -.iq-todo-right .search-link { - position: absolute; - top: 0; - left: 10px; - font-size: 18px; - line-height: 43px; - color: #676e8a; -} - -.iq-todo-right .todo-search { - padding-left: 35px; -} - -.add-new-project > a { - padding: 0 15px; - color: #676e8a; - text-transform: capitalize; - text-decoration: none; -} - -.notification-icon > span { - height: 13px; - width: 13px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - line-height: 15px; - font-size: 8px; - text-align: center; - position: absolute; - top: -5px; - left: auto; - right: -8px; -} - -.todo-date { - font-size: 16px; -} - -ul.todo-task-lists li:hover { - background: #88dffb; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -ul.todo-task-lists li.active-task { - background: #88dffb; -} - -.media-support-info p { - line-height: normal; -} - -.todo-task-list .sub-task { - display: none; -} - -.todo-task-list .sub-task.show { - display: block; -} - -.iq-email-list .iq-email-ui { - margin: 0; - padding: 0; -} -.iq-email-list .iq-email-ui li { - list-style-type: none; - font-size: 16px; - color: #676e8a; - margin-bottom: 3px; - list-style-type: none; -} -.iq-email-list .iq-email-ui li:last-child { - margin-bottom: 0; -} -.iq-email-list .iq-email-ui li a { - color: #676e8a; - padding: 0; - display: inline-block; - width: 100%; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-email-list .iq-email-ui li a:hover { - text-decoration: none; - color: #32bdea; -} -.iq-email-list .iq-email-ui li i { - margin-right: 10px; -} -.iq-email-list .iq-email-ui li .badge { - float: right; - font-weight: normal; - margin-top: 3px; -} -.iq-email-list .iq-email-ui li.active a { - text-decoration: none; - color: #32bdea; -} - -.iq-email-list .iq-email-ui.iq-email-label li { - margin-bottom: 10px; -} -.iq-email-list .iq-email-ui.iq-email-label li:last-child { - margin-bottom: 0; -} - -.iq-email-to-list ul { - margin: 0; - padding: 0; -} -.iq-email-to-list ul li { - list-style-type: none; - font-size: 20px; - color: #676e8a; - margin: 0 5px 0 0; - float: left; -} -.iq-email-to-list ul li:first-child a { - background: none; - width: auto; -} -.iq-email-to-list ul li > a { - color: #32bdea; - text-align: center; - line-height: 38px; - display: inline-block; - font-size: 14px; - width: 40px; - height: 40px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - background: #88dffb; -} -.iq-email-to-list ul li a:hover { - color: #32bdea; - text-decoration: none; -} -.iq-email-to-list ul li .custom-control-label::before { - top: 13px; - left: -20px; -} -.iq-email-to-list ul li.q-list a:hover { - color: #32bdea; - text-decoration: none; -} - -.iq-email-search { - position: relative; -} -.iq-email-search .form-control { - height: 40px; - border: 1px solid #dcdfe8; - width: 170px; -} -.iq-email-search .search-link { - position: absolute; - top: 0; - right: 15px; - font-size: 18px; - line-height: 38px; - color: #32bdea; -} -.iq-email-search .search-link:hover { - text-decoration: none; -} - -.iq-email-listbox .iq-email-sender-list { - margin: 15px 0 0; - padding: 0; - display: inline-block; - width: 100%; - overflow: hidden; -} -.iq-email-listbox .iq-email-sender-list > li { - list-style-type: none; - position: relative; - padding: 15px 20px; - border-top: 1px solid #dcdfe8; - display: inline-block; - width: 100%; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -.iq-email-listbox .iq-email-sender-list > li:hover { - background: #fff; - -webkit-box-shadow: 0px 16px 40px 0px #0000000a; - -moz-box-shadow: 0px 16px 40px 0px #0000000a; - -ms-box-shadow: 0px 16px 40px 0px #0000000a; - -o-box-shadow: 0px 16px 40px 0px #0000000a; - box-shadow: 0px 16px 40px 0px #0000000a; -} -.iq-email-listbox .iq-email-sender-list li a:hover { - text-decoration: none; -} -.iq-email-listbox .iq-email-sender-list li:hover .iq-social-media { - right: 0; -} -.iq-email-listbox .iq-email-sender-list li.iq-unread a { - color: #32bdea; - font-weight: 500; -} -.iq-email-listbox .iq-email-sender-list li.iq-unread li a { - color: #32bdea; -} - -.iq-email-sender-info .iq-checkbox-mail { - display: block; - float: left; - cursor: pointer; - height: 20px; - width: 20px; - margin-top: 4px; -} - -.iq-email-sender-info .iq-star-toggle { - display: block; - float: left; - color: #676e8a; - margin-left: 10px; - font-size: 18px; -} - -.iq-email-sender-info .iq-email-title { - color: #676e8a; - position: absolute; - top: 0; - left: 85px; - right: 0; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; - margin-bottom: 0; - line-height: 62px; -} - -.iq-email-content { - position: absolute; - top: 0; - left: 300px; - right: 0; - bottom: 0; - line-height: 62px; -} -.iq-email-content .iq-email-date { - position: absolute; - top: 0; - right: 20px; - width: 100px; - text-align: right; - padding-left: 10px; - color: #676e8a; -} -.iq-email-content .iq-email-subject { - position: absolute; - top: 0; - color: #676e8a; - left: 0; - right: 110px; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; -} - -.iq-email-sender-list .iq-social-media { - position: absolute; - line-height: 62px; - right: -220px; - top: 0; - bottom: 0; - background: #fff; - font-size: 18px; - padding: 0 30px; - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -.iq-inbox-details tr td { - padding: 5px 10px; -} -.iq-inbox-details tr td:first-child { - width: 75px; - color: #676e8a; -} - -.iq-subject-info { - display: flex; - align-items: flex-start; -} - -.iq-subject-status { - margin-left: 15px; - flex: 1; -} - -.email-app-details.show { - visibility: visible; - -webkit-opacity: 1; - -moz-opacity: 1; - -ms-opacity: 1; - -o-opacity: 1; - opacity: 1; - -webkit-transform: translateX(0); - -moz-transform: translateX(0); - -ms-transform: translateX(0); - -o-transform: translateX(0); - transform: translateX(0); -} - -.email-app-details { - position: absolute; - display: block; - z-index: 6; - visibility: hidden; - -webkit-opacity: 0; - -moz-opacity: 0; - -ms-opacity: 0; - -o-opacity: 0; - opacity: 0; - top: 0; - width: 100%; - -webkit-transform: translateX(100%); - -moz-transform: translateX(100%); - -ms-transform: translateX(100%); - -o-transform: translateX(100%); - transform: translateX(100%); - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -ms-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; - height: 100%; - left: auto; - right: 0; - -webkit-border-radius: 30px; - -moz-border-radius: 30px; - -ms-border-radius: 30px; - -o-border-radius: 30px; - border-radius: 30px; -} -.email-app-details .card { - height: 100%; -} - -.attegement ul { - padding: 0; - list-style: none; -} - -.send-panel a { - height: 30px; - width: 30px; - text-align: center; - font-size: 18px; - line-height: 30px; - display: inline-block; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - cursor: pointer; -} - -.send-panel label { - margin-bottom: 0; -} - -#compose-email-popup { - position: fixed; - max-width: 700px; - left: auto; - right: 0; - top: auto; - bottom: 0; - padding: 0 !important; - max-height: 555px; - width: 100%; - overflow-y: scroll; - overflow-x: hidden; -} -#compose-email-popup .iq-card { - -webkit-border-radius: 10px 10px 0 0; - -moz-border-radius: 10px 10px 0 0; - -ms-border-radius: 10px 10px 0 0; - -o-border-radius: 10px 10px 0 0; - border-radius: 10px 10px 0 0; -} - -button.close-popup { - background: transparent; - color: #000; - border: none; - font-size: 20px; - line-height: 20px; -} - -.compose-bottom { - border-top: 1px solid #676e8a; -} - -.nav-pills .nav-link.active { - color: #32bdea; - background: #88dffb; -} - -.nav-pills .show > .nav-link { - color: #32bdea; - background: #88dffb; -} - -.iq-social-media li { - list-style: none; - float: left; - margin-right: 10px; -} -.iq-social-media li a { - height: 30px; - width: 30px; - text-align: center; - font-size: 18px; - line-height: 30px; - display: inline-block; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - color: #32bdea !important; -} - -@media (max-width: 1699px) { - .email-form .select2-container { - width: 100% !important; - } -} - -@media (max-width: 1199px) { - .iq-email-to-list { - overflow-x: scroll; - overflow-y: hidden; - } - .iq-email-to-list ul li { - margin: 0 5px 0 0; - } - .iq-email-to-list .justify-content-between { - float: left; - width: 900px; - } -} - -@media (max-width: 479px) { - .send-buttons { - display: block !important; - } - .send-buttons .send-btn { - padding-left: 5px !important; - margin-bottom: 15px; - } -} - -@media (max-width: 320px) { - .send-panel label { - margin-bottom: 8px; - } -} - -.iq-icon-box-2 { - height: 60px; - width: 60px; - line-height: 55px; - text-align: center; - margin-right: 20px; - font-size: 26px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.card-total-sale img { - max-height: 34px; -} - -.layout-chart-1 { - position: relative; -} -.layout-chart-1:before { - content: ""; - height: 20px; - width: 20px; - border: 5px solid #ff7e41; - background: #fff; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: absolute; - top: 20px; - right: 0px; - z-index: 9; -} - -.layout-chart-2 { - position: relative; -} -.layout-chart-2:before { - content: ""; - height: 20px; - width: 20px; - border: 5px solid #32bdea; - background: #fff; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - -o-border-radius: 50%; - border-radius: 50%; - position: absolute; - top: 20px; - right: 0px; - z-index: 9; -} - -.card-header .view-btn.light-gray { - background: #f4f5fa; -} - -.progress.progress-round.conversation-bar { - width: 68px; - height: 68px; - line-height: 68px; -} - -#layout1-chart-5 .apexcharts-legend { - margin-top: -10px !important; - inset: auto 0 0 !important; -} - -.top-product .card-body { - padding: 20px !important; -} - -.card-item-right img { - padding: 14px; -} - -.card-item-right .style-text { - margin-left: 20px; -} - -.card .card-header.order-detail { - padding-top: 30px; -} - -i { - vertical-align: middle; -} - -.top-product.slick-slider { - margin: 0 -10px; -} -.top-product.slick-slider .slick-slide { - padding: 0 10px; -} - -@media (max-width: 533px) { - .progress-order-right { - margin-left: 10px !important; - } - .progress-value { - padding-right: 10px !important; - } -} - -@media (max-width: 470px) { - .progress-order-right { - margin-left: 0px !important; - margin-top: 20px; - } - .progress-value { - padding-right: 20px !important; - border: 0 !important; - } - .card-item-right .style-text { - margin-left: 10px; - } -} - - - -.goroutine { - border: 1px solid #ddd; - border-radius: 4px; - margin-bottom: 20px; - padding: 10px; - background-color: #f9f9f9; -} - -.goroutine-header { - font-weight: bold; - margin-bottom: 10px; -} - -pre { - white-space: pre-wrap; - /* Wraps text and respects new lines */ - overflow-x: auto; - /* Enables horizontal scrolling */ - background-color: #eee; - padding: 10px; - border-radius: 4px; -} - -.num-goroutines { - font-size: 18px; - margin-bottom: 20px; -} - -/* Guage CSS */ -* { - --green: #37872d; - --lightgreen: #56a64b; - --yellow: #eab839; - --orange: #ef843c; - --red: #f2495c; -} - -@property --o { - syntax: ""; - inherits: true; - initial-value: 0; -} - -.container { - width: 100vmin; - display: flex; -} - -.gauge { - display: flex; - align-items: center; - justify-content: center; - position: relative; - aspect-ratio: 2 / 1.5; - margin-left: 75px; - width: 60%; - --fill-color: var(--green); - --background-color: white; - --gauge-background-color: #333; - --lightgreen-deg: 70deg; - --yellow-deg: 60deg; - --orange-deg: 50deg; - --red-deg: 40deg; - color: var(--fill-color); - - /* outer ring */ - background: radial-gradient(circle at 50% 70%, - var(--background-color) 0 51%, - #0000 0 63%, - var(--background-color) 63.1%), - conic-gradient(from -115deg at 50% 70%, - var(--red) 0 var(--red-deg), - var(--orange) 0 var(--orange-deg), - var(--yellow) 0 var(--yellow-deg), - var(--lightgreen) 0 var(--lightgreen-deg), - var(--green) 0 230deg, - var(--background-color) 0); -} - -.gauge>svg { - z-index: 1; - position: relative; - background: 0; - margin-top: 15%; - width: 100%; -} - -.gauge>svg>text { - font-size: 11px; - text-anchor: middle; - alignment-baseline: central; - fill: var(--fill-color); -} - -.gauge::after { - content: ' '; - top: 0; - bottom: 0; - left: 0; - right: 0; - position: absolute; - --o: 0; - animation: roll-o-1 3s alternate ease-in-out both; - - /* inner ring */ - background: radial-gradient(circle at 50% 70%, - var(--background-color) 0 45%, #0000 45.1% 59%, - var(--background-color) 59.1%), - conic-gradient(from -115deg at 50% 70%, - var(--fill-color) 0 min(2.3deg * var(--o), 230deg), - var(--gauge-background-color) 0 230deg, - var(--background-color) 0); - clip-path: circle(50% at 50% 70%); -} - -@keyframes roll-o-1 { - 0% { - --o: 0; - } - - 100% { - --o: var(--fill-percentage); - } -} - -/* */ -.grid-container { - display: grid; - grid-template-columns: auto auto; -} - -.grid-item { - /* border: 1px solid rgba(0, 0, 0, 0.8); */ - text-align: -webkit-center; -} - - -.info-icon { - display: inline-block; - margin-left: 1px; - padding: 2px 6px; - border-radius: 50%; - background-color: #007bff; - color: #fff; - text-align: center; - cursor: pointer; - font-size: 12px; - line-height: 1; - position: relative; -} - -.info-icon::after { - content: attr(data-tooltip); - position: absolute; - bottom: 100%; - left: 50%; - transform: translateX(-50%); - background-color: #333; - color: #fff; - padding: 5px; - border-radius: 4px; - white-space: nowrap; - opacity: 0; - pointer-events: none; - transition: opacity 0.3s; - font-size: 12px; - margin-bottom: 5px; - z-index: 10; -} - -.info-icon:hover::after { - opacity: 1; -} \ No newline at end of file diff --git a/static/css/core/bootstrap/bootstrap-grid.css b/static/css/core/bootstrap/bootstrap-grid.css deleted file mode 100644 index 59c4136..0000000 --- a/static/css/core/bootstrap/bootstrap-grid.css +++ /dev/null @@ -1,2585 +0,0 @@ -/*! - * Bootstrap Grid v4.5.0 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -html { - box-sizing: border-box; - -ms-overflow-style: scrollbar; } - -*, -*::before, -*::after { - box-sizing: inherit; } - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - @media (min-width: 576px) { - .container { - max-width: 540px; } } - @media (min-width: 768px) { - .container { - max-width: 720px; } } - @media (min-width: 992px) { - .container { - max-width: 960px; } } - @media (min-width: 1200px) { - .container { - max-width: 1140px; } } - -.container-fluid, .container-sm, .container-md, .container-lg, .container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - -@media (min-width: 576px) { - .container, .container-sm { - max-width: 540px; } } - -@media (min-width: 768px) { - .container, .container-sm, .container-md { - max-width: 720px; } } - -@media (min-width: 992px) { - .container, .container-sm, .container-md, .container-lg { - max-width: 960px; } } - -@media (min-width: 1200px) { - .container, .container-sm, .container-md, .container-lg, .container-xl { - max-width: 1140px; } } - -.row { - display: flex; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; } - -.no-gutters { - margin-right: 0; - margin-left: 0; } - .no-gutters > .col, - .no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; } - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; } - -.col { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; } - -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; } - -.row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; } - -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; } - -.row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - -.col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - -.col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - -.col-3 { - flex: 0 0 25%; - max-width: 25%; } - -.col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - -.col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - -.col-6 { - flex: 0 0 50%; - max-width: 50%; } - -.col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - -.col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - -.col-9 { - flex: 0 0 75%; - max-width: 75%; } - -.col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - -.col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - -.col-12 { - flex: 0 0 100%; - max-width: 100%; } - -.order-first { - order: -1; } - -.order-last { - order: 13; } - -.order-0 { - order: 0; } - -.order-1 { - order: 1; } - -.order-2 { - order: 2; } - -.order-3 { - order: 3; } - -.order-4 { - order: 4; } - -.order-5 { - order: 5; } - -.order-6 { - order: 6; } - -.order-7 { - order: 7; } - -.order-8 { - order: 8; } - -.order-9 { - order: 9; } - -.order-10 { - order: 10; } - -.order-11 { - order: 11; } - -.order-12 { - order: 12; } - -.offset-1 { - margin-left: 8.33333%; } - -.offset-2 { - margin-left: 16.66667%; } - -.offset-3 { - margin-left: 25%; } - -.offset-4 { - margin-left: 33.33333%; } - -.offset-5 { - margin-left: 41.66667%; } - -.offset-6 { - margin-left: 50%; } - -.offset-7 { - margin-left: 58.33333%; } - -.offset-8 { - margin-left: 66.66667%; } - -.offset-9 { - margin-left: 75%; } - -.offset-10 { - margin-left: 83.33333%; } - -.offset-11 { - margin-left: 91.66667%; } - -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-sm-first { - order: -1; } - .order-sm-last { - order: 13; } - .order-sm-0 { - order: 0; } - .order-sm-1 { - order: 1; } - .order-sm-2 { - order: 2; } - .order-sm-3 { - order: 3; } - .order-sm-4 { - order: 4; } - .order-sm-5 { - order: 5; } - .order-sm-6 { - order: 6; } - .order-sm-7 { - order: 7; } - .order-sm-8 { - order: 8; } - .order-sm-9 { - order: 9; } - .order-sm-10 { - order: 10; } - .order-sm-11 { - order: 11; } - .order-sm-12 { - order: 12; } - .offset-sm-0 { - margin-left: 0; } - .offset-sm-1 { - margin-left: 8.33333%; } - .offset-sm-2 { - margin-left: 16.66667%; } - .offset-sm-3 { - margin-left: 25%; } - .offset-sm-4 { - margin-left: 33.33333%; } - .offset-sm-5 { - margin-left: 41.66667%; } - .offset-sm-6 { - margin-left: 50%; } - .offset-sm-7 { - margin-left: 58.33333%; } - .offset-sm-8 { - margin-left: 66.66667%; } - .offset-sm-9 { - margin-left: 75%; } - .offset-sm-10 { - margin-left: 83.33333%; } - .offset-sm-11 { - margin-left: 91.66667%; } } - -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-md-first { - order: -1; } - .order-md-last { - order: 13; } - .order-md-0 { - order: 0; } - .order-md-1 { - order: 1; } - .order-md-2 { - order: 2; } - .order-md-3 { - order: 3; } - .order-md-4 { - order: 4; } - .order-md-5 { - order: 5; } - .order-md-6 { - order: 6; } - .order-md-7 { - order: 7; } - .order-md-8 { - order: 8; } - .order-md-9 { - order: 9; } - .order-md-10 { - order: 10; } - .order-md-11 { - order: 11; } - .order-md-12 { - order: 12; } - .offset-md-0 { - margin-left: 0; } - .offset-md-1 { - margin-left: 8.33333%; } - .offset-md-2 { - margin-left: 16.66667%; } - .offset-md-3 { - margin-left: 25%; } - .offset-md-4 { - margin-left: 33.33333%; } - .offset-md-5 { - margin-left: 41.66667%; } - .offset-md-6 { - margin-left: 50%; } - .offset-md-7 { - margin-left: 58.33333%; } - .offset-md-8 { - margin-left: 66.66667%; } - .offset-md-9 { - margin-left: 75%; } - .offset-md-10 { - margin-left: 83.33333%; } - .offset-md-11 { - margin-left: 91.66667%; } } - -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-lg-first { - order: -1; } - .order-lg-last { - order: 13; } - .order-lg-0 { - order: 0; } - .order-lg-1 { - order: 1; } - .order-lg-2 { - order: 2; } - .order-lg-3 { - order: 3; } - .order-lg-4 { - order: 4; } - .order-lg-5 { - order: 5; } - .order-lg-6 { - order: 6; } - .order-lg-7 { - order: 7; } - .order-lg-8 { - order: 8; } - .order-lg-9 { - order: 9; } - .order-lg-10 { - order: 10; } - .order-lg-11 { - order: 11; } - .order-lg-12 { - order: 12; } - .offset-lg-0 { - margin-left: 0; } - .offset-lg-1 { - margin-left: 8.33333%; } - .offset-lg-2 { - margin-left: 16.66667%; } - .offset-lg-3 { - margin-left: 25%; } - .offset-lg-4 { - margin-left: 33.33333%; } - .offset-lg-5 { - margin-left: 41.66667%; } - .offset-lg-6 { - margin-left: 50%; } - .offset-lg-7 { - margin-left: 58.33333%; } - .offset-lg-8 { - margin-left: 66.66667%; } - .offset-lg-9 { - margin-left: 75%; } - .offset-lg-10 { - margin-left: 83.33333%; } - .offset-lg-11 { - margin-left: 91.66667%; } } - -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-xl-first { - order: -1; } - .order-xl-last { - order: 13; } - .order-xl-0 { - order: 0; } - .order-xl-1 { - order: 1; } - .order-xl-2 { - order: 2; } - .order-xl-3 { - order: 3; } - .order-xl-4 { - order: 4; } - .order-xl-5 { - order: 5; } - .order-xl-6 { - order: 6; } - .order-xl-7 { - order: 7; } - .order-xl-8 { - order: 8; } - .order-xl-9 { - order: 9; } - .order-xl-10 { - order: 10; } - .order-xl-11 { - order: 11; } - .order-xl-12 { - order: 12; } - .offset-xl-0 { - margin-left: 0; } - .offset-xl-1 { - margin-left: 8.33333%; } - .offset-xl-2 { - margin-left: 16.66667%; } - .offset-xl-3 { - margin-left: 25%; } - .offset-xl-4 { - margin-left: 33.33333%; } - .offset-xl-5 { - margin-left: 41.66667%; } - .offset-xl-6 { - margin-left: 50%; } - .offset-xl-7 { - margin-left: 58.33333%; } - .offset-xl-8 { - margin-left: 66.66667%; } - .offset-xl-9 { - margin-left: 75%; } - .offset-xl-10 { - margin-left: 83.33333%; } - .offset-xl-11 { - margin-left: 91.66667%; } } - -.d-none { - display: none !important; } - -.d-inline { - display: inline !important; } - -.d-inline-block { - display: inline-block !important; } - -.d-block { - display: block !important; } - -.d-table { - display: table !important; } - -.d-table-row { - display: table-row !important; } - -.d-table-cell { - display: table-cell !important; } - -.d-flex { - display: flex !important; } - -.d-inline-flex { - display: inline-flex !important; } - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; } - .d-sm-inline { - display: inline !important; } - .d-sm-inline-block { - display: inline-block !important; } - .d-sm-block { - display: block !important; } - .d-sm-table { - display: table !important; } - .d-sm-table-row { - display: table-row !important; } - .d-sm-table-cell { - display: table-cell !important; } - .d-sm-flex { - display: flex !important; } - .d-sm-inline-flex { - display: inline-flex !important; } } - -@media (min-width: 768px) { - .d-md-none { - display: none !important; } - .d-md-inline { - display: inline !important; } - .d-md-inline-block { - display: inline-block !important; } - .d-md-block { - display: block !important; } - .d-md-table { - display: table !important; } - .d-md-table-row { - display: table-row !important; } - .d-md-table-cell { - display: table-cell !important; } - .d-md-flex { - display: flex !important; } - .d-md-inline-flex { - display: inline-flex !important; } } - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; } - .d-lg-inline { - display: inline !important; } - .d-lg-inline-block { - display: inline-block !important; } - .d-lg-block { - display: block !important; } - .d-lg-table { - display: table !important; } - .d-lg-table-row { - display: table-row !important; } - .d-lg-table-cell { - display: table-cell !important; } - .d-lg-flex { - display: flex !important; } - .d-lg-inline-flex { - display: inline-flex !important; } } - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; } - .d-xl-inline { - display: inline !important; } - .d-xl-inline-block { - display: inline-block !important; } - .d-xl-block { - display: block !important; } - .d-xl-table { - display: table !important; } - .d-xl-table-row { - display: table-row !important; } - .d-xl-table-cell { - display: table-cell !important; } - .d-xl-flex { - display: flex !important; } - .d-xl-inline-flex { - display: inline-flex !important; } } - -@media print { - .d-print-none { - display: none !important; } - .d-print-inline { - display: inline !important; } - .d-print-inline-block { - display: inline-block !important; } - .d-print-block { - display: block !important; } - .d-print-table { - display: table !important; } - .d-print-table-row { - display: table-row !important; } - .d-print-table-cell { - display: table-cell !important; } - .d-print-flex { - display: flex !important; } - .d-print-inline-flex { - display: inline-flex !important; } } - -.flex-row { - flex-direction: row !important; } - -.flex-column { - flex-direction: column !important; } - -.flex-row-reverse { - flex-direction: row-reverse !important; } - -.flex-column-reverse { - flex-direction: column-reverse !important; } - -.flex-wrap { - flex-wrap: wrap !important; } - -.flex-nowrap { - flex-wrap: nowrap !important; } - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; } - -.flex-fill { - flex: 1 1 auto !important; } - -.flex-grow-0 { - flex-grow: 0 !important; } - -.flex-grow-1 { - flex-grow: 1 !important; } - -.flex-shrink-0 { - flex-shrink: 0 !important; } - -.flex-shrink-1 { - flex-shrink: 1 !important; } - -.justify-content-start { - justify-content: flex-start !important; } - -.justify-content-end { - justify-content: flex-end !important; } - -.justify-content-center { - justify-content: center !important; } - -.justify-content-between { - justify-content: space-between !important; } - -.justify-content-around { - justify-content: space-around !important; } - -.align-items-start { - align-items: flex-start !important; } - -.align-items-end { - align-items: flex-end !important; } - -.align-items-center { - align-items: center !important; } - -.align-items-baseline { - align-items: baseline !important; } - -.align-items-stretch { - align-items: stretch !important; } - -.align-content-start { - align-content: flex-start !important; } - -.align-content-end { - align-content: flex-end !important; } - -.align-content-center { - align-content: center !important; } - -.align-content-between { - align-content: space-between !important; } - -.align-content-around { - align-content: space-around !important; } - -.align-content-stretch { - align-content: stretch !important; } - -.align-self-auto { - align-self: auto !important; } - -.align-self-start { - align-self: flex-start !important; } - -.align-self-end { - align-self: flex-end !important; } - -.align-self-center { - align-self: center !important; } - -.align-self-baseline { - align-self: baseline !important; } - -.align-self-stretch { - align-self: stretch !important; } - -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; } - .flex-sm-column { - flex-direction: column !important; } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; } - .flex-sm-wrap { - flex-wrap: wrap !important; } - .flex-sm-nowrap { - flex-wrap: nowrap !important; } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-sm-fill { - flex: 1 1 auto !important; } - .flex-sm-grow-0 { - flex-grow: 0 !important; } - .flex-sm-grow-1 { - flex-grow: 1 !important; } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-sm-start { - justify-content: flex-start !important; } - .justify-content-sm-end { - justify-content: flex-end !important; } - .justify-content-sm-center { - justify-content: center !important; } - .justify-content-sm-between { - justify-content: space-between !important; } - .justify-content-sm-around { - justify-content: space-around !important; } - .align-items-sm-start { - align-items: flex-start !important; } - .align-items-sm-end { - align-items: flex-end !important; } - .align-items-sm-center { - align-items: center !important; } - .align-items-sm-baseline { - align-items: baseline !important; } - .align-items-sm-stretch { - align-items: stretch !important; } - .align-content-sm-start { - align-content: flex-start !important; } - .align-content-sm-end { - align-content: flex-end !important; } - .align-content-sm-center { - align-content: center !important; } - .align-content-sm-between { - align-content: space-between !important; } - .align-content-sm-around { - align-content: space-around !important; } - .align-content-sm-stretch { - align-content: stretch !important; } - .align-self-sm-auto { - align-self: auto !important; } - .align-self-sm-start { - align-self: flex-start !important; } - .align-self-sm-end { - align-self: flex-end !important; } - .align-self-sm-center { - align-self: center !important; } - .align-self-sm-baseline { - align-self: baseline !important; } - .align-self-sm-stretch { - align-self: stretch !important; } } - -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; } - .flex-md-column { - flex-direction: column !important; } - .flex-md-row-reverse { - flex-direction: row-reverse !important; } - .flex-md-column-reverse { - flex-direction: column-reverse !important; } - .flex-md-wrap { - flex-wrap: wrap !important; } - .flex-md-nowrap { - flex-wrap: nowrap !important; } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-md-fill { - flex: 1 1 auto !important; } - .flex-md-grow-0 { - flex-grow: 0 !important; } - .flex-md-grow-1 { - flex-grow: 1 !important; } - .flex-md-shrink-0 { - flex-shrink: 0 !important; } - .flex-md-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-md-start { - justify-content: flex-start !important; } - .justify-content-md-end { - justify-content: flex-end !important; } - .justify-content-md-center { - justify-content: center !important; } - .justify-content-md-between { - justify-content: space-between !important; } - .justify-content-md-around { - justify-content: space-around !important; } - .align-items-md-start { - align-items: flex-start !important; } - .align-items-md-end { - align-items: flex-end !important; } - .align-items-md-center { - align-items: center !important; } - .align-items-md-baseline { - align-items: baseline !important; } - .align-items-md-stretch { - align-items: stretch !important; } - .align-content-md-start { - align-content: flex-start !important; } - .align-content-md-end { - align-content: flex-end !important; } - .align-content-md-center { - align-content: center !important; } - .align-content-md-between { - align-content: space-between !important; } - .align-content-md-around { - align-content: space-around !important; } - .align-content-md-stretch { - align-content: stretch !important; } - .align-self-md-auto { - align-self: auto !important; } - .align-self-md-start { - align-self: flex-start !important; } - .align-self-md-end { - align-self: flex-end !important; } - .align-self-md-center { - align-self: center !important; } - .align-self-md-baseline { - align-self: baseline !important; } - .align-self-md-stretch { - align-self: stretch !important; } } - -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; } - .flex-lg-column { - flex-direction: column !important; } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; } - .flex-lg-wrap { - flex-wrap: wrap !important; } - .flex-lg-nowrap { - flex-wrap: nowrap !important; } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-lg-fill { - flex: 1 1 auto !important; } - .flex-lg-grow-0 { - flex-grow: 0 !important; } - .flex-lg-grow-1 { - flex-grow: 1 !important; } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-lg-start { - justify-content: flex-start !important; } - .justify-content-lg-end { - justify-content: flex-end !important; } - .justify-content-lg-center { - justify-content: center !important; } - .justify-content-lg-between { - justify-content: space-between !important; } - .justify-content-lg-around { - justify-content: space-around !important; } - .align-items-lg-start { - align-items: flex-start !important; } - .align-items-lg-end { - align-items: flex-end !important; } - .align-items-lg-center { - align-items: center !important; } - .align-items-lg-baseline { - align-items: baseline !important; } - .align-items-lg-stretch { - align-items: stretch !important; } - .align-content-lg-start { - align-content: flex-start !important; } - .align-content-lg-end { - align-content: flex-end !important; } - .align-content-lg-center { - align-content: center !important; } - .align-content-lg-between { - align-content: space-between !important; } - .align-content-lg-around { - align-content: space-around !important; } - .align-content-lg-stretch { - align-content: stretch !important; } - .align-self-lg-auto { - align-self: auto !important; } - .align-self-lg-start { - align-self: flex-start !important; } - .align-self-lg-end { - align-self: flex-end !important; } - .align-self-lg-center { - align-self: center !important; } - .align-self-lg-baseline { - align-self: baseline !important; } - .align-self-lg-stretch { - align-self: stretch !important; } } - -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; } - .flex-xl-column { - flex-direction: column !important; } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xl-wrap { - flex-wrap: wrap !important; } - .flex-xl-nowrap { - flex-wrap: nowrap !important; } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-xl-fill { - flex: 1 1 auto !important; } - .flex-xl-grow-0 { - flex-grow: 0 !important; } - .flex-xl-grow-1 { - flex-grow: 1 !important; } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-xl-start { - justify-content: flex-start !important; } - .justify-content-xl-end { - justify-content: flex-end !important; } - .justify-content-xl-center { - justify-content: center !important; } - .justify-content-xl-between { - justify-content: space-between !important; } - .justify-content-xl-around { - justify-content: space-around !important; } - .align-items-xl-start { - align-items: flex-start !important; } - .align-items-xl-end { - align-items: flex-end !important; } - .align-items-xl-center { - align-items: center !important; } - .align-items-xl-baseline { - align-items: baseline !important; } - .align-items-xl-stretch { - align-items: stretch !important; } - .align-content-xl-start { - align-content: flex-start !important; } - .align-content-xl-end { - align-content: flex-end !important; } - .align-content-xl-center { - align-content: center !important; } - .align-content-xl-between { - align-content: space-between !important; } - .align-content-xl-around { - align-content: space-around !important; } - .align-content-xl-stretch { - align-content: stretch !important; } - .align-self-xl-auto { - align-self: auto !important; } - .align-self-xl-start { - align-self: flex-start !important; } - .align-self-xl-end { - align-self: flex-end !important; } - .align-self-xl-center { - align-self: center !important; } - .align-self-xl-baseline { - align-self: baseline !important; } - .align-self-xl-stretch { - align-self: stretch !important; } } - -.m-0 { - margin: 0 !important; } - -.mt-0, -.my-0 { - margin-top: 0 !important; } - -.mr-0, -.mx-0 { - margin-right: 0 !important; } - -.mb-0, -.my-0 { - margin-bottom: 0 !important; } - -.ml-0, -.mx-0 { - margin-left: 0 !important; } - -.m-1 { - margin: 0.25rem !important; } - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; } - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; } - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; } - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; } - -.m-2 { - margin: 0.5rem !important; } - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; } - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; } - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; } - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; } - -.m-3 { - margin: 1rem !important; } - -.mt-3, -.my-3 { - margin-top: 1rem !important; } - -.mr-3, -.mx-3 { - margin-right: 1rem !important; } - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; } - -.ml-3, -.mx-3 { - margin-left: 1rem !important; } - -.m-4 { - margin: 1.5rem !important; } - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; } - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; } - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; } - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; } - -.m-5 { - margin: 3rem !important; } - -.mt-5, -.my-5 { - margin-top: 3rem !important; } - -.mr-5, -.mx-5 { - margin-right: 3rem !important; } - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; } - -.ml-5, -.mx-5 { - margin-left: 3rem !important; } - -.p-0 { - padding: 0 !important; } - -.pt-0, -.py-0 { - padding-top: 0 !important; } - -.pr-0, -.px-0 { - padding-right: 0 !important; } - -.pb-0, -.py-0 { - padding-bottom: 0 !important; } - -.pl-0, -.px-0 { - padding-left: 0 !important; } - -.p-1 { - padding: 0.25rem !important; } - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; } - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; } - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; } - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; } - -.p-2 { - padding: 0.5rem !important; } - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; } - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; } - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; } - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; } - -.p-3 { - padding: 1rem !important; } - -.pt-3, -.py-3 { - padding-top: 1rem !important; } - -.pr-3, -.px-3 { - padding-right: 1rem !important; } - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; } - -.pl-3, -.px-3 { - padding-left: 1rem !important; } - -.p-4 { - padding: 1.5rem !important; } - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; } - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; } - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; } - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; } - -.p-5 { - padding: 3rem !important; } - -.pt-5, -.py-5 { - padding-top: 3rem !important; } - -.pr-5, -.px-5 { - padding-right: 3rem !important; } - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; } - -.pl-5, -.px-5 { - padding-left: 3rem !important; } - -.m-n1 { - margin: -0.25rem !important; } - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; } - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; } - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; } - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; } - -.m-n2 { - margin: -0.5rem !important; } - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; } - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; } - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; } - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; } - -.m-n3 { - margin: -1rem !important; } - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; } - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; } - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; } - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; } - -.m-n4 { - margin: -1.5rem !important; } - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; } - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; } - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; } - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; } - -.m-n5 { - margin: -3rem !important; } - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; } - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; } - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; } - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; } - -.m-auto { - margin: auto !important; } - -.mt-auto, -.my-auto { - margin-top: auto !important; } - -.mr-auto, -.mx-auto { - margin-right: auto !important; } - -.mb-auto, -.my-auto { - margin-bottom: auto !important; } - -.ml-auto, -.mx-auto { - margin-left: auto !important; } - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; } - .m-sm-1 { - margin: 0.25rem !important; } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; } - .m-sm-2 { - margin: 0.5rem !important; } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; } - .m-sm-3 { - margin: 1rem !important; } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; } - .m-sm-4 { - margin: 1.5rem !important; } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; } - .m-sm-5 { - margin: 3rem !important; } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; } - .p-sm-0 { - padding: 0 !important; } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; } - .p-sm-1 { - padding: 0.25rem !important; } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; } - .p-sm-2 { - padding: 0.5rem !important; } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; } - .p-sm-3 { - padding: 1rem !important; } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; } - .p-sm-4 { - padding: 1.5rem !important; } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; } - .p-sm-5 { - padding: 3rem !important; } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; } - .m-sm-n1 { - margin: -0.25rem !important; } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; } - .m-sm-n2 { - margin: -0.5rem !important; } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; } - .m-sm-n3 { - margin: -1rem !important; } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; } - .m-sm-n4 { - margin: -1.5rem !important; } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; } - .m-sm-n5 { - margin: -3rem !important; } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; } - .m-sm-auto { - margin: auto !important; } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; } } - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; } - .m-md-1 { - margin: 0.25rem !important; } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; } - .m-md-2 { - margin: 0.5rem !important; } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; } - .m-md-3 { - margin: 1rem !important; } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; } - .m-md-4 { - margin: 1.5rem !important; } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; } - .m-md-5 { - margin: 3rem !important; } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; } - .p-md-0 { - padding: 0 !important; } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; } - .p-md-1 { - padding: 0.25rem !important; } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; } - .p-md-2 { - padding: 0.5rem !important; } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; } - .p-md-3 { - padding: 1rem !important; } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; } - .p-md-4 { - padding: 1.5rem !important; } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; } - .p-md-5 { - padding: 3rem !important; } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; } - .m-md-n1 { - margin: -0.25rem !important; } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; } - .m-md-n2 { - margin: -0.5rem !important; } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; } - .m-md-n3 { - margin: -1rem !important; } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; } - .m-md-n4 { - margin: -1.5rem !important; } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; } - .m-md-n5 { - margin: -3rem !important; } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; } - .m-md-auto { - margin: auto !important; } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; } } - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; } - .m-lg-1 { - margin: 0.25rem !important; } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; } - .m-lg-2 { - margin: 0.5rem !important; } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; } - .m-lg-3 { - margin: 1rem !important; } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; } - .m-lg-4 { - margin: 1.5rem !important; } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; } - .m-lg-5 { - margin: 3rem !important; } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; } - .p-lg-0 { - padding: 0 !important; } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; } - .p-lg-1 { - padding: 0.25rem !important; } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; } - .p-lg-2 { - padding: 0.5rem !important; } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; } - .p-lg-3 { - padding: 1rem !important; } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; } - .p-lg-4 { - padding: 1.5rem !important; } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; } - .p-lg-5 { - padding: 3rem !important; } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; } - .m-lg-n1 { - margin: -0.25rem !important; } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; } - .m-lg-n2 { - margin: -0.5rem !important; } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; } - .m-lg-n3 { - margin: -1rem !important; } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; } - .m-lg-n4 { - margin: -1.5rem !important; } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; } - .m-lg-n5 { - margin: -3rem !important; } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; } - .m-lg-auto { - margin: auto !important; } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; } } - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; } - .m-xl-1 { - margin: 0.25rem !important; } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; } - .m-xl-2 { - margin: 0.5rem !important; } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; } - .m-xl-3 { - margin: 1rem !important; } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; } - .m-xl-4 { - margin: 1.5rem !important; } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; } - .m-xl-5 { - margin: 3rem !important; } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; } - .p-xl-0 { - padding: 0 !important; } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; } - .p-xl-1 { - padding: 0.25rem !important; } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; } - .p-xl-2 { - padding: 0.5rem !important; } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; } - .p-xl-3 { - padding: 1rem !important; } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; } - .p-xl-4 { - padding: 1.5rem !important; } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; } - .p-xl-5 { - padding: 3rem !important; } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; } - .m-xl-n1 { - margin: -0.25rem !important; } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; } - .m-xl-n2 { - margin: -0.5rem !important; } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; } - .m-xl-n3 { - margin: -1rem !important; } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; } - .m-xl-n4 { - margin: -1.5rem !important; } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; } - .m-xl-n5 { - margin: -3rem !important; } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; } - .m-xl-auto { - margin: auto !important; } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; } } diff --git a/static/css/core/bootstrap/bootstrap-reboot.css b/static/css/core/bootstrap/bootstrap-reboot.css deleted file mode 100644 index 48430a8..0000000 --- a/static/css/core/bootstrap/bootstrap-reboot.css +++ /dev/null @@ -1,267 +0,0 @@ -/*! - * Bootstrap Reboot v4.5.0 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) - */ -*, -*::before, -*::after { - box-sizing: border-box; } - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; } - -body { - margin: 0; - font-family: -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-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; } - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; } - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; } - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; } - -p { - margin-top: 0; - margin-bottom: 1rem; } - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; } - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; } - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; } - -dt { - font-weight: 700; } - -dd { - margin-bottom: .5rem; - margin-left: 0; } - -blockquote { - margin: 0 0 1rem; } - -b, -strong { - font-weight: bolder; } - -small { - font-size: 80%; } - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; } - -sub { - bottom: -.25em; } - -sup { - top: -.5em; } - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; } - a:hover { - color: #0056b3; - text-decoration: underline; } - -a:not([href]) { - color: inherit; - text-decoration: none; } - a:not([href]):hover { - color: inherit; - text-decoration: none; } - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em; } - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; } - -figure { - margin: 0 0 1rem; } - -img { - vertical-align: middle; - border-style: none; } - -svg { - overflow: hidden; - vertical-align: middle; } - -table { - border-collapse: collapse; } - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; } - -th { - text-align: inherit; } - -label { - display: inline-block; - margin-bottom: 0.5rem; } - -button { - border-radius: 0; } - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; } - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -button, -input { - overflow: visible; } - -button, -select { - text-transform: none; } - -[role="button"] { - cursor: pointer; } - -select { - word-wrap: normal; } - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; } - -button:not(:disabled), -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled) { - cursor: pointer; } - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; } - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; } - -textarea { - overflow: auto; - resize: vertical; } - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; } - @media (max-width: 1200px) { - legend { - font-size: calc(1.275rem + 0.3vw) ; } } - -progress { - vertical-align: baseline; } - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; } - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; } - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; } - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - -output { - display: inline-block; } - -summary { - display: list-item; - cursor: pointer; } - -template { - display: none; } - -[hidden] { - display: none !important; } diff --git a/static/css/core/bootstrap/bootstrap.css b/static/css/core/bootstrap/bootstrap.css deleted file mode 100644 index 39d626a..0000000 --- a/static/css/core/bootstrap/bootstrap.css +++ /dev/null @@ -1,7192 +0,0 @@ -/*! - * Bootstrap v4.5.0 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -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-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - -*, -*::before, -*::after { - box-sizing: border-box; } - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; } - -body { - margin: 0; - font-family: -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-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; } - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; } - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; } - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; } - -p { - margin-top: 0; - margin-bottom: 1rem; } - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; } - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; } - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; } - -dt { - font-weight: 700; } - -dd { - margin-bottom: .5rem; - margin-left: 0; } - -blockquote { - margin: 0 0 1rem; } - -b, -strong { - font-weight: bolder; } - -small { - font-size: 80%; } - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; } - -sub { - bottom: -.25em; } - -sup { - top: -.5em; } - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; } - a:hover { - color: #0056b3; - text-decoration: underline; } - -a:not([href]) { - color: inherit; - text-decoration: none; } - a:not([href]):hover { - color: inherit; - text-decoration: none; } - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em; } - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; } - -figure { - margin: 0 0 1rem; } - -img { - vertical-align: middle; - border-style: none; } - -svg { - overflow: hidden; - vertical-align: middle; } - -table { - border-collapse: collapse; } - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; } - -th { - text-align: inherit; } - -label { - display: inline-block; - margin-bottom: 0.5rem; } - -button { - border-radius: 0; } - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; } - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -button, -input { - overflow: visible; } - -button, -select { - text-transform: none; } - -[role="button"] { - cursor: pointer; } - -select { - word-wrap: normal; } - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; } - -button:not(:disabled), -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled) { - cursor: pointer; } - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; } - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; } - -textarea { - overflow: auto; - resize: vertical; } - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; } - @media (max-width: 1200px) { - legend { - font-size: calc(1.275rem + 0.3vw) ; } } - -progress { - vertical-align: baseline; } - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; } - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; } - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; } - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - -output { - display: inline-block; } - -summary { - display: list-item; - cursor: pointer; } - -template { - display: none; } - -[hidden] { - display: none !important; } - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - -h1, .h1 { - font-size: 2.5rem; } - @media (max-width: 1200px) { - h1, .h1 { - font-size: calc(1.375rem + 1.5vw) ; } } - -h2, .h2 { - font-size: 2rem; } - @media (max-width: 1200px) { - h2, .h2 { - font-size: calc(1.325rem + 0.9vw) ; } } - -h3, .h3 { - font-size: 1.75rem; } - @media (max-width: 1200px) { - h3, .h3 { - font-size: calc(1.3rem + 0.6vw) ; } } - -h4, .h4 { - font-size: 1.5rem; } - @media (max-width: 1200px) { - h4, .h4 { - font-size: calc(1.275rem + 0.3vw) ; } } - -h5, .h5 { - font-size: 1.25rem; } - -h6, .h6 { - font-size: 1rem; } - -.lead { - font-size: 1.25rem; - font-weight: 300; } - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; } - @media (max-width: 1200px) { - .display-1 { - font-size: calc(1.725rem + 5.7vw) ; } } - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; } - @media (max-width: 1200px) { - .display-2 { - font-size: calc(1.675rem + 5.1vw) ; } } - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; } - @media (max-width: 1200px) { - .display-3 { - font-size: calc(1.575rem + 3.9vw) ; } } - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; } - @media (max-width: 1200px) { - .display-4 { - font-size: calc(1.475rem + 2.7vw) ; } } - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); } - -small, -.small { - font-size: 80%; - font-weight: 400; } - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; } - -.list-unstyled { - padding-left: 0; - list-style: none; } - -.list-inline { - padding-left: 0; - list-style: none; } - -.list-inline-item { - display: inline-block; } - .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - -.initialism { - font-size: 90%; - text-transform: uppercase; } - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; } - .blockquote-footer::before { - content: "\2014\00A0"; } - -.img-fluid { - max-width: 100%; - height: auto; } - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; } - -.figure { - display: inline-block; } - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; } - -.figure-caption { - font-size: 90%; - color: #6c757d; } - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; } - a > code { - color: inherit; } - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; } - -pre { - display: block; - font-size: 87.5%; - color: #212529; } - pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; } - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - @media (min-width: 576px) { - .container { - max-width: 540px; } } - @media (min-width: 768px) { - .container { - max-width: 720px; } } - @media (min-width: 992px) { - .container { - max-width: 960px; } } - @media (min-width: 1200px) { - .container { - max-width: 1140px; } } - -.container-fluid, .container-sm, .container-md, .container-lg, .container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - -@media (min-width: 576px) { - .container, .container-sm { - max-width: 540px; } } - -@media (min-width: 768px) { - .container, .container-sm, .container-md { - max-width: 720px; } } - -@media (min-width: 992px) { - .container, .container-sm, .container-md, .container-lg { - max-width: 960px; } } - -@media (min-width: 1200px) { - .container, .container-sm, .container-md, .container-lg, .container-xl { - max-width: 1140px; } } - -.row { - display: flex; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; } - -.no-gutters { - margin-right: 0; - margin-left: 0; } - .no-gutters > .col, - .no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; } - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; } - -.col { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; } - -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; } - -.row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; } - -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; } - -.row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - -.col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - -.col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - -.col-3 { - flex: 0 0 25%; - max-width: 25%; } - -.col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - -.col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - -.col-6 { - flex: 0 0 50%; - max-width: 50%; } - -.col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - -.col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - -.col-9 { - flex: 0 0 75%; - max-width: 75%; } - -.col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - -.col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - -.col-12 { - flex: 0 0 100%; - max-width: 100%; } - -.order-first { - order: -1; } - -.order-last { - order: 13; } - -.order-0 { - order: 0; } - -.order-1 { - order: 1; } - -.order-2 { - order: 2; } - -.order-3 { - order: 3; } - -.order-4 { - order: 4; } - -.order-5 { - order: 5; } - -.order-6 { - order: 6; } - -.order-7 { - order: 7; } - -.order-8 { - order: 8; } - -.order-9 { - order: 9; } - -.order-10 { - order: 10; } - -.order-11 { - order: 11; } - -.order-12 { - order: 12; } - -.offset-1 { - margin-left: 8.33333%; } - -.offset-2 { - margin-left: 16.66667%; } - -.offset-3 { - margin-left: 25%; } - -.offset-4 { - margin-left: 33.33333%; } - -.offset-5 { - margin-left: 41.66667%; } - -.offset-6 { - margin-left: 50%; } - -.offset-7 { - margin-left: 58.33333%; } - -.offset-8 { - margin-left: 66.66667%; } - -.offset-9 { - margin-left: 75%; } - -.offset-10 { - margin-left: 83.33333%; } - -.offset-11 { - margin-left: 91.66667%; } - -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-sm-first { - order: -1; } - .order-sm-last { - order: 13; } - .order-sm-0 { - order: 0; } - .order-sm-1 { - order: 1; } - .order-sm-2 { - order: 2; } - .order-sm-3 { - order: 3; } - .order-sm-4 { - order: 4; } - .order-sm-5 { - order: 5; } - .order-sm-6 { - order: 6; } - .order-sm-7 { - order: 7; } - .order-sm-8 { - order: 8; } - .order-sm-9 { - order: 9; } - .order-sm-10 { - order: 10; } - .order-sm-11 { - order: 11; } - .order-sm-12 { - order: 12; } - .offset-sm-0 { - margin-left: 0; } - .offset-sm-1 { - margin-left: 8.33333%; } - .offset-sm-2 { - margin-left: 16.66667%; } - .offset-sm-3 { - margin-left: 25%; } - .offset-sm-4 { - margin-left: 33.33333%; } - .offset-sm-5 { - margin-left: 41.66667%; } - .offset-sm-6 { - margin-left: 50%; } - .offset-sm-7 { - margin-left: 58.33333%; } - .offset-sm-8 { - margin-left: 66.66667%; } - .offset-sm-9 { - margin-left: 75%; } - .offset-sm-10 { - margin-left: 83.33333%; } - .offset-sm-11 { - margin-left: 91.66667%; } } - -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-md-first { - order: -1; } - .order-md-last { - order: 13; } - .order-md-0 { - order: 0; } - .order-md-1 { - order: 1; } - .order-md-2 { - order: 2; } - .order-md-3 { - order: 3; } - .order-md-4 { - order: 4; } - .order-md-5 { - order: 5; } - .order-md-6 { - order: 6; } - .order-md-7 { - order: 7; } - .order-md-8 { - order: 8; } - .order-md-9 { - order: 9; } - .order-md-10 { - order: 10; } - .order-md-11 { - order: 11; } - .order-md-12 { - order: 12; } - .offset-md-0 { - margin-left: 0; } - .offset-md-1 { - margin-left: 8.33333%; } - .offset-md-2 { - margin-left: 16.66667%; } - .offset-md-3 { - margin-left: 25%; } - .offset-md-4 { - margin-left: 33.33333%; } - .offset-md-5 { - margin-left: 41.66667%; } - .offset-md-6 { - margin-left: 50%; } - .offset-md-7 { - margin-left: 58.33333%; } - .offset-md-8 { - margin-left: 66.66667%; } - .offset-md-9 { - margin-left: 75%; } - .offset-md-10 { - margin-left: 83.33333%; } - .offset-md-11 { - margin-left: 91.66667%; } } - -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-lg-first { - order: -1; } - .order-lg-last { - order: 13; } - .order-lg-0 { - order: 0; } - .order-lg-1 { - order: 1; } - .order-lg-2 { - order: 2; } - .order-lg-3 { - order: 3; } - .order-lg-4 { - order: 4; } - .order-lg-5 { - order: 5; } - .order-lg-6 { - order: 6; } - .order-lg-7 { - order: 7; } - .order-lg-8 { - order: 8; } - .order-lg-9 { - order: 9; } - .order-lg-10 { - order: 10; } - .order-lg-11 { - order: 11; } - .order-lg-12 { - order: 12; } - .offset-lg-0 { - margin-left: 0; } - .offset-lg-1 { - margin-left: 8.33333%; } - .offset-lg-2 { - margin-left: 16.66667%; } - .offset-lg-3 { - margin-left: 25%; } - .offset-lg-4 { - margin-left: 33.33333%; } - .offset-lg-5 { - margin-left: 41.66667%; } - .offset-lg-6 { - margin-left: 50%; } - .offset-lg-7 { - margin-left: 58.33333%; } - .offset-lg-8 { - margin-left: 66.66667%; } - .offset-lg-9 { - margin-left: 75%; } - .offset-lg-10 { - margin-left: 83.33333%; } - .offset-lg-11 { - margin-left: 91.66667%; } } - -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; } - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-xl-first { - order: -1; } - .order-xl-last { - order: 13; } - .order-xl-0 { - order: 0; } - .order-xl-1 { - order: 1; } - .order-xl-2 { - order: 2; } - .order-xl-3 { - order: 3; } - .order-xl-4 { - order: 4; } - .order-xl-5 { - order: 5; } - .order-xl-6 { - order: 6; } - .order-xl-7 { - order: 7; } - .order-xl-8 { - order: 8; } - .order-xl-9 { - order: 9; } - .order-xl-10 { - order: 10; } - .order-xl-11 { - order: 11; } - .order-xl-12 { - order: 12; } - .offset-xl-0 { - margin-left: 0; } - .offset-xl-1 { - margin-left: 8.33333%; } - .offset-xl-2 { - margin-left: 16.66667%; } - .offset-xl-3 { - margin-left: 25%; } - .offset-xl-4 { - margin-left: 33.33333%; } - .offset-xl-5 { - margin-left: 41.66667%; } - .offset-xl-6 { - margin-left: 50%; } - .offset-xl-7 { - margin-left: 58.33333%; } - .offset-xl-8 { - margin-left: 66.66667%; } - .offset-xl-9 { - margin-left: 75%; } - .offset-xl-10 { - margin-left: 83.33333%; } - .offset-xl-11 { - margin-left: 91.66667%; } } - -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529; } - .table th, - .table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; } - .table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; } - .table tbody + tbody { - border-top: 2px solid #dee2e6; } - -.table-sm th, -.table-sm td { - padding: 0.3rem; } - -.table-bordered { - border: 1px solid #dee2e6; } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6; } - .table-bordered thead th, - .table-bordered thead td { - border-bottom-width: 2px; } - -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; } - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); } - -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, 0.075); } - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; } - -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #7abaff; } - -.table-hover .table-primary:hover { - background-color: #9fcdff; } - .table-hover .table-primary:hover > td, - .table-hover .table-primary:hover > th { - background-color: #9fcdff; } - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; } - -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #b3b7bb; } - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; } - .table-hover .table-secondary:hover > td, - .table-hover .table-secondary:hover > th { - background-color: #c8cbcf; } - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; } - -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #8fd19e; } - -.table-hover .table-success:hover { - background-color: #b1dfbb; } - .table-hover .table-success:hover > td, - .table-hover .table-success:hover > th { - background-color: #b1dfbb; } - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; } - -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #86cfda; } - -.table-hover .table-info:hover { - background-color: #abdde5; } - .table-hover .table-info:hover > td, - .table-hover .table-info:hover > th { - background-color: #abdde5; } - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; } - -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; } - -.table-hover .table-warning:hover { - background-color: #ffe8a1; } - .table-hover .table-warning:hover > td, - .table-hover .table-warning:hover > th { - background-color: #ffe8a1; } - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; } - -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #ed969e; } - -.table-hover .table-danger:hover { - background-color: #f1b0b7; } - .table-hover .table-danger:hover > td, - .table-hover .table-danger:hover > th { - background-color: #f1b0b7; } - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; } - -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #fbfcfc; } - -.table-hover .table-light:hover { - background-color: #ececf6; } - .table-hover .table-light:hover > td, - .table-hover .table-light:hover > th { - background-color: #ececf6; } - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; } - -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #95999c; } - -.table-hover .table-dark:hover { - background-color: #b9bbbe; } - .table-hover .table-dark:hover > td, - .table-hover .table-dark:hover > th { - background-color: #b9bbbe; } - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); } - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); } - .table-hover .table-active:hover > td, - .table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); } - -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55; } - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; } - -.table-dark { - color: #fff; - background-color: #343a40; } - .table-dark th, - .table-dark td, - .table-dark thead th { - border-color: #454d55; } - .table-dark.table-bordered { - border: 0; } - .table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); } - .table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, 0.075); } - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-sm > .table-bordered { - border: 0; } } - -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-md > .table-bordered { - border: 0; } } - -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-lg > .table-bordered { - border: 0; } } - -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-xl > .table-bordered { - border: 0; } } - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive > .table-bordered { - border: 0; } - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; } } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; } - .form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - -input[type="date"].form-control, -input[type="time"].form-control, -input[type="datetime-local"].form-control, -input[type="month"].form-control { - appearance: none; } - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; } - -.form-control-file, -.form-control-range { - display: block; - width: 100%; } - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; } - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; } - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } - -select.form-control[size], select.form-control[multiple] { - height: auto; } - -textarea.form-control { - height: auto; } - -.form-group { - margin-bottom: 1rem; } - -.form-text { - display: block; - margin-top: 0.25rem; } - -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; } - .form-row > .col, - .form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; } - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; } - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; } - .form-check-input[disabled] ~ .form-check-label, - .form-check-input:disabled ~ .form-check-label { - color: #6c757d; } - -.form-check-label { - margin-bottom: 0; } - -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; } - .form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; } - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; } - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, 0.9); - border-radius: 0.25rem; } - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; } - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #28a745; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #28a745; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; } - -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; } - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; } - .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #28a745; } - -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57; } - -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } - -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #28a745; } - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; } - -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; } - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; } - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; } - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; } - .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #dc3545; } - -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d; } - -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } - -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #dc3545; } - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; } - -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } - -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; } - .form-inline .form-check { - width: 100%; } - @media (min-width: 576px) { - .form-inline label { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; } - .form-inline .form-group { - display: flex; - flex: 0 0 auto; - flex-flow: row wrap; - align-items: center; - margin-bottom: 0; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .form-inline .form-control-plaintext { - display: inline-block; } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; } - .form-inline .custom-control { - align-items: center; - justify-content: center; } - .form-inline .custom-control-label { - margin-bottom: 0; } } - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .btn { - transition: none; } } - .btn:hover { - color: #212529; - text-decoration: none; } - .btn:focus, .btn.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .btn.disabled, .btn:disabled { - opacity: 0.65; } - .btn:not(:disabled):not(.disabled) { - cursor: pointer; } - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; } - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, - .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; } - .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; } - .btn-secondary:focus, .btn-secondary.focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } - .btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, - .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; } - .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, - .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } - .btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, - .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; } - .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, - .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } - .btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, - .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; } - .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, - .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; } - .btn-warning:focus, .btn-warning.focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } - .btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, - .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; } - .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, - .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } - .btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, - .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; } - .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, - .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; } - .btn-light:focus, .btn-light.focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } - .btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, - .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; } - .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, - .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; } - .btn-dark:focus, .btn-dark.focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } - .btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, - .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; } - .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, - .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } - -.btn-outline-primary { - color: #007bff; - border-color: #007bff; } - .btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - .btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; } - .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, - .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; } - .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, - .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - -.btn-outline-success { - color: #28a745; - border-color: #28a745; } - .btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-outline-success:focus, .btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - .btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; } - .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, - .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - .btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; } - .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, - .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:focus, .btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - .btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; } - .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, - .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:focus, .btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - .btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; } - .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, - .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - .btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; } - .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, - .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - -.btn-outline-dark { - color: #343a40; - border-color: #343a40; } - .btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - .btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; } - .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, - .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none; } - .btn-link:hover { - color: #0056b3; - text-decoration: underline; } - .btn-link:focus, .btn-link.focus { - text-decoration: underline; } - .btn-link:disabled, .btn-link.disabled { - color: #6c757d; - pointer-events: none; } - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } - -.btn-block { - display: block; - width: 100%; } - .btn-block + .btn-block { - margin-top: 0.5rem; } - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; } - -.fade { - transition: opacity 0.15s linear; } - @media (prefers-reduced-motion: reduce) { - .fade { - transition: none; } } - .fade:not(.show) { - opacity: 0; } - -.collapse:not(.show) { - display: none; } - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; } } - -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; } - -.dropdown-toggle { - white-space: nowrap; } - .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - -.dropdown-menu-left { - right: auto; - left: 0; } - -.dropdown-menu-right { - right: 0; - left: auto; } - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; } - .dropdown-menu-sm-right { - right: 0; - left: auto; } } - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; } - .dropdown-menu-md-right { - right: 0; - left: auto; } } - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; } - .dropdown-menu-lg-right { - right: 0; - left: auto; } } - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; } - .dropdown-menu-xl-right { - right: 0; - left: auto; } } - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - -.dropright .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropright .dropdown-toggle::after { - vertical-align: 0; } - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; } - -.dropleft .dropdown-toggle::after { - display: none; } - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropleft .dropdown-toggle::before { - vertical-align: 0; } - -.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { - right: auto; - bottom: auto; } - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; } - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; } - .dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; } - .dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; } - .dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; } - -.dropdown-menu.show { - display: block; } - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; } - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .btn-group > .btn:hover, - .btn-group-vertical > .btn:hover { - z-index: 1; } - .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 1; } - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .btn-toolbar .input-group { - width: auto; } - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .dropdown-toggle-split::after, - .dropup .dropdown-toggle-split::after, - .dropright .dropdown-toggle-split::after { - margin-left: 0; } - .dropleft .dropdown-toggle-split::before { - margin-right: 0; } - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .btn-group-vertical > .btn, - .btn-group-vertical > .btn-group { - width: 100%; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; } - .btn-group-toggle > .btn input[type="radio"], - .btn-group-toggle > .btn input[type="checkbox"], - .btn-group-toggle > .btn-group > .btn input[type="radio"], - .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .input-group > .form-control, - .input-group > .form-control-plaintext, - .input-group > .custom-select, - .input-group > .custom-file { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0; } - .input-group > .form-control + .form-control, - .input-group > .form-control + .custom-select, - .input-group > .form-control + .custom-file, - .input-group > .form-control-plaintext + .form-control, - .input-group > .form-control-plaintext + .custom-select, - .input-group > .form-control-plaintext + .custom-file, - .input-group > .custom-select + .form-control, - .input-group > .custom-select + .custom-select, - .input-group > .custom-select + .custom-file, - .input-group > .custom-file + .form-control, - .input-group > .custom-file + .custom-select, - .input-group > .custom-file + .custom-file { - margin-left: -1px; } - .input-group > .form-control:focus, - .input-group > .custom-select:focus, - .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; } - .input-group > .custom-file .custom-file-input:focus { - z-index: 4; } - .input-group > .form-control:not(:last-child), - .input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .input-group > .form-control:not(:first-child), - .input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .input-group > .custom-file { - display: flex; - align-items: center; } - .input-group > .custom-file:not(:last-child) .custom-file-label, - .input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.input-group-prepend, -.input-group-append { - display: flex; } - .input-group-prepend .btn, - .input-group-append .btn { - position: relative; - z-index: 2; } - .input-group-prepend .btn:focus, - .input-group-append .btn:focus { - z-index: 3; } - .input-group-prepend .btn + .btn, - .input-group-prepend .btn + .input-group-text, - .input-group-prepend .input-group-text + .input-group-text, - .input-group-prepend .input-group-text + .btn, - .input-group-append .btn + .btn, - .input-group-append .btn + .input-group-text, - .input-group-append .input-group-text + .input-group-text, - .input-group-append .input-group-text + .btn { - margin-left: -1px; } - -.input-group-prepend { - margin-right: -1px; } - -.input-group-append { - margin-left: -1px; } - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .input-group-text input[type="radio"], - .input-group-text input[type="checkbox"] { - margin-top: 0; } - -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(1.5em + 1rem + 2px); } - -.input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } - -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.5em + 0.5rem + 2px); } - -.input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } - -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; } - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.custom-control { - position: relative; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; } - -.custom-control-inline { - display: inline-flex; - margin-right: 1rem; } - -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0; } - .custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff; } - .custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #80bdff; } - .custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff; } - .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; } - .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; } - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; } - .custom-control-label::before { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px; } - .custom-control-label::after { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: no-repeat 50% / 50% 50%; } - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; } - -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); } - -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #007bff; - background-color: #007bff; } - -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } - -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } - -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } - -.custom-radio .custom-control-label::before { - border-radius: 50%; } - -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } - -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } - -.custom-switch { - padding-left: 2.25rem; } - .custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; } - .custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; } } - .custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - transform: translateX(0.75rem); } - .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - appearance: none; } - .custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; } - .custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; } - .custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .custom-select::-ms-expand { - display: none; } - .custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; } - -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin-bottom: 0; } - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin: 0; - opacity: 0; } - .custom-file-input:focus ~ .custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-file-input[disabled] ~ .custom-file-label, - .custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; } - .custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; } - .custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); } - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 0.25rem 0.25rem 0; } - -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - appearance: none; } - .custom-range:focus { - outline: none; } - .custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range::-moz-focus-outer { - border: 0; } - .custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; } } - .custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff; } - .custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; } } - .custom-range::-moz-range-thumb:active { - background-color: #b3d7ff; } - .custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; } } - .custom-range::-ms-thumb:active { - background-color: #b3d7ff; } - .custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; } - .custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem; } - .custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem; } - .custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; } - .custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .custom-range:disabled::-moz-range-track { - cursor: default; } - .custom-range:disabled::-ms-thumb { - background-color: #adb5bd; } - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none; } } - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - -.nav-link { - display: block; - padding: 0.5rem 1rem; } - .nav-link:hover, .nav-link:focus { - text-decoration: none; } - .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - -.nav-tabs { - border-bottom: 1px solid #dee2e6; } - .nav-tabs .nav-item { - margin-bottom: -1px; } - .nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .nav-tabs .nav-link.active, - .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.nav-pills .nav-link { - border-radius: 0.25rem; } - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; } - -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: 0.5rem 1rem; } - .navbar .container, - .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; } - -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } - -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .navbar-nav .dropdown-menu { - position: static; - float: none; } - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; } - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; } - .navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; } - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; } - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; } } - -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-sm .navbar-toggler { - display: none; } } - -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; } } - -@media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-md .navbar-nav { - flex-direction: row; } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-md .navbar-toggler { - display: none; } } - -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; } } - -@media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-lg .navbar-toggler { - display: none; } } - -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; } } - -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xl .navbar-toggler { - display: none; } } - -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand > .container, - .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; } - .navbar-expand .navbar-nav { - flex-direction: row; } - .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand > .container, - .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { - flex-wrap: nowrap; } - .navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand .navbar-toggler { - display: none; } - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); } - .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); } - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); } - .navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-dark .navbar-brand { - color: #fff; } - .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; } - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); } - .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); } - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); } - .navbar-dark .navbar-text a { - color: #fff; } - .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; } - -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .card > hr { - margin-right: 0; - margin-left: 0; } - .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - -.card-body { - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem; } - -.card-title { - margin-bottom: 0.75rem; } - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; } - -.card-text:last-child { - margin-bottom: 0; } - -.card-link:hover { - text-decoration: none; } - -.card-link + .card-link { - margin-left: 1.25rem; } - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - .card-header + .list-group .list-group-item:first-child { - border-top: 0; } - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; } - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; } - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; } - -.card-img, -.card-img-top, -.card-img-bottom { - flex-shrink: 0; - width: 100%; } - -.card-img, -.card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - -.card-deck .card { - margin-bottom: 15px; } - -@media (min-width: 576px) { - .card-deck { - display: flex; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; } - .card-deck .card { - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; } } - -.card-group > .card { - margin-bottom: 15px; } - -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - -.card-columns .card { - margin-bottom: 0.75rem; } - -@media (min-width: 576px) { - .card-columns { - column-count: 3; - column-gap: 1.25rem; - orphans: 1; - widows: 1; } - .card-columns .card { - display: inline-block; - width: 100%; } } - -.accordion > .card { - overflow: hidden; } - .accordion > .card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .accordion > .card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .accordion > .card > .card-header { - border-radius: 0; - margin-bottom: -1px; } - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; } - -.breadcrumb-item { - display: flex; } - .breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; } - .breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - color: #6c757d; - content: "/"; } - .breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; } - .breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; } - .breadcrumb-item.active { - color: #6c757d; } - -.pagination { - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; } - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; } - .page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; } - .page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; } - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #007bff; - border-color: #007bff; } - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; } - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; } - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; } - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; } - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; } - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; } - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .badge { - transition: none; } } - a.badge:hover, a.badge:focus { - text-decoration: none; } - .badge:empty { - display: none; } - -.btn .badge { - position: relative; - top: -1px; } - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; } - -.badge-primary { - color: #fff; - background-color: #007bff; } - a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #0062cc; } - a.badge-primary:focus, a.badge-primary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - -.badge-secondary { - color: #fff; - background-color: #6c757d; } - a.badge-secondary:hover, a.badge-secondary:focus { - color: #fff; - background-color: #545b62; } - a.badge-secondary:focus, a.badge-secondary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - -.badge-success { - color: #fff; - background-color: #28a745; } - a.badge-success:hover, a.badge-success:focus { - color: #fff; - background-color: #1e7e34; } - a.badge-success:focus, a.badge-success.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - -.badge-info { - color: #fff; - background-color: #17a2b8; } - a.badge-info:hover, a.badge-info:focus { - color: #fff; - background-color: #117a8b; } - a.badge-info:focus, a.badge-info.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - -.badge-warning { - color: #212529; - background-color: #ffc107; } - a.badge-warning:hover, a.badge-warning:focus { - color: #212529; - background-color: #d39e00; } - a.badge-warning:focus, a.badge-warning.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - -.badge-danger { - color: #fff; - background-color: #dc3545; } - a.badge-danger:hover, a.badge-danger:focus { - color: #fff; - background-color: #bd2130; } - a.badge-danger:focus, a.badge-danger.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - -.badge-light { - color: #212529; - background-color: #f8f9fa; } - a.badge-light:hover, a.badge-light:focus { - color: #212529; - background-color: #dae0e5; } - a.badge-light:focus, a.badge-light.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - -.badge-dark { - color: #fff; - background-color: #343a40; } - a.badge-dark:hover, a.badge-dark:focus { - color: #fff; - background-color: #1d2124; } - a.badge-dark:focus, a.badge-dark.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; } - @media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; } } - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; } - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; } - -.alert-heading { - color: inherit; } - -.alert-link { - font-weight: 700; } - -.alert-dismissible { - padding-right: 4rem; } - .alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; } - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; } - .alert-primary hr { - border-top-color: #9fcdff; } - .alert-primary .alert-link { - color: #002752; } - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; } - .alert-secondary hr { - border-top-color: #c8cbcf; } - .alert-secondary .alert-link { - color: #202326; } - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; } - .alert-success hr { - border-top-color: #b1dfbb; } - .alert-success .alert-link { - color: #0b2e13; } - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; } - .alert-info hr { - border-top-color: #abdde5; } - .alert-info .alert-link { - color: #062c33; } - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; } - .alert-warning hr { - border-top-color: #ffe8a1; } - .alert-warning .alert-link { - color: #533f03; } - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; } - .alert-danger hr { - border-top-color: #f1b0b7; } - .alert-danger .alert-link { - color: #491217; } - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; } - .alert-light hr { - border-top-color: #ececf6; } - .alert-light .alert-link { - color: #686868; } - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; } - .alert-dark hr { - border-top-color: #b9bbbe; } - .alert-dark .alert-link { - color: #040505; } - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; } - to { - background-position: 0 0; } } - -.progress { - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; } - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; } } - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; } - -.progress-bar-animated { - animation: progress-bar-stripes 1s linear infinite; } - @media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; } } - -.media { - display: flex; - align-items: flex-start; } - -.media-body { - flex: 1; } - -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .list-group-item + .list-group-item { - border-top-width: 0; } - .list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - -.list-group-horizontal { - flex-direction: row; } - .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -.list-group-flush { - border-radius: 0; } - .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; } - .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; } - .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; } - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; } - .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; } - .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; } - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; } - .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; } - .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; } - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; } - .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; } - .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; } - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; } - .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; } - .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; } - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; } - .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; } - .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; } - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; } - .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; } - .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; } - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; } - .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; } - .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; } - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; } - @media (max-width: 1200px) { - .close { - font-size: calc(1.275rem + 0.3vw) ; } } - .close:hover { - color: #000; - text-decoration: none; } - .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { - opacity: .75; } - -button.close { - padding: 0; - background-color: transparent; - border: 0; } - -a.close.disabled { - pointer-events: none; } - -.toast { - max-width: 350px; - overflow: hidden; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - backdrop-filter: blur(10px); - opacity: 0; - border-radius: 0.25rem; } - .toast:not(:last-child) { - margin-bottom: 0.75rem; } - .toast.showing { - opacity: 1; } - .toast.show { - display: block; - opacity: 1; } - .toast.hide { - display: none; } - -.toast-header { - display: flex; - align-items: center; - padding: 0.25rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); } - -.toast-body { - padding: 0.75rem; } - -.modal-open { - overflow: hidden; } - .modal-open .modal { - overflow-x: hidden; - overflow-y: auto; } - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; } - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; } - .modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); } - @media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; } } - .modal.show .modal-dialog { - transform: none; } - .modal.modal-static .modal-dialog { - transform: scale(1.02); } - -.modal-dialog-scrollable { - display: flex; - max-height: calc(100% - 1rem); } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; } - .modal-dialog-scrollable .modal-header, - .modal-dialog-scrollable .modal-footer { - flex-shrink: 0; } - .modal-dialog-scrollable .modal-body { - overflow-y: auto; } - -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); } - .modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: min-content; - content: ""; } - .modal-dialog-centered.modal-dialog-scrollable { - flex-direction: column; - justify-content: center; - height: 100%; } - .modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; } - .modal-dialog-centered.modal-dialog-scrollable::before { - content: none; } - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; } - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; } - .modal-backdrop.fade { - opacity: 0; } - .modal-backdrop.show { - opacity: 0.5; } - -.modal-header { - display: flex; - align-items: flex-start; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; } - -.modal-title { - margin-bottom: 0; - line-height: 1.5; } - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; } - -.modal-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); } - .modal-footer > * { - margin: 0.25rem; } - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; } - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; } - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); } - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: min-content; } - .modal-sm { - max-width: 300px; } } - -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; } } - -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; } } - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -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-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .tooltip.show { - opacity: 0.9; } - .tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; } - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; } - .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; } - .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; } - .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; } - .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; } - .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; } - .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -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-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; } - -.bs-popover-top, .bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; } - .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { - bottom: calc(-0.5rem - 1px); } - .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - -.bs-popover-right, .bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; } - .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - -.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; } - .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { - top: calc(-0.5rem - 1px); } - .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; } - -.bs-popover-left, .bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; } - .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .popover-header:empty { - display: none; } - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; } - -.carousel { - position: relative; } - -.carousel.pointer-event { - touch-action: pan-y; } - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner::after { - display: block; - clear: both; - content: ""; } - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; } } - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; } - -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - transform: translateX(100%); } - -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - transform: translateX(-100%); } - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; } - -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; - opacity: 1; } - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; } - @media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; } } - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; - transition: opacity 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; } } - .carousel-control-prev:hover, .carousel-control-prev:focus, - .carousel-control-next:hover, - .carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; } - -.carousel-control-prev { - left: 0; } - -.carousel-control-next { - right: 0; } - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: no-repeat 50% / 100% 100%; } - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); } - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); } - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: flex; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; } - .carousel-indicators li { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; } } - .carousel-indicators .active { - opacity: 1; } - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; } - -@keyframes spinner-border { - to { - transform: rotate(360deg); } } - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: spinner-border .75s linear infinite; } - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: spinner-grow .75s linear infinite; } - -.spinner-grow-sm { - width: 1rem; - height: 1rem; } - -.align-baseline { - vertical-align: baseline !important; } - -.align-top { - vertical-align: top !important; } - -.align-middle { - vertical-align: middle !important; } - -.align-bottom { - vertical-align: bottom !important; } - -.align-text-bottom { - vertical-align: text-bottom !important; } - -.align-text-top { - vertical-align: text-top !important; } - -.bg-primary { - background-color: #007bff !important; } - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; } - -.bg-secondary { - background-color: #6c757d !important; } - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; } - -.bg-success { - background-color: #28a745 !important; } - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; } - -.bg-info { - background-color: #17a2b8 !important; } - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; } - -.bg-warning { - background-color: #ffc107 !important; } - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; } - -.bg-danger { - background-color: #dc3545 !important; } - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; } - -.bg-light { - background-color: #f8f9fa !important; } - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; } - -.bg-dark { - background-color: #343a40 !important; } - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; } - -.bg-white { - background-color: #fff !important; } - -.bg-transparent { - background-color: transparent !important; } - -.border { - border: 1px solid #dee2e6 !important; } - -.border-top { - border-top: 1px solid #dee2e6 !important; } - -.border-right { - border-right: 1px solid #dee2e6 !important; } - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; } - -.border-left { - border-left: 1px solid #dee2e6 !important; } - -.border-0 { - border: 0 !important; } - -.border-top-0 { - border-top: 0 !important; } - -.border-right-0 { - border-right: 0 !important; } - -.border-bottom-0 { - border-bottom: 0 !important; } - -.border-left-0 { - border-left: 0 !important; } - -.border-primary { - border-color: #007bff !important; } - -.border-secondary { - border-color: #6c757d !important; } - -.border-success { - border-color: #28a745 !important; } - -.border-info { - border-color: #17a2b8 !important; } - -.border-warning { - border-color: #ffc107 !important; } - -.border-danger { - border-color: #dc3545 !important; } - -.border-light { - border-color: #f8f9fa !important; } - -.border-dark { - border-color: #343a40 !important; } - -.border-white { - border-color: #fff !important; } - -.rounded-sm { - border-radius: 0.2rem !important; } - -.rounded { - border-radius: 0.25rem !important; } - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; } - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; } - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } - -.rounded-lg { - border-radius: 0.3rem !important; } - -.rounded-circle { - border-radius: 50% !important; } - -.rounded-pill { - border-radius: 50rem !important; } - -.rounded-0 { - border-radius: 0 !important; } - -.clearfix::after { - display: block; - clear: both; - content: ""; } - -.d-none { - display: none !important; } - -.d-inline { - display: inline !important; } - -.d-inline-block { - display: inline-block !important; } - -.d-block { - display: block !important; } - -.d-table { - display: table !important; } - -.d-table-row { - display: table-row !important; } - -.d-table-cell { - display: table-cell !important; } - -.d-flex { - display: flex !important; } - -.d-inline-flex { - display: inline-flex !important; } - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; } - .d-sm-inline { - display: inline !important; } - .d-sm-inline-block { - display: inline-block !important; } - .d-sm-block { - display: block !important; } - .d-sm-table { - display: table !important; } - .d-sm-table-row { - display: table-row !important; } - .d-sm-table-cell { - display: table-cell !important; } - .d-sm-flex { - display: flex !important; } - .d-sm-inline-flex { - display: inline-flex !important; } } - -@media (min-width: 768px) { - .d-md-none { - display: none !important; } - .d-md-inline { - display: inline !important; } - .d-md-inline-block { - display: inline-block !important; } - .d-md-block { - display: block !important; } - .d-md-table { - display: table !important; } - .d-md-table-row { - display: table-row !important; } - .d-md-table-cell { - display: table-cell !important; } - .d-md-flex { - display: flex !important; } - .d-md-inline-flex { - display: inline-flex !important; } } - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; } - .d-lg-inline { - display: inline !important; } - .d-lg-inline-block { - display: inline-block !important; } - .d-lg-block { - display: block !important; } - .d-lg-table { - display: table !important; } - .d-lg-table-row { - display: table-row !important; } - .d-lg-table-cell { - display: table-cell !important; } - .d-lg-flex { - display: flex !important; } - .d-lg-inline-flex { - display: inline-flex !important; } } - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; } - .d-xl-inline { - display: inline !important; } - .d-xl-inline-block { - display: inline-block !important; } - .d-xl-block { - display: block !important; } - .d-xl-table { - display: table !important; } - .d-xl-table-row { - display: table-row !important; } - .d-xl-table-cell { - display: table-cell !important; } - .d-xl-flex { - display: flex !important; } - .d-xl-inline-flex { - display: inline-flex !important; } } - -@media print { - .d-print-none { - display: none !important; } - .d-print-inline { - display: inline !important; } - .d-print-inline-block { - display: inline-block !important; } - .d-print-block { - display: block !important; } - .d-print-table { - display: table !important; } - .d-print-table-row { - display: table-row !important; } - .d-print-table-cell { - display: table-cell !important; } - .d-print-flex { - display: flex !important; } - .d-print-inline-flex { - display: inline-flex !important; } } - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; } - .embed-responsive::before { - display: block; - content: ""; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } - -.embed-responsive-21by9::before { - padding-top: 42.85714%; } - -.embed-responsive-16by9::before { - padding-top: 56.25%; } - -.embed-responsive-4by3::before { - padding-top: 75%; } - -.embed-responsive-1by1::before { - padding-top: 100%; } - -.flex-row { - flex-direction: row !important; } - -.flex-column { - flex-direction: column !important; } - -.flex-row-reverse { - flex-direction: row-reverse !important; } - -.flex-column-reverse { - flex-direction: column-reverse !important; } - -.flex-wrap { - flex-wrap: wrap !important; } - -.flex-nowrap { - flex-wrap: nowrap !important; } - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; } - -.flex-fill { - flex: 1 1 auto !important; } - -.flex-grow-0 { - flex-grow: 0 !important; } - -.flex-grow-1 { - flex-grow: 1 !important; } - -.flex-shrink-0 { - flex-shrink: 0 !important; } - -.flex-shrink-1 { - flex-shrink: 1 !important; } - -.justify-content-start { - justify-content: flex-start !important; } - -.justify-content-end { - justify-content: flex-end !important; } - -.justify-content-center { - justify-content: center !important; } - -.justify-content-between { - justify-content: space-between !important; } - -.justify-content-around { - justify-content: space-around !important; } - -.align-items-start { - align-items: flex-start !important; } - -.align-items-end { - align-items: flex-end !important; } - -.align-items-center { - align-items: center !important; } - -.align-items-baseline { - align-items: baseline !important; } - -.align-items-stretch { - align-items: stretch !important; } - -.align-content-start { - align-content: flex-start !important; } - -.align-content-end { - align-content: flex-end !important; } - -.align-content-center { - align-content: center !important; } - -.align-content-between { - align-content: space-between !important; } - -.align-content-around { - align-content: space-around !important; } - -.align-content-stretch { - align-content: stretch !important; } - -.align-self-auto { - align-self: auto !important; } - -.align-self-start { - align-self: flex-start !important; } - -.align-self-end { - align-self: flex-end !important; } - -.align-self-center { - align-self: center !important; } - -.align-self-baseline { - align-self: baseline !important; } - -.align-self-stretch { - align-self: stretch !important; } - -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; } - .flex-sm-column { - flex-direction: column !important; } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; } - .flex-sm-wrap { - flex-wrap: wrap !important; } - .flex-sm-nowrap { - flex-wrap: nowrap !important; } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-sm-fill { - flex: 1 1 auto !important; } - .flex-sm-grow-0 { - flex-grow: 0 !important; } - .flex-sm-grow-1 { - flex-grow: 1 !important; } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-sm-start { - justify-content: flex-start !important; } - .justify-content-sm-end { - justify-content: flex-end !important; } - .justify-content-sm-center { - justify-content: center !important; } - .justify-content-sm-between { - justify-content: space-between !important; } - .justify-content-sm-around { - justify-content: space-around !important; } - .align-items-sm-start { - align-items: flex-start !important; } - .align-items-sm-end { - align-items: flex-end !important; } - .align-items-sm-center { - align-items: center !important; } - .align-items-sm-baseline { - align-items: baseline !important; } - .align-items-sm-stretch { - align-items: stretch !important; } - .align-content-sm-start { - align-content: flex-start !important; } - .align-content-sm-end { - align-content: flex-end !important; } - .align-content-sm-center { - align-content: center !important; } - .align-content-sm-between { - align-content: space-between !important; } - .align-content-sm-around { - align-content: space-around !important; } - .align-content-sm-stretch { - align-content: stretch !important; } - .align-self-sm-auto { - align-self: auto !important; } - .align-self-sm-start { - align-self: flex-start !important; } - .align-self-sm-end { - align-self: flex-end !important; } - .align-self-sm-center { - align-self: center !important; } - .align-self-sm-baseline { - align-self: baseline !important; } - .align-self-sm-stretch { - align-self: stretch !important; } } - -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; } - .flex-md-column { - flex-direction: column !important; } - .flex-md-row-reverse { - flex-direction: row-reverse !important; } - .flex-md-column-reverse { - flex-direction: column-reverse !important; } - .flex-md-wrap { - flex-wrap: wrap !important; } - .flex-md-nowrap { - flex-wrap: nowrap !important; } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-md-fill { - flex: 1 1 auto !important; } - .flex-md-grow-0 { - flex-grow: 0 !important; } - .flex-md-grow-1 { - flex-grow: 1 !important; } - .flex-md-shrink-0 { - flex-shrink: 0 !important; } - .flex-md-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-md-start { - justify-content: flex-start !important; } - .justify-content-md-end { - justify-content: flex-end !important; } - .justify-content-md-center { - justify-content: center !important; } - .justify-content-md-between { - justify-content: space-between !important; } - .justify-content-md-around { - justify-content: space-around !important; } - .align-items-md-start { - align-items: flex-start !important; } - .align-items-md-end { - align-items: flex-end !important; } - .align-items-md-center { - align-items: center !important; } - .align-items-md-baseline { - align-items: baseline !important; } - .align-items-md-stretch { - align-items: stretch !important; } - .align-content-md-start { - align-content: flex-start !important; } - .align-content-md-end { - align-content: flex-end !important; } - .align-content-md-center { - align-content: center !important; } - .align-content-md-between { - align-content: space-between !important; } - .align-content-md-around { - align-content: space-around !important; } - .align-content-md-stretch { - align-content: stretch !important; } - .align-self-md-auto { - align-self: auto !important; } - .align-self-md-start { - align-self: flex-start !important; } - .align-self-md-end { - align-self: flex-end !important; } - .align-self-md-center { - align-self: center !important; } - .align-self-md-baseline { - align-self: baseline !important; } - .align-self-md-stretch { - align-self: stretch !important; } } - -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; } - .flex-lg-column { - flex-direction: column !important; } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; } - .flex-lg-wrap { - flex-wrap: wrap !important; } - .flex-lg-nowrap { - flex-wrap: nowrap !important; } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-lg-fill { - flex: 1 1 auto !important; } - .flex-lg-grow-0 { - flex-grow: 0 !important; } - .flex-lg-grow-1 { - flex-grow: 1 !important; } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-lg-start { - justify-content: flex-start !important; } - .justify-content-lg-end { - justify-content: flex-end !important; } - .justify-content-lg-center { - justify-content: center !important; } - .justify-content-lg-between { - justify-content: space-between !important; } - .justify-content-lg-around { - justify-content: space-around !important; } - .align-items-lg-start { - align-items: flex-start !important; } - .align-items-lg-end { - align-items: flex-end !important; } - .align-items-lg-center { - align-items: center !important; } - .align-items-lg-baseline { - align-items: baseline !important; } - .align-items-lg-stretch { - align-items: stretch !important; } - .align-content-lg-start { - align-content: flex-start !important; } - .align-content-lg-end { - align-content: flex-end !important; } - .align-content-lg-center { - align-content: center !important; } - .align-content-lg-between { - align-content: space-between !important; } - .align-content-lg-around { - align-content: space-around !important; } - .align-content-lg-stretch { - align-content: stretch !important; } - .align-self-lg-auto { - align-self: auto !important; } - .align-self-lg-start { - align-self: flex-start !important; } - .align-self-lg-end { - align-self: flex-end !important; } - .align-self-lg-center { - align-self: center !important; } - .align-self-lg-baseline { - align-self: baseline !important; } - .align-self-lg-stretch { - align-self: stretch !important; } } - -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; } - .flex-xl-column { - flex-direction: column !important; } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xl-wrap { - flex-wrap: wrap !important; } - .flex-xl-nowrap { - flex-wrap: nowrap !important; } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-xl-fill { - flex: 1 1 auto !important; } - .flex-xl-grow-0 { - flex-grow: 0 !important; } - .flex-xl-grow-1 { - flex-grow: 1 !important; } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-xl-start { - justify-content: flex-start !important; } - .justify-content-xl-end { - justify-content: flex-end !important; } - .justify-content-xl-center { - justify-content: center !important; } - .justify-content-xl-between { - justify-content: space-between !important; } - .justify-content-xl-around { - justify-content: space-around !important; } - .align-items-xl-start { - align-items: flex-start !important; } - .align-items-xl-end { - align-items: flex-end !important; } - .align-items-xl-center { - align-items: center !important; } - .align-items-xl-baseline { - align-items: baseline !important; } - .align-items-xl-stretch { - align-items: stretch !important; } - .align-content-xl-start { - align-content: flex-start !important; } - .align-content-xl-end { - align-content: flex-end !important; } - .align-content-xl-center { - align-content: center !important; } - .align-content-xl-between { - align-content: space-between !important; } - .align-content-xl-around { - align-content: space-around !important; } - .align-content-xl-stretch { - align-content: stretch !important; } - .align-self-xl-auto { - align-self: auto !important; } - .align-self-xl-start { - align-self: flex-start !important; } - .align-self-xl-end { - align-self: flex-end !important; } - .align-self-xl-center { - align-self: center !important; } - .align-self-xl-baseline { - align-self: baseline !important; } - .align-self-xl-stretch { - align-self: stretch !important; } } - -.float-left { - float: left !important; } - -.float-right { - float: right !important; } - -.float-none { - float: none !important; } - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; } - .float-sm-right { - float: right !important; } - .float-sm-none { - float: none !important; } } - -@media (min-width: 768px) { - .float-md-left { - float: left !important; } - .float-md-right { - float: right !important; } - .float-md-none { - float: none !important; } } - -@media (min-width: 992px) { - .float-lg-left { - float: left !important; } - .float-lg-right { - float: right !important; } - .float-lg-none { - float: none !important; } } - -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; } - .float-xl-right { - float: right !important; } - .float-xl-none { - float: none !important; } } - -.user-select-all { - user-select: all !important; } - -.user-select-auto { - user-select: auto !important; } - -.user-select-none { - user-select: none !important; } - -.overflow-auto { - overflow: auto !important; } - -.overflow-hidden { - overflow: hidden !important; } - -.position-static { - position: static !important; } - -.position-relative { - position: relative !important; } - -.position-absolute { - position: absolute !important; } - -.position-fixed { - position: fixed !important; } - -.position-sticky { - position: sticky !important; } - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; } - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; } - -@supports (position: sticky) { - .sticky-top { - position: sticky; - top: 0; - z-index: 1020; } } - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; } - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; } - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } - -.shadow-none { - box-shadow: none !important; } - -.w-25 { - width: 25% !important; } - -.w-50 { - width: 50% !important; } - -.w-75 { - width: 75% !important; } - -.w-100 { - width: 100% !important; } - -.w-auto { - width: auto !important; } - -.h-25 { - height: 25% !important; } - -.h-50 { - height: 50% !important; } - -.h-75 { - height: 75% !important; } - -.h-100 { - height: 100% !important; } - -.h-auto { - height: auto !important; } - -.mw-100 { - max-width: 100% !important; } - -.mh-100 { - max-height: 100% !important; } - -.min-vw-100 { - min-width: 100vw !important; } - -.min-vh-100 { - min-height: 100vh !important; } - -.vw-100 { - width: 100vw !important; } - -.vh-100 { - height: 100vh !important; } - -.m-0 { - margin: 0 !important; } - -.mt-0, -.my-0 { - margin-top: 0 !important; } - -.mr-0, -.mx-0 { - margin-right: 0 !important; } - -.mb-0, -.my-0 { - margin-bottom: 0 !important; } - -.ml-0, -.mx-0 { - margin-left: 0 !important; } - -.m-1 { - margin: 0.25rem !important; } - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; } - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; } - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; } - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; } - -.m-2 { - margin: 0.5rem !important; } - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; } - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; } - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; } - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; } - -.m-3 { - margin: 1rem !important; } - -.mt-3, -.my-3 { - margin-top: 1rem !important; } - -.mr-3, -.mx-3 { - margin-right: 1rem !important; } - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; } - -.ml-3, -.mx-3 { - margin-left: 1rem !important; } - -.m-4 { - margin: 1.5rem !important; } - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; } - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; } - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; } - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; } - -.m-5 { - margin: 3rem !important; } - -.mt-5, -.my-5 { - margin-top: 3rem !important; } - -.mr-5, -.mx-5 { - margin-right: 3rem !important; } - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; } - -.ml-5, -.mx-5 { - margin-left: 3rem !important; } - -.p-0 { - padding: 0 !important; } - -.pt-0, -.py-0 { - padding-top: 0 !important; } - -.pr-0, -.px-0 { - padding-right: 0 !important; } - -.pb-0, -.py-0 { - padding-bottom: 0 !important; } - -.pl-0, -.px-0 { - padding-left: 0 !important; } - -.p-1 { - padding: 0.25rem !important; } - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; } - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; } - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; } - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; } - -.p-2 { - padding: 0.5rem !important; } - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; } - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; } - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; } - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; } - -.p-3 { - padding: 1rem !important; } - -.pt-3, -.py-3 { - padding-top: 1rem !important; } - -.pr-3, -.px-3 { - padding-right: 1rem !important; } - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; } - -.pl-3, -.px-3 { - padding-left: 1rem !important; } - -.p-4 { - padding: 1.5rem !important; } - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; } - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; } - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; } - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; } - -.p-5 { - padding: 3rem !important; } - -.pt-5, -.py-5 { - padding-top: 3rem !important; } - -.pr-5, -.px-5 { - padding-right: 3rem !important; } - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; } - -.pl-5, -.px-5 { - padding-left: 3rem !important; } - -.m-n1 { - margin: -0.25rem !important; } - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; } - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; } - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; } - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; } - -.m-n2 { - margin: -0.5rem !important; } - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; } - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; } - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; } - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; } - -.m-n3 { - margin: -1rem !important; } - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; } - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; } - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; } - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; } - -.m-n4 { - margin: -1.5rem !important; } - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; } - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; } - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; } - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; } - -.m-n5 { - margin: -3rem !important; } - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; } - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; } - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; } - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; } - -.m-auto { - margin: auto !important; } - -.mt-auto, -.my-auto { - margin-top: auto !important; } - -.mr-auto, -.mx-auto { - margin-right: auto !important; } - -.mb-auto, -.my-auto { - margin-bottom: auto !important; } - -.ml-auto, -.mx-auto { - margin-left: auto !important; } - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; } - .m-sm-1 { - margin: 0.25rem !important; } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; } - .m-sm-2 { - margin: 0.5rem !important; } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; } - .m-sm-3 { - margin: 1rem !important; } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; } - .m-sm-4 { - margin: 1.5rem !important; } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; } - .m-sm-5 { - margin: 3rem !important; } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; } - .p-sm-0 { - padding: 0 !important; } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; } - .p-sm-1 { - padding: 0.25rem !important; } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; } - .p-sm-2 { - padding: 0.5rem !important; } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; } - .p-sm-3 { - padding: 1rem !important; } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; } - .p-sm-4 { - padding: 1.5rem !important; } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; } - .p-sm-5 { - padding: 3rem !important; } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; } - .m-sm-n1 { - margin: -0.25rem !important; } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; } - .m-sm-n2 { - margin: -0.5rem !important; } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; } - .m-sm-n3 { - margin: -1rem !important; } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; } - .m-sm-n4 { - margin: -1.5rem !important; } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; } - .m-sm-n5 { - margin: -3rem !important; } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; } - .m-sm-auto { - margin: auto !important; } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; } } - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; } - .m-md-1 { - margin: 0.25rem !important; } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; } - .m-md-2 { - margin: 0.5rem !important; } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; } - .m-md-3 { - margin: 1rem !important; } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; } - .m-md-4 { - margin: 1.5rem !important; } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; } - .m-md-5 { - margin: 3rem !important; } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; } - .p-md-0 { - padding: 0 !important; } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; } - .p-md-1 { - padding: 0.25rem !important; } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; } - .p-md-2 { - padding: 0.5rem !important; } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; } - .p-md-3 { - padding: 1rem !important; } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; } - .p-md-4 { - padding: 1.5rem !important; } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; } - .p-md-5 { - padding: 3rem !important; } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; } - .m-md-n1 { - margin: -0.25rem !important; } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; } - .m-md-n2 { - margin: -0.5rem !important; } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; } - .m-md-n3 { - margin: -1rem !important; } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; } - .m-md-n4 { - margin: -1.5rem !important; } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; } - .m-md-n5 { - margin: -3rem !important; } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; } - .m-md-auto { - margin: auto !important; } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; } } - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; } - .m-lg-1 { - margin: 0.25rem !important; } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; } - .m-lg-2 { - margin: 0.5rem !important; } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; } - .m-lg-3 { - margin: 1rem !important; } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; } - .m-lg-4 { - margin: 1.5rem !important; } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; } - .m-lg-5 { - margin: 3rem !important; } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; } - .p-lg-0 { - padding: 0 !important; } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; } - .p-lg-1 { - padding: 0.25rem !important; } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; } - .p-lg-2 { - padding: 0.5rem !important; } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; } - .p-lg-3 { - padding: 1rem !important; } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; } - .p-lg-4 { - padding: 1.5rem !important; } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; } - .p-lg-5 { - padding: 3rem !important; } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; } - .m-lg-n1 { - margin: -0.25rem !important; } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; } - .m-lg-n2 { - margin: -0.5rem !important; } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; } - .m-lg-n3 { - margin: -1rem !important; } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; } - .m-lg-n4 { - margin: -1.5rem !important; } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; } - .m-lg-n5 { - margin: -3rem !important; } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; } - .m-lg-auto { - margin: auto !important; } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; } } - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; } - .m-xl-1 { - margin: 0.25rem !important; } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; } - .m-xl-2 { - margin: 0.5rem !important; } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; } - .m-xl-3 { - margin: 1rem !important; } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; } - .m-xl-4 { - margin: 1.5rem !important; } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; } - .m-xl-5 { - margin: 3rem !important; } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; } - .p-xl-0 { - padding: 0 !important; } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; } - .p-xl-1 { - padding: 0.25rem !important; } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; } - .p-xl-2 { - padding: 0.5rem !important; } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; } - .p-xl-3 { - padding: 1rem !important; } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; } - .p-xl-4 { - padding: 1.5rem !important; } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; } - .p-xl-5 { - padding: 3rem !important; } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; } - .m-xl-n1 { - margin: -0.25rem !important; } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; } - .m-xl-n2 { - margin: -0.5rem !important; } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; } - .m-xl-n3 { - margin: -1rem !important; } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; } - .m-xl-n4 { - margin: -1.5rem !important; } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; } - .m-xl-n5 { - margin: -3rem !important; } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; } - .m-xl-auto { - margin: auto !important; } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; } } - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0); } - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } - -.text-justify { - text-align: justify !important; } - -.text-wrap { - white-space: normal !important; } - -.text-nowrap { - white-space: nowrap !important; } - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - -.text-left { - text-align: left !important; } - -.text-right { - text-align: right !important; } - -.text-center { - text-align: center !important; } - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; } - .text-sm-right { - text-align: right !important; } - .text-sm-center { - text-align: center !important; } } - -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; } - .text-md-right { - text-align: right !important; } - .text-md-center { - text-align: center !important; } } - -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; } - .text-lg-right { - text-align: right !important; } - .text-lg-center { - text-align: center !important; } } - -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; } - .text-xl-right { - text-align: right !important; } - .text-xl-center { - text-align: center !important; } } - -.text-lowercase { - text-transform: lowercase !important; } - -.text-uppercase { - text-transform: uppercase !important; } - -.text-capitalize { - text-transform: capitalize !important; } - -.font-weight-light { - font-weight: 300 !important; } - -.font-weight-lighter { - font-weight: lighter !important; } - -.font-weight-normal { - font-weight: 400 !important; } - -.font-weight-bold { - font-weight: 700 !important; } - -.font-weight-bolder { - font-weight: bolder !important; } - -.font-italic { - font-style: italic !important; } - -.text-white { - color: #fff !important; } - -.text-primary { - color: #007bff !important; } - -a.text-primary:hover, a.text-primary:focus { - color: #0056b3 !important; } - -.text-secondary { - color: #6c757d !important; } - -a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; } - -.text-success { - color: #28a745 !important; } - -a.text-success:hover, a.text-success:focus { - color: #19692c !important; } - -.text-info { - color: #17a2b8 !important; } - -a.text-info:hover, a.text-info:focus { - color: #0f6674 !important; } - -.text-warning { - color: #ffc107 !important; } - -a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; } - -.text-danger { - color: #dc3545 !important; } - -a.text-danger:hover, a.text-danger:focus { - color: #a71d2a !important; } - -.text-light { - color: #f8f9fa !important; } - -a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; } - -.text-dark { - color: #343a40 !important; } - -a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; } - -.text-body { - color: #212529 !important; } - -.text-muted { - color: #6c757d !important; } - -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; } - -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; } - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; } - -.text-decoration-none { - text-decoration: none !important; } - -.text-break { - word-wrap: break-word !important; } - -.text-reset { - color: inherit !important; } - -.visible { - visibility: visible !important; } - -.invisible { - visibility: hidden !important; } - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - box-shadow: none !important; } - a:not(.btn) { - text-decoration: underline; } - abbr[title]::after { - content: " (" attr(title) ")"; } - pre { - white-space: pre-wrap !important; } - pre, - blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; } - thead { - display: table-header-group; } - tr, - img { - page-break-inside: avoid; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } - @page { - size: a3; } - body { - min-width: 992px !important; } - .container { - min-width: 992px !important; } - .navbar { - display: none; } - .badge { - border: 1px solid #000; } - .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6 !important; } - .table-dark { - color: inherit; } - .table-dark th, - .table-dark td, - .table-dark thead th, - .table-dark tbody + tbody { - border-color: #dee2e6; } - .table .thead-dark th { - color: inherit; - border-color: #dee2e6; } } diff --git a/static/css/core/intro.css b/static/css/core/intro.css deleted file mode 100644 index 8b64e0a..0000000 --- a/static/css/core/intro.css +++ /dev/null @@ -1,10377 +0,0 @@ - -@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"); -:root { - --blue: #32bdea; - --indigo: #6610f2; - --purple: #4731b6; - --pink: #e83e8c; - --red: #e08db4; - --orange: #ff7e41; - --yellow: #ff9770; - --green: #78c091; - --teal: #20c997; - --cyan: #7ee2ff; - --white: #fff; - --gray: #6c757d; - --gray-dark: #01041b; - --skyblue: #158df7; - --primary: #32bdea; - --secondary: #ff7e41; - --success: #78c091; - --info: #7ee2ff; - --warning: #ff9770; - --danger: #e08db4; - --light: #c7cbd3; - --dark: #01041b; - --orange: #ff7e41; - --purple: #4731b6; - --skyblue: #158df7; - --light-gray: #f4f5fa; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -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-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, - "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block; -} - -body { - margin: 0; - font-family: "Lato", sans-serif; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #676e8a; - text-align: left; - background-color: #ffffff; -} - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: 0.5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -a { - color: #32bdea; - text-decoration: none; - background-color: transparent; -} -a:hover { - color: #1393bc; - text-decoration: none; -} - -a:not([href]) { - color: inherit; - text-decoration: none; -} -a:not([href]):hover { - color: inherit; - text-decoration: none; -} - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", - "Courier New", monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: 0.5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -[role="button"] { - cursor: pointer; -} - -select { - word-wrap: normal; -} - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button:not(:disabled), -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled) { - cursor: pointer; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} -@media (max-width: 1200px) { - legend { - font-size: calc(1.275rem + 0.3vw); - } -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; -} - -h1, -.h1 { - font-size: 2.488em; -} - -h2, -.h2 { - font-size: 2.074em; -} - -h3, -.h3 { - font-size: 1.728em; -} - -h4, -.h4 { - font-size: 1.44em; -} - -h5, -.h5 { - font-size: 1.2em; -} - -h6, -.h6 { - font-size: 1em; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-1 { - font-size: calc(1.725rem + 5.7vw); - } -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-2 { - font-size: calc(1.675rem + 5.1vw); - } -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-3 { - font-size: calc(1.575rem + 3.9vw); - } -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} -@media (max-width: 1200px) { - .display-4 { - font-size: calc(1.475rem + 2.7vw); - } -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer::before { - content: "\2014\00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #ffffff; - border: 1px solid #ccced2; - border-radius: 10px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 10px; - box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid, -.container-sm, -.container-md, -.container-lg, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 576px) { - .container, - .container-sm { - max-width: 540px; - } -} - -@media (min-width: 768px) { - .container, - .container-sm, - .container-md { - max-width: 720px; - } -} - -@media (min-width: 992px) { - .container, - .container-sm, - .container-md, - .container-lg { - max-width: 960px; - } -} - -@media (min-width: 1200px) { - .container, - .container-sm, - .container-md, - .container-lg, - .container-xl { - max-width: 1140px; - } -} - -.row { - display: flex; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12, -.col, -.col-auto, -.col-sm-1, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm, -.col-sm-auto, -.col-md-1, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md, -.col-md-auto, -.col-lg-1, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg, -.col-lg-auto, -.col-xl-1, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; -} - -.col { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; -} - -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; -} - -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; -} - -.row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; -} - -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; -} - -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; -} - -.row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; -} - -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; -} - -.col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; -} - -.col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; -} - -.col-3 { - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; -} - -.col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; -} - -.col-6 { - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; -} - -.col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; -} - -.col-9 { - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; -} - -.col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; -} - -.col-12 { - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - order: -1; -} - -.order-last { - order: 13; -} - -.order-0 { - order: 0; -} - -.order-1 { - order: 1; -} - -.order-2 { - order: 2; -} - -.order-3 { - order: 3; -} - -.order-4 { - order: 4; -} - -.order-5 { - order: 5; -} - -.order-6 { - order: 6; -} - -.order-7 { - order: 7; -} - -.order-8 { - order: 8; -} - -.order-9 { - order: 9; -} - -.order-10 { - order: 10; -} - -.order-11 { - order: 11; -} - -.order-12 { - order: 12; -} - -.offset-1 { - margin-left: 8.33333%; -} - -.offset-2 { - margin-left: 16.66667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.33333%; -} - -.offset-5 { - margin-left: 41.66667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.33333%; -} - -.offset-8 { - margin-left: 66.66667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.33333%; -} - -.offset-11 { - margin-left: 91.66667%; -} - -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-sm-first { - order: -1; - } - .order-sm-last { - order: 13; - } - .order-sm-0 { - order: 0; - } - .order-sm-1 { - order: 1; - } - .order-sm-2 { - order: 2; - } - .order-sm-3 { - order: 3; - } - .order-sm-4 { - order: 4; - } - .order-sm-5 { - order: 5; - } - .order-sm-6 { - order: 6; - } - .order-sm-7 { - order: 7; - } - .order-sm-8 { - order: 8; - } - .order-sm-9 { - order: 9; - } - .order-sm-10 { - order: 10; - } - .order-sm-11 { - order: 11; - } - .order-sm-12 { - order: 12; - } - .offset-sm-0 { - margin-left: 0; - } - .offset-sm-1 { - margin-left: 8.33333%; - } - .offset-sm-2 { - margin-left: 16.66667%; - } - .offset-sm-3 { - margin-left: 25%; - } - .offset-sm-4 { - margin-left: 33.33333%; - } - .offset-sm-5 { - margin-left: 41.66667%; - } - .offset-sm-6 { - margin-left: 50%; - } - .offset-sm-7 { - margin-left: 58.33333%; - } - .offset-sm-8 { - margin-left: 66.66667%; - } - .offset-sm-9 { - margin-left: 75%; - } - .offset-sm-10 { - margin-left: 83.33333%; - } - .offset-sm-11 { - margin-left: 91.66667%; - } -} - -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-md-first { - order: -1; - } - .order-md-last { - order: 13; - } - .order-md-0 { - order: 0; - } - .order-md-1 { - order: 1; - } - .order-md-2 { - order: 2; - } - .order-md-3 { - order: 3; - } - .order-md-4 { - order: 4; - } - .order-md-5 { - order: 5; - } - .order-md-6 { - order: 6; - } - .order-md-7 { - order: 7; - } - .order-md-8 { - order: 8; - } - .order-md-9 { - order: 9; - } - .order-md-10 { - order: 10; - } - .order-md-11 { - order: 11; - } - .order-md-12 { - order: 12; - } - .offset-md-0 { - margin-left: 0; - } - .offset-md-1 { - margin-left: 8.33333%; - } - .offset-md-2 { - margin-left: 16.66667%; - } - .offset-md-3 { - margin-left: 25%; - } - .offset-md-4 { - margin-left: 33.33333%; - } - .offset-md-5 { - margin-left: 41.66667%; - } - .offset-md-6 { - margin-left: 50%; - } - .offset-md-7 { - margin-left: 58.33333%; - } - .offset-md-8 { - margin-left: 66.66667%; - } - .offset-md-9 { - margin-left: 75%; - } - .offset-md-10 { - margin-left: 83.33333%; - } - .offset-md-11 { - margin-left: 91.66667%; - } -} - -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-lg-first { - order: -1; - } - .order-lg-last { - order: 13; - } - .order-lg-0 { - order: 0; - } - .order-lg-1 { - order: 1; - } - .order-lg-2 { - order: 2; - } - .order-lg-3 { - order: 3; - } - .order-lg-4 { - order: 4; - } - .order-lg-5 { - order: 5; - } - .order-lg-6 { - order: 6; - } - .order-lg-7 { - order: 7; - } - .order-lg-8 { - order: 8; - } - .order-lg-9 { - order: 9; - } - .order-lg-10 { - order: 10; - } - .order-lg-11 { - order: 11; - } - .order-lg-12 { - order: 12; - } - .offset-lg-0 { - margin-left: 0; - } - .offset-lg-1 { - margin-left: 8.33333%; - } - .offset-lg-2 { - margin-left: 16.66667%; - } - .offset-lg-3 { - margin-left: 25%; - } - .offset-lg-4 { - margin-left: 33.33333%; - } - .offset-lg-5 { - margin-left: 41.66667%; - } - .offset-lg-6 { - margin-left: 50%; - } - .offset-lg-7 { - margin-left: 58.33333%; - } - .offset-lg-8 { - margin-left: 66.66667%; - } - .offset-lg-9 { - margin-left: 75%; - } - .offset-lg-10 { - margin-left: 83.33333%; - } - .offset-lg-11 { - margin-left: 91.66667%; - } -} - -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - min-width: 0; - max-width: 100%; - } - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; - } - .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; - } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; - } - .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; - } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; - } - .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; - } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; - } - .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; - } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; - } - .order-xl-first { - order: -1; - } - .order-xl-last { - order: 13; - } - .order-xl-0 { - order: 0; - } - .order-xl-1 { - order: 1; - } - .order-xl-2 { - order: 2; - } - .order-xl-3 { - order: 3; - } - .order-xl-4 { - order: 4; - } - .order-xl-5 { - order: 5; - } - .order-xl-6 { - order: 6; - } - .order-xl-7 { - order: 7; - } - .order-xl-8 { - order: 8; - } - .order-xl-9 { - order: 9; - } - .order-xl-10 { - order: 10; - } - .order-xl-11 { - order: 11; - } - .order-xl-12 { - order: 12; - } - .offset-xl-0 { - margin-left: 0; - } - .offset-xl-1 { - margin-left: 8.33333%; - } - .offset-xl-2 { - margin-left: 16.66667%; - } - .offset-xl-3 { - margin-left: 25%; - } - .offset-xl-4 { - margin-left: 33.33333%; - } - .offset-xl-5 { - margin-left: 41.66667%; - } - .offset-xl-6 { - margin-left: 50%; - } - .offset-xl-7 { - margin-left: 58.33333%; - } - .offset-xl-8 { - margin-left: 66.66667%; - } - .offset-xl-9 { - margin-left: 75%; - } - .offset-xl-10 { - margin-left: 83.33333%; - } - .offset-xl-11 { - margin-left: 91.66667%; - } -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 10px; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #a6e2f6; - outline: 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), - 0 0 0 0.2rem rgba(50, 189, 234, 0.25); -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, -.form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -input[type="date"].form-control, -input[type="time"].form-control, -input[type="datetime-local"].form-control, -input[type="month"].form-control { - appearance: none; -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 0.75rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.75rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #676e8a; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, -.form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -select.form-control[size], -select.form-control[multiple] { - height: auto; -} - -textarea.form-control { - height: auto; -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input[disabled] ~ .form-check-label, -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #78c091; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.75rem; - line-height: 1.5; - color: #fff; - background-color: rgba(120, 192, 145, 0.9); - border-radius: 10px; -} - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-control:valid, -.form-control.is-valid { - border-color: #78c091; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2378C091' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:valid:focus, -.form-control.is-valid:focus { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.was-validated textarea.form-control:valid, -textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right - calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:valid, -.custom-select.is-valid { - border-color: #78c091; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") - no-repeat right 0.75rem center/8px 10px, - url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2378C091' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") - #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) - calc(0.75em + 0.375rem); -} -.was-validated .custom-select:valid:focus, -.custom-select.is-valid:focus { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.was-validated .form-check-input:valid ~ .form-check-label, -.form-check-input.is-valid ~ .form-check-label { - color: #78c091; -} - -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, -.form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, -.custom-control-input.is-valid ~ .custom-control-label { - color: #78c091; -} -.was-validated .custom-control-input:valid ~ .custom-control-label::before, -.custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #78c091; -} - -.was-validated - .custom-control-input:valid:checked - ~ .custom-control-label::before, -.custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #9bd0ad; - background-color: #9bd0ad; -} - -.was-validated - .custom-control-input:valid:focus - ~ .custom-control-label::before, -.custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.was-validated - .custom-control-input:valid:focus:not(:checked) - ~ .custom-control-label::before, -.custom-control-input.is-valid:focus:not(:checked) - ~ .custom-control-label::before { - border-color: #78c091; -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, -.custom-file-input.is-valid ~ .custom-file-label { - border-color: #78c091; -} - -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, -.custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #78c091; - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #e08db4; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.75rem; - line-height: 1.5; - color: #fff; - background-color: rgba(224, 141, 180, 0.9); - border-radius: 10px; -} - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-control:invalid, -.form-control.is-invalid { - border-color: #e08db4; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E08DB4' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E08DB4' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:invalid:focus, -.form-control.is-invalid:focus { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.was-validated textarea.form-control:invalid, -textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right - calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:invalid, -.custom-select.is-invalid { - border-color: #e08db4; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") - no-repeat right 0.75rem center/8px 10px, - url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E08DB4' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E08DB4' stroke='none'/%3e%3c/svg%3e") - #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) - calc(0.75em + 0.375rem); -} -.was-validated .custom-select:invalid:focus, -.custom-select.is-invalid:focus { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.was-validated .form-check-input:invalid ~ .form-check-label, -.form-check-input.is-invalid ~ .form-check-label { - color: #e08db4; -} - -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, -.form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, -.custom-control-input.is-invalid ~ .custom-control-label { - color: #e08db4; -} -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, -.custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #e08db4; -} - -.was-validated - .custom-control-input:invalid:checked - ~ .custom-control-label::before, -.custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #ebb5ce; - background-color: #ebb5ce; -} - -.was-validated - .custom-control-input:invalid:focus - ~ .custom-control-label::before, -.custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.was-validated - .custom-control-input:invalid:focus:not(:checked) - ~ .custom-control-label::before, -.custom-control-input.is-invalid:focus:not(:checked) - ~ .custom-control-label::before { - border-color: #e08db4; -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, -.custom-file-input.is-invalid ~ .custom-file-label { - border-color: #e08db4; -} - -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, -.custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #e08db4; - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.25); -} - -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: flex; - flex: 0 0 auto; - flex-flow: row wrap; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; - } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - align-items: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.fade { - transition: opacity 0.15s linear; -} -@media (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} -.fade:not(.show) { - opacity: 0; -} - -.collapse:not(.show) { - display: none; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} -@media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} - -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; -} - -.dropdown-toggle { - white-space: nowrap; -} -.dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #676e8a; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 10px; - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175); -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} - -.dropleft .dropdown-toggle::after { - display: none; -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-menu[x-placement^="top"], -.dropdown-menu[x-placement^="right"], -.dropdown-menu[x-placement^="bottom"], -.dropdown-menu[x-placement^="left"] { - right: auto; - bottom: auto; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, -.dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, -.dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #32bdea; -} -.dropdown-item.disabled, -.dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.75rem; - color: #6c757d; - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} -.btn-group > .btn:focus, -.btn-group > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; -} - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after { - margin-left: 0; -} -.dropleft .dropdown-toggle-split::before { - margin-right: 0; -} - -.btn-sm + .dropdown-toggle-split, -.btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, -.btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group.show .dropdown-toggle { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.show .dropdown-toggle.btn-link { - box-shadow: none; -} - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; -} -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:hover, -.nav-link:focus { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} - -.nav-tabs { - border-bottom: 1px solid #ccced2; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 10px; - border-top-right-radius: 10px; -} -.nav-tabs .nav-link:hover, -.nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #ccced2; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #ffffff; - border-color: #ccced2 #ccced2 #ffffff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 10px; -} - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #32bdea; -} - -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} - -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: 0.5rem 1rem; -} -.navbar .container, -.navbar .container-fluid, -.navbar .container-sm, -.navbar .container-md, -.navbar .container-lg, -.navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 3.5rem; - padding-bottom: 3.5rem; - margin-right: 1rem; - font-size: 0.75rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 0.75rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 10px; -} -.navbar-toggler:hover, -.navbar-toggler:focus { - text-decoration: none; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, - .navbar-expand-sm > .container-sm, - .navbar-expand-sm > .container-md, - .navbar-expand-sm > .container-lg, - .navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, - .navbar-expand-sm > .container-sm, - .navbar-expand-sm > .container-md, - .navbar-expand-sm > .container-lg, - .navbar-expand-sm > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } -} - -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, - .navbar-expand-md > .container-sm, - .navbar-expand-md > .container-md, - .navbar-expand-md > .container-lg, - .navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, - .navbar-expand-md > .container-sm, - .navbar-expand-md > .container-md, - .navbar-expand-md > .container-lg, - .navbar-expand-md > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } -} - -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, - .navbar-expand-lg > .container-sm, - .navbar-expand-lg > .container-md, - .navbar-expand-lg > .container-lg, - .navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, - .navbar-expand-lg > .container-sm, - .navbar-expand-lg > .container-md, - .navbar-expand-lg > .container-lg, - .navbar-expand-lg > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } -} - -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, - .navbar-expand-xl > .container-sm, - .navbar-expand-xl > .container-md, - .navbar-expand-xl > .container-lg, - .navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, - .navbar-expand-xl > .container-sm, - .navbar-expand-xl > .container-md, - .navbar-expand-xl > .container-lg, - .navbar-expand-xl > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } -} - -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-sm, -.navbar-expand > .container-md, -.navbar-expand > .container-lg, -.navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-sm, -.navbar-expand > .container-md, -.navbar-expand > .container-lg, -.navbar-expand > .container-xl { - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, -.navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:hover, -.navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-text a:hover, -.navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, -.navbar-dark .navbar-brand:focus { - color: #fff; -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-nav .nav-link:hover, -.navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-text a { - color: #fff; -} -.navbar-dark .navbar-text a:hover, -.navbar-dark .navbar-text a:focus { - color: #fff; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - color: #03151a !important; - background-color: #32bdea !important; -} - -a.bg-primary:hover, -a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - color: #03151a !important; - background-color: #16a5d3 !important; -} - -.bg-secondary { - color: #411500 !important; - background-color: #ff7e41 !important; -} - -a.bg-secondary:hover, -a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - color: #411500 !important; - background-color: #ff5b0e !important; -} - -.bg-success { - color: #122719 !important; - background-color: #78c091 !important; -} - -a.bg-success:hover, -a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - color: #122719 !important; - background-color: #55b075 !important; -} - -.bg-info { - color: #00627e !important; - background-color: #7ee2ff !important; -} - -a.bg-info:hover, -a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - color: #00627e !important; - background-color: #4bd7ff !important; -} - -.bg-warning { - color: #701f00 !important; - background-color: #ff9770 !important; -} - -a.bg-warning:hover, -a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - color: #701f00 !important; - background-color: #ff723d !important; -} - -.bg-danger { - color: #561835 !important; - background-color: #e08db4 !important; -} - -a.bg-danger:hover, -a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - color: #561835 !important; - background-color: #d5659a !important; -} - -.bg-light { - color: #444a57 !important; - background-color: #c7cbd3 !important; -} - -a.bg-light:hover, -a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - color: #444a57 !important; - background-color: #aab0bd !important; -} - -.bg-dark { - color: black !important; - background-color: #01041b !important; -} - -a.bg-dark:hover, -a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - color: black !important; - background-color: black !important; -} - -.bg-orange { - color: #411500 !important; - background-color: #ff7e41 !important; -} - -a.bg-orange:hover, -a.bg-orange:focus, -button.bg-orange:hover, -button.bg-orange:focus { - color: #411500 !important; - background-color: #ff5b0e !important; -} - -.bg-purple { - color: black !important; - background-color: #4731b6 !important; -} - -a.bg-purple:hover, -a.bg-purple:focus, -button.bg-purple:hover, -button.bg-purple:focus { - color: black !important; - background-color: #37268e !important; -} - -.bg-skyblue { - color: #00070d !important; - background-color: #158df7 !important; -} - -a.bg-skyblue:hover, -a.bg-skyblue:focus, -button.bg-skyblue:hover, -button.bg-skyblue:focus { - color: #00070d !important; - background-color: #0773d2 !important; -} - -.bg-light-gray { - color: #4b5aa4 !important; - background-color: #f4f5fa !important; -} - -a.bg-light-gray:hover, -a.bg-light-gray:focus, -button.bg-light-gray:hover, -button.bg-light-gray:focus { - color: #4b5aa4 !important; - background-color: #d1d5ea !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dcdfe8 !important; -} - -.border-top { - border-top: 1px solid #dcdfe8 !important; -} - -.border-right { - border-right: 1px solid #dcdfe8 !important; -} - -.border-bottom { - border-bottom: 1px solid #dcdfe8 !important; -} - -.border-left { - border-left: 1px solid #dcdfe8 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #32bdea !important; -} - -.border-secondary { - border-color: #ff7e41 !important; -} - -.border-success { - border-color: #78c091 !important; -} - -.border-info { - border-color: #7ee2ff !important; -} - -.border-warning { - border-color: #ff9770 !important; -} - -.border-danger { - border-color: #e08db4 !important; -} - -.border-light { - border-color: #c7cbd3 !important; -} - -.border-dark { - border-color: #01041b !important; -} - -.border-orange { - border-color: #ff7e41 !important; -} - -.border-purple { - border-color: #4731b6 !important; -} - -.border-skyblue { - border-color: #158df7 !important; -} - -.border-light-gray { - border-color: #f4f5fa !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded-sm { - border-radius: 10px !important; -} - -.rounded { - border-radius: 10px !important; -} - -.rounded-top { - border-top-left-radius: 10px !important; - border-top-right-radius: 10px !important; -} - -.rounded-right { - border-top-right-radius: 10px !important; - border-bottom-right-radius: 10px !important; -} - -.rounded-bottom { - border-bottom-right-radius: 10px !important; - border-bottom-left-radius: 10px !important; -} - -.rounded-left { - border-top-left-radius: 10px !important; - border-bottom-left-radius: 10px !important; -} - -.rounded-lg { - border-radius: 10px !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50px !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: flex !important; -} - -.d-inline-flex { - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - .d-sm-inline { - display: inline !important; - } - .d-sm-inline-block { - display: inline-block !important; - } - .d-sm-block { - display: block !important; - } - .d-sm-table { - display: table !important; - } - .d-sm-table-row { - display: table-row !important; - } - .d-sm-table-cell { - display: table-cell !important; - } - .d-sm-flex { - display: flex !important; - } - .d-sm-inline-flex { - display: inline-flex !important; - } -} - -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - .d-md-inline { - display: inline !important; - } - .d-md-inline-block { - display: inline-block !important; - } - .d-md-block { - display: block !important; - } - .d-md-table { - display: table !important; - } - .d-md-table-row { - display: table-row !important; - } - .d-md-table-cell { - display: table-cell !important; - } - .d-md-flex { - display: flex !important; - } - .d-md-inline-flex { - display: inline-flex !important; - } -} - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - .d-lg-inline { - display: inline !important; - } - .d-lg-inline-block { - display: inline-block !important; - } - .d-lg-block { - display: block !important; - } - .d-lg-table { - display: table !important; - } - .d-lg-table-row { - display: table-row !important; - } - .d-lg-table-cell { - display: table-cell !important; - } - .d-lg-flex { - display: flex !important; - } - .d-lg-inline-flex { - display: inline-flex !important; - } -} - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - .d-xl-inline { - display: inline !important; - } - .d-xl-inline-block { - display: inline-block !important; - } - .d-xl-block { - display: block !important; - } - .d-xl-table { - display: table !important; - } - .d-xl-table-row { - display: table-row !important; - } - .d-xl-table-cell { - display: table-cell !important; - } - .d-xl-flex { - display: flex !important; - } - .d-xl-inline-flex { - display: inline-flex !important; - } -} - -@media print { - .d-print-none { - display: none !important; - } - .d-print-inline { - display: inline !important; - } - .d-print-inline-block { - display: inline-block !important; - } - .d-print-block { - display: block !important; - } - .d-print-table { - display: table !important; - } - .d-print-table-row { - display: table-row !important; - } - .d-print-table-cell { - display: table-cell !important; - } - .d-print-flex { - display: flex !important; - } - .d-print-inline-flex { - display: inline-flex !important; - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive::before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.85714%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - flex-direction: row !important; -} - -.flex-column { - flex-direction: column !important; -} - -.flex-row-reverse { - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - flex-direction: column-reverse !important; -} - -.flex-wrap { - flex-wrap: wrap !important; -} - -.flex-nowrap { - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.flex-fill { - flex: 1 1 auto !important; -} - -.flex-grow-0 { - flex-grow: 0 !important; -} - -.flex-grow-1 { - flex-grow: 1 !important; -} - -.flex-shrink-0 { - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - flex-shrink: 1 !important; -} - -.justify-content-start { - justify-content: flex-start !important; -} - -.justify-content-end { - justify-content: flex-end !important; -} - -.justify-content-center { - justify-content: center !important; -} - -.justify-content-between { - justify-content: space-between !important; -} - -.justify-content-around { - justify-content: space-around !important; -} - -.align-items-start { - align-items: flex-start !important; -} - -.align-items-end { - align-items: flex-end !important; -} - -.align-items-center { - align-items: center !important; -} - -.align-items-baseline { - align-items: baseline !important; -} - -.align-items-stretch { - align-items: stretch !important; -} - -.align-content-start { - align-content: flex-start !important; -} - -.align-content-end { - align-content: flex-end !important; -} - -.align-content-center { - align-content: center !important; -} - -.align-content-between { - align-content: space-between !important; -} - -.align-content-around { - align-content: space-around !important; -} - -.align-content-stretch { - align-content: stretch !important; -} - -.align-self-auto { - align-self: auto !important; -} - -.align-self-start { - align-self: flex-start !important; -} - -.align-self-end { - align-self: flex-end !important; -} - -.align-self-center { - align-self: center !important; -} - -.align-self-baseline { - align-self: baseline !important; -} - -.align-self-stretch { - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; - } - .flex-sm-column { - flex-direction: column !important; - } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - .flex-sm-wrap { - flex-wrap: wrap !important; - } - .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-sm-fill { - flex: 1 1 auto !important; - } - .flex-sm-grow-0 { - flex-grow: 0 !important; - } - .flex-sm-grow-1 { - flex-grow: 1 !important; - } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-sm-start { - justify-content: flex-start !important; - } - .justify-content-sm-end { - justify-content: flex-end !important; - } - .justify-content-sm-center { - justify-content: center !important; - } - .justify-content-sm-between { - justify-content: space-between !important; - } - .justify-content-sm-around { - justify-content: space-around !important; - } - .align-items-sm-start { - align-items: flex-start !important; - } - .align-items-sm-end { - align-items: flex-end !important; - } - .align-items-sm-center { - align-items: center !important; - } - .align-items-sm-baseline { - align-items: baseline !important; - } - .align-items-sm-stretch { - align-items: stretch !important; - } - .align-content-sm-start { - align-content: flex-start !important; - } - .align-content-sm-end { - align-content: flex-end !important; - } - .align-content-sm-center { - align-content: center !important; - } - .align-content-sm-between { - align-content: space-between !important; - } - .align-content-sm-around { - align-content: space-around !important; - } - .align-content-sm-stretch { - align-content: stretch !important; - } - .align-self-sm-auto { - align-self: auto !important; - } - .align-self-sm-start { - align-self: flex-start !important; - } - .align-self-sm-end { - align-self: flex-end !important; - } - .align-self-sm-center { - align-self: center !important; - } - .align-self-sm-baseline { - align-self: baseline !important; - } - .align-self-sm-stretch { - align-self: stretch !important; - } -} - -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; - } - .flex-md-column { - flex-direction: column !important; - } - .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - .flex-md-wrap { - flex-wrap: wrap !important; - } - .flex-md-nowrap { - flex-wrap: nowrap !important; - } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-md-fill { - flex: 1 1 auto !important; - } - .flex-md-grow-0 { - flex-grow: 0 !important; - } - .flex-md-grow-1 { - flex-grow: 1 !important; - } - .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-md-start { - justify-content: flex-start !important; - } - .justify-content-md-end { - justify-content: flex-end !important; - } - .justify-content-md-center { - justify-content: center !important; - } - .justify-content-md-between { - justify-content: space-between !important; - } - .justify-content-md-around { - justify-content: space-around !important; - } - .align-items-md-start { - align-items: flex-start !important; - } - .align-items-md-end { - align-items: flex-end !important; - } - .align-items-md-center { - align-items: center !important; - } - .align-items-md-baseline { - align-items: baseline !important; - } - .align-items-md-stretch { - align-items: stretch !important; - } - .align-content-md-start { - align-content: flex-start !important; - } - .align-content-md-end { - align-content: flex-end !important; - } - .align-content-md-center { - align-content: center !important; - } - .align-content-md-between { - align-content: space-between !important; - } - .align-content-md-around { - align-content: space-around !important; - } - .align-content-md-stretch { - align-content: stretch !important; - } - .align-self-md-auto { - align-self: auto !important; - } - .align-self-md-start { - align-self: flex-start !important; - } - .align-self-md-end { - align-self: flex-end !important; - } - .align-self-md-center { - align-self: center !important; - } - .align-self-md-baseline { - align-self: baseline !important; - } - .align-self-md-stretch { - align-self: stretch !important; - } -} - -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; - } - .flex-lg-column { - flex-direction: column !important; - } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - .flex-lg-wrap { - flex-wrap: wrap !important; - } - .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-lg-fill { - flex: 1 1 auto !important; - } - .flex-lg-grow-0 { - flex-grow: 0 !important; - } - .flex-lg-grow-1 { - flex-grow: 1 !important; - } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-lg-start { - justify-content: flex-start !important; - } - .justify-content-lg-end { - justify-content: flex-end !important; - } - .justify-content-lg-center { - justify-content: center !important; - } - .justify-content-lg-between { - justify-content: space-between !important; - } - .justify-content-lg-around { - justify-content: space-around !important; - } - .align-items-lg-start { - align-items: flex-start !important; - } - .align-items-lg-end { - align-items: flex-end !important; - } - .align-items-lg-center { - align-items: center !important; - } - .align-items-lg-baseline { - align-items: baseline !important; - } - .align-items-lg-stretch { - align-items: stretch !important; - } - .align-content-lg-start { - align-content: flex-start !important; - } - .align-content-lg-end { - align-content: flex-end !important; - } - .align-content-lg-center { - align-content: center !important; - } - .align-content-lg-between { - align-content: space-between !important; - } - .align-content-lg-around { - align-content: space-around !important; - } - .align-content-lg-stretch { - align-content: stretch !important; - } - .align-self-lg-auto { - align-self: auto !important; - } - .align-self-lg-start { - align-self: flex-start !important; - } - .align-self-lg-end { - align-self: flex-end !important; - } - .align-self-lg-center { - align-self: center !important; - } - .align-self-lg-baseline { - align-self: baseline !important; - } - .align-self-lg-stretch { - align-self: stretch !important; - } -} - -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; - } - .flex-xl-column { - flex-direction: column !important; - } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - .flex-xl-wrap { - flex-wrap: wrap !important; - } - .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .flex-xl-fill { - flex: 1 1 auto !important; - } - .flex-xl-grow-0 { - flex-grow: 0 !important; - } - .flex-xl-grow-1 { - flex-grow: 1 !important; - } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - .justify-content-xl-start { - justify-content: flex-start !important; - } - .justify-content-xl-end { - justify-content: flex-end !important; - } - .justify-content-xl-center { - justify-content: center !important; - } - .justify-content-xl-between { - justify-content: space-between !important; - } - .justify-content-xl-around { - justify-content: space-around !important; - } - .align-items-xl-start { - align-items: flex-start !important; - } - .align-items-xl-end { - align-items: flex-end !important; - } - .align-items-xl-center { - align-items: center !important; - } - .align-items-xl-baseline { - align-items: baseline !important; - } - .align-items-xl-stretch { - align-items: stretch !important; - } - .align-content-xl-start { - align-content: flex-start !important; - } - .align-content-xl-end { - align-content: flex-end !important; - } - .align-content-xl-center { - align-content: center !important; - } - .align-content-xl-between { - align-content: space-between !important; - } - .align-content-xl-around { - align-content: space-around !important; - } - .align-content-xl-stretch { - align-content: stretch !important; - } - .align-self-xl-auto { - align-self: auto !important; - } - .align-self-xl-start { - align-self: flex-start !important; - } - .align-self-xl-end { - align-self: flex-end !important; - } - .align-self-xl-center { - align-self: center !important; - } - .align-self-xl-baseline { - align-self: baseline !important; - } - .align-self-xl-stretch { - align-self: stretch !important; - } -} - -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - .float-sm-right { - float: right !important; - } - .float-sm-none { - float: none !important; - } -} - -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - .float-md-right { - float: right !important; - } - .float-md-none { - float: none !important; - } -} - -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - .float-lg-right { - float: right !important; - } - .float-lg-none { - float: none !important; - } -} - -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - .float-xl-right { - float: right !important; - } - .float-xl-none { - float: none !important; - } -} - -.user-select-all { - user-select: all !important; -} - -.user-select-auto { - user-select: auto !important; -} - -.user-select-none { - user-select: none !important; -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports (position: sticky) { - .sticky-top { - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; -} - -.shadow-sm { - box-shadow: 0px 16px 40px 0px #0000000a !important; -} - -.shadow { - box-shadow: 0px 16px 40px 0px #0000000a !important; -} - -.shadow-lg { - box-shadow: 0px 16px 40px 0px #0000000a !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - .m-sm-1 { - margin: 0.25rem !important; - } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - .m-sm-2 { - margin: 0.5rem !important; - } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - .m-sm-3 { - margin: 1rem !important; - } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - .m-sm-4 { - margin: 1.5rem !important; - } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - .m-sm-5 { - margin: 3rem !important; - } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - .p-sm-0 { - padding: 0 !important; - } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - .p-sm-1 { - padding: 0.25rem !important; - } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - .p-sm-2 { - padding: 0.5rem !important; - } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - .p-sm-3 { - padding: 1rem !important; - } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - .p-sm-4 { - padding: 1.5rem !important; - } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - .p-sm-5 { - padding: 3rem !important; - } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } - .m-sm-auto { - margin: auto !important; - } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - .m-md-1 { - margin: 0.25rem !important; - } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - .m-md-2 { - margin: 0.5rem !important; - } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - .m-md-3 { - margin: 1rem !important; - } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - .m-md-4 { - margin: 1.5rem !important; - } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - .m-md-5 { - margin: 3rem !important; - } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - .p-md-0 { - padding: 0 !important; - } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - .p-md-1 { - padding: 0.25rem !important; - } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - .p-md-2 { - padding: 0.5rem !important; - } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - .p-md-3 { - padding: 1rem !important; - } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - .p-md-4 { - padding: 1.5rem !important; - } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - .p-md-5 { - padding: 3rem !important; - } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } - .m-md-auto { - margin: auto !important; - } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - .m-lg-1 { - margin: 0.25rem !important; - } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - .m-lg-2 { - margin: 0.5rem !important; - } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - .m-lg-3 { - margin: 1rem !important; - } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - .m-lg-4 { - margin: 1.5rem !important; - } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - .m-lg-5 { - margin: 3rem !important; - } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - .p-lg-0 { - padding: 0 !important; - } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - .p-lg-1 { - padding: 0.25rem !important; - } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - .p-lg-2 { - padding: 0.5rem !important; - } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - .p-lg-3 { - padding: 1rem !important; - } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - .p-lg-4 { - padding: 1.5rem !important; - } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - .p-lg-5 { - padding: 3rem !important; - } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } - .m-lg-auto { - margin: auto !important; - } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - .m-xl-1 { - margin: 0.25rem !important; - } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - .m-xl-2 { - margin: 0.5rem !important; - } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - .m-xl-3 { - margin: 1rem !important; - } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - .m-xl-4 { - margin: 1.5rem !important; - } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - .m-xl-5 { - margin: 3rem !important; - } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - .p-xl-0 { - padding: 0 !important; - } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - .p-xl-1 { - padding: 0.25rem !important; - } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - .p-xl-2 { - padding: 0.5rem !important; - } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - .p-xl-3 { - padding: 1rem !important; - } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - .p-xl-4 { - padding: 1.5rem !important; - } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - .p-xl-5 { - padding: 3rem !important; - } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } - .m-xl-auto { - margin: auto !important; - } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0); -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", - "Courier New", monospace !important; -} - -.text-justify { - text-align: justify !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - .text-sm-right { - text-align: right !important; - } - .text-sm-center { - text-align: center !important; - } -} - -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - .text-md-right { - text-align: right !important; - } - .text-md-center { - text-align: center !important; - } -} - -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - .text-lg-right { - text-align: right !important; - } - .text-lg-center { - text-align: center !important; - } -} - -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - .text-xl-right { - text-align: right !important; - } - .text-xl-center { - text-align: center !important; - } -} - -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-lighter { - font-weight: lighter !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-weight-bolder { - font-weight: bolder !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #32bdea !important; -} - -a.text-primary:hover, -a.text-primary:focus { - color: #1393bc !important; -} - -.text-secondary { - color: #ff7e41 !important; -} - -a.text-secondary:hover, -a.text-secondary:focus { - color: #f44e00 !important; -} - -.text-success { - color: #78c091 !important; -} - -a.text-success:hover, -a.text-success:focus { - color: #4ba169 !important; -} - -.text-info { - color: #7ee2ff !important; -} - -a.text-info:hover, -a.text-info:focus { - color: #32d1ff !important; -} - -.text-warning { - color: #ff9770 !important; -} - -a.text-warning:hover, -a.text-warning:focus { - color: #ff5f24 !important; -} - -.text-danger { - color: #e08db4 !important; -} - -a.text-danger:hover, -a.text-danger:focus { - color: #d0518c !important; -} - -.text-light { - color: #c7cbd3 !important; -} - -a.text-light:hover, -a.text-light:focus { - color: #9ca3b1 !important; -} - -.text-dark { - color: #01041b !important; -} - -a.text-dark:hover, -a.text-dark:focus { - color: black !important; -} - -.text-orange { - color: #ff7e41 !important; -} - -a.text-orange:hover, -a.text-orange:focus { - color: #f44e00 !important; -} - -.text-purple { - color: #4731b6 !important; -} - -a.text-purple:hover, -a.text-purple:focus { - color: #2f217a !important; -} - -.text-skyblue { - color: #158df7 !important; -} - -a.text-skyblue:hover, -a.text-skyblue:focus { - color: #0665b9 !important; -} - -.text-light-gray { - color: #f4f5fa !important; -} - -a.text-light-gray:hover, -a.text-light-gray:focus { - color: #bfc5e2 !important; -} - -.text-body { - color: #676e8a !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-break { - word-wrap: break-word !important; -} - -.text-reset { - color: inherit !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -.btn { - display: inline-block; - font-family: "Lato", sans-serif; - font-weight: 400; - color: #676e8a; - text-align: center; - vertical-align: middle; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 10px; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} -.btn:hover { - color: #676e8a; - text-decoration: none; -} -.btn:focus, -.btn.focus { - outline: none; - box-shadow: none; -} -.btn.disabled, -.btn:disabled { - opacity: 0.65; - box-shadow: none; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -.btn:not(:disabled):not(.disabled):active, -.btn:not(:disabled):not(.disabled).active { - box-shadow: none; -} -.btn:not(:disabled):not(.disabled):active:focus, -.btn:not(:disabled):not(.disabled).active:focus { - box-shadow: none; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; - box-shadow: unset; -} -.btn-primary:hover { - color: #fff; - background-color: #17aedf; - border-color: #16a5d3; -} -.btn-primary:focus, -.btn-primary.focus { - color: #fff; - background-color: #17aedf; - border-color: #16a5d3; - box-shadow: unset, 0 0 0 0.2rem rgba(81, 199, 237, 0.5); -} -.btn-primary.disabled, -.btn-primary:disabled { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-primary:not(:disabled):not(.disabled):active, -.btn-primary:not(:disabled):not(.disabled).active, -.show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #16a5d3; - border-color: #149cc8; -} -.btn-primary:not(:disabled):not(.disabled):active:focus, -.btn-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-primary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(81, 199, 237, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; - box-shadow: unset; -} -.btn-secondary:hover { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; -} -.btn-secondary:focus, -.btn-secondary.focus { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; - box-shadow: unset, 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-secondary.disabled, -.btn-secondary:disabled { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-secondary:not(:disabled):not(.disabled):active, -.btn-secondary:not(:disabled):not(.disabled).active, -.show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #ff5b0e; - border-color: #ff5301; -} -.btn-secondary:not(:disabled):not(.disabled):active:focus, -.btn-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-secondary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} - -.btn-success { - color: #fff; - background-color: #78c091; - border-color: #78c091; - box-shadow: unset; -} -.btn-success:hover { - color: #fff; - background-color: #5eb47c; - border-color: #55b075; -} -.btn-success:focus, -.btn-success.focus { - color: #fff; - background-color: #5eb47c; - border-color: #55b075; - box-shadow: unset, 0 0 0 0.2rem rgba(140, 201, 162, 0.5); -} -.btn-success.disabled, -.btn-success:disabled { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-success:not(:disabled):not(.disabled):active, -.btn-success:not(:disabled):not(.disabled).active, -.show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #55b075; - border-color: #4fa96e; -} -.btn-success:not(:disabled):not(.disabled):active:focus, -.btn-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-success.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(140, 201, 162, 0.5); -} - -.btn-info { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; - box-shadow: unset; -} -.btn-info:hover { - color: #fff; - background-color: #58d9ff; - border-color: #4bd7ff; -} -.btn-info:focus, -.btn-info.focus { - color: #fff; - background-color: #58d9ff; - border-color: #4bd7ff; - box-shadow: unset, 0 0 0 0.2rem rgba(145, 230, 255, 0.5); -} -.btn-info.disabled, -.btn-info:disabled { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-info:not(:disabled):not(.disabled):active, -.btn-info:not(:disabled):not(.disabled).active, -.show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #4bd7ff; - border-color: #3ed4ff; -} -.btn-info:not(:disabled):not(.disabled):active:focus, -.btn-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-info.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(145, 230, 255, 0.5); -} - -.btn-warning { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; - box-shadow: unset; -} -.btn-warning:hover { - color: #fff; - background-color: #ff7b4a; - border-color: #ff723d; -} -.btn-warning:focus, -.btn-warning.focus { - color: #fff; - background-color: #ff7b4a; - border-color: #ff723d; - box-shadow: unset, 0 0 0 0.2rem rgba(255, 167, 133, 0.5); -} -.btn-warning.disabled, -.btn-warning:disabled { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-warning:not(:disabled):not(.disabled):active, -.btn-warning:not(:disabled):not(.disabled).active, -.show > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ff723d; - border-color: #ff6930; -} -.btn-warning:not(:disabled):not(.disabled):active:focus, -.btn-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-warning.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 167, 133, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; - box-shadow: unset; -} -.btn-danger:hover { - color: #fff; - background-color: #d86fa0; - border-color: #d5659a; -} -.btn-danger:focus, -.btn-danger.focus { - color: #fff; - background-color: #d86fa0; - border-color: #d5659a; - box-shadow: unset, 0 0 0 0.2rem rgba(229, 158, 191, 0.5); -} -.btn-danger.disabled, -.btn-danger:disabled { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-danger:not(:disabled):not(.disabled):active, -.btn-danger:not(:disabled):not(.disabled).active, -.show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #d5659a; - border-color: #d25b93; -} -.btn-danger:not(:disabled):not(.disabled):active:focus, -.btn-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-danger.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(229, 158, 191, 0.5); -} - -.btn-light { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; - box-shadow: unset; -} -.btn-light:hover { - color: #fff; - background-color: #b2b7c2; - border-color: #aab0bd; -} -.btn-light:focus, -.btn-light.focus { - color: #fff; - background-color: #b2b7c2; - border-color: #aab0bd; - box-shadow: unset, 0 0 0 0.2rem rgba(174, 178, 186, 0.5); -} -.btn-light.disabled, -.btn-light:disabled { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-light:not(:disabled):not(.disabled):active, -.btn-light:not(:disabled):not(.disabled).active, -.show > .btn-light.dropdown-toggle { - color: #fff; - background-color: #aab0bd; - border-color: #a3aab7; -} -.btn-light:not(:disabled):not(.disabled):active:focus, -.btn-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-light.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(174, 178, 186, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #01041b; - border-color: #01041b; - box-shadow: unset; -} -.btn-dark:hover { - color: #fff; - background-color: black; - border-color: black; -} -.btn-dark:focus, -.btn-dark.focus { - color: #fff; - background-color: black; - border-color: black; - box-shadow: unset, 0 0 0 0.2rem rgba(39, 42, 61, 0.5); -} -.btn-dark.disabled, -.btn-dark:disabled { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-dark:not(:disabled):not(.disabled):active, -.btn-dark:not(:disabled):not(.disabled).active, -.show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: black; - border-color: black; -} -.btn-dark:not(:disabled):not(.disabled):active:focus, -.btn-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-dark.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(39, 42, 61, 0.5); -} - -.btn-orange { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; - box-shadow: unset; -} -.btn-orange:hover { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; -} -.btn-orange:focus, -.btn-orange.focus { - color: #fff; - background-color: #ff641b; - border-color: #ff5b0e; - box-shadow: unset, 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} -.btn-orange.disabled, -.btn-orange:disabled { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-orange:not(:disabled):not(.disabled):active, -.btn-orange:not(:disabled):not(.disabled).active, -.show > .btn-orange.dropdown-toggle { - color: #fff; - background-color: #ff5b0e; - border-color: #ff5301; -} -.btn-orange:not(:disabled):not(.disabled):active:focus, -.btn-orange:not(:disabled):not(.disabled).active:focus, -.show > .btn-orange.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 145, 94, 0.5); -} - -.btn-purple { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; - box-shadow: unset; -} -.btn-purple:hover { - color: #fff; - background-color: #3b2998; - border-color: #37268e; -} -.btn-purple:focus, -.btn-purple.focus { - color: #fff; - background-color: #3b2998; - border-color: #37268e; - box-shadow: unset, 0 0 0 0.2rem rgba(99, 80, 193, 0.5); -} -.btn-purple.disabled, -.btn-purple:disabled { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-purple:not(:disabled):not(.disabled):active, -.btn-purple:not(:disabled):not(.disabled).active, -.show > .btn-purple.dropdown-toggle { - color: #fff; - background-color: #37268e; - border-color: #332384; -} -.btn-purple:not(:disabled):not(.disabled):active:focus, -.btn-purple:not(:disabled):not(.disabled).active:focus, -.show > .btn-purple.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(99, 80, 193, 0.5); -} - -.btn-skyblue { - color: #fff; - background-color: #158df7; - border-color: #158df7; - box-shadow: unset; -} -.btn-skyblue:hover { - color: #fff; - background-color: #087ade; - border-color: #0773d2; -} -.btn-skyblue:focus, -.btn-skyblue.focus { - color: #fff; - background-color: #087ade; - border-color: #0773d2; - box-shadow: unset, 0 0 0 0.2rem rgba(56, 158, 248, 0.5); -} -.btn-skyblue.disabled, -.btn-skyblue:disabled { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-skyblue:not(:disabled):not(.disabled):active, -.btn-skyblue:not(:disabled):not(.disabled).active, -.show > .btn-skyblue.dropdown-toggle { - color: #fff; - background-color: #0773d2; - border-color: #076cc5; -} -.btn-skyblue:not(:disabled):not(.disabled):active:focus, -.btn-skyblue:not(:disabled):not(.disabled).active:focus, -.show > .btn-skyblue.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(56, 158, 248, 0.5); -} - -.btn-light-gray { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; - box-shadow: unset; -} -.btn-light-gray:hover { - color: #212529; - background-color: #daddee; - border-color: #d1d5ea; -} -.btn-light-gray:focus, -.btn-light-gray.focus { - color: #212529; - background-color: #daddee; - border-color: #d1d5ea; - box-shadow: unset, 0 0 0 0.2rem rgba(212, 214, 219, 0.5); -} -.btn-light-gray.disabled, -.btn-light-gray:disabled { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-light-gray:not(:disabled):not(.disabled):active, -.btn-light-gray:not(:disabled):not(.disabled).active, -.show > .btn-light-gray.dropdown-toggle { - color: #212529; - background-color: #d1d5ea; - border-color: #c8cde6; -} -.btn-light-gray:not(:disabled):not(.disabled):active:focus, -.btn-light-gray:not(:disabled):not(.disabled).active:focus, -.show > .btn-light-gray.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(212, 214, 219, 0.5); -} - -.btn-outline-primary { - color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:focus, -.btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #32bdea; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled):active, -.btn-outline-primary:not(:disabled):not(.disabled).active, -.show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #32bdea; - border-color: #32bdea; -} -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, -.btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(50, 189, 234, 0.5); -} - -.btn-outline-secondary { - color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:focus, -.btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-secondary.disabled, -.btn-outline-secondary:disabled { - color: #ff7e41; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active, -.btn-outline-secondary:not(:disabled):not(.disabled).active, -.show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, -.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} - -.btn-outline-success { - color: #78c091; - border-color: #78c091; -} -.btn-outline-success:hover { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-outline-success:focus, -.btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} -.btn-outline-success.disabled, -.btn-outline-success:disabled { - color: #78c091; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled):active, -.btn-outline-success:not(:disabled):not(.disabled).active, -.show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #78c091; - border-color: #78c091; -} -.btn-outline-success:not(:disabled):not(.disabled):active:focus, -.btn-outline-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(120, 192, 145, 0.5); -} - -.btn-outline-info { - color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:hover { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:focus, -.btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} -.btn-outline-info.disabled, -.btn-outline-info:disabled { - color: #7ee2ff; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled):active, -.btn-outline-info:not(:disabled):not(.disabled).active, -.show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #7ee2ff; - border-color: #7ee2ff; -} -.btn-outline-info:not(:disabled):not(.disabled):active:focus, -.btn-outline-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(126, 226, 255, 0.5); -} - -.btn-outline-warning { - color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:hover { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:focus, -.btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} -.btn-outline-warning.disabled, -.btn-outline-warning:disabled { - color: #ff9770; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled):active, -.btn-outline-warning:not(:disabled):not(.disabled).active, -.show > .btn-outline-warning.dropdown-toggle { - color: #fff; - background-color: #ff9770; - border-color: #ff9770; -} -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, -.btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 151, 112, 0.5); -} - -.btn-outline-danger { - color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:focus, -.btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} -.btn-outline-danger.disabled, -.btn-outline-danger:disabled { - color: #e08db4; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled):active, -.btn-outline-danger:not(:disabled):not(.disabled).active, -.show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #e08db4; - border-color: #e08db4; -} -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, -.btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(224, 141, 180, 0.5); -} - -.btn-outline-light { - color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:hover { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:focus, -.btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} -.btn-outline-light.disabled, -.btn-outline-light:disabled { - color: #c7cbd3; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled):active, -.btn-outline-light:not(:disabled):not(.disabled).active, -.show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #c7cbd3; - border-color: #c7cbd3; -} -.btn-outline-light:not(:disabled):not(.disabled):active:focus, -.btn-outline-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(199, 203, 211, 0.5); -} - -.btn-outline-dark { - color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:focus, -.btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} -.btn-outline-dark.disabled, -.btn-outline-dark:disabled { - color: #01041b; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled):active, -.btn-outline-dark:not(:disabled):not(.disabled).active, -.show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #01041b; - border-color: #01041b; -} -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, -.btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(1, 4, 27, 0.5); -} - -.btn-outline-orange { - color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:hover { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:focus, -.btn-outline-orange.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} -.btn-outline-orange.disabled, -.btn-outline-orange:disabled { - color: #ff7e41; - background-color: transparent; -} -.btn-outline-orange:not(:disabled):not(.disabled):active, -.btn-outline-orange:not(:disabled):not(.disabled).active, -.show > .btn-outline-orange.dropdown-toggle { - color: #fff; - background-color: #ff7e41; - border-color: #ff7e41; -} -.btn-outline-orange:not(:disabled):not(.disabled):active:focus, -.btn-outline-orange:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-orange.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(255, 126, 65, 0.5); -} - -.btn-outline-purple { - color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:hover { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:focus, -.btn-outline-purple.focus { - box-shadow: 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} -.btn-outline-purple.disabled, -.btn-outline-purple:disabled { - color: #4731b6; - background-color: transparent; -} -.btn-outline-purple:not(:disabled):not(.disabled):active, -.btn-outline-purple:not(:disabled):not(.disabled).active, -.show > .btn-outline-purple.dropdown-toggle { - color: #fff; - background-color: #4731b6; - border-color: #4731b6; -} -.btn-outline-purple:not(:disabled):not(.disabled):active:focus, -.btn-outline-purple:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-purple.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(71, 49, 182, 0.5); -} - -.btn-outline-skyblue { - color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:hover { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:focus, -.btn-outline-skyblue.focus { - box-shadow: 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} -.btn-outline-skyblue.disabled, -.btn-outline-skyblue:disabled { - color: #158df7; - background-color: transparent; -} -.btn-outline-skyblue:not(:disabled):not(.disabled):active, -.btn-outline-skyblue:not(:disabled):not(.disabled).active, -.show > .btn-outline-skyblue.dropdown-toggle { - color: #fff; - background-color: #158df7; - border-color: #158df7; -} -.btn-outline-skyblue:not(:disabled):not(.disabled):active:focus, -.btn-outline-skyblue:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-skyblue.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(21, 141, 247, 0.5); -} - -.btn-outline-light-gray { - color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:hover { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:focus, -.btn-outline-light-gray.focus { - box-shadow: 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} -.btn-outline-light-gray.disabled, -.btn-outline-light-gray:disabled { - color: #f4f5fa; - background-color: transparent; -} -.btn-outline-light-gray:not(:disabled):not(.disabled):active, -.btn-outline-light-gray:not(:disabled):not(.disabled).active, -.show > .btn-outline-light-gray.dropdown-toggle { - color: #212529; - background-color: #f4f5fa; - border-color: #f4f5fa; -} -.btn-outline-light-gray:not(:disabled):not(.disabled):active:focus, -.btn-outline-light-gray:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-light-gray.dropdown-toggle:focus { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), - 0 0 0 0.2rem rgba(244, 245, 250, 0.5); -} - -.btn-link { - font-weight: 400; - color: #32bdea; - text-decoration: none; -} -.btn-link:hover { - color: #1393bc; - text-decoration: none; -} -.btn-link:focus, -.btn-link.focus { - text-decoration: none; -} -.btn-link:disabled, -.btn-link.disabled { - color: #6c757d; - pointer-events: none; -} - -.btn-lg, -.btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.btn-sm, -.btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.75rem; - line-height: 1.5; - border-radius: 10px; -} - -.btn-lg, -.btn-group-lg > .btn { - font-size: inherit; - padding: 0.7rem 1rem; -} - -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -/*----------------- Grid Boxes -----------------*/ -.card { - background: #fff; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; - margin-bottom: 30px; - border: 1px solid #dcdfe8; - box-shadow: none; -} -.card.card-transparent { - background: transparent; - border: none; - box-shadow: none; -} -.card.card-transparent .card-header { - background: transparent; - border-radius: 0; - margin-bottom: 0; - border: none; -} -.card .card-header { - background: transparent; - border-radius: 0; - padding: 20px 20px; - margin-bottom: 0; - -ms-flex-align: center !important; - align-items: center !important; - border: 0; - border-bottom: 1px solid #dcdfe8; -} -.card .card-header .header-title .card-title { - margin-bottom: 0; -} - -.card-body { - padding: 20px; -} - -.card-header-toolbar .nav-item a { - color: #676e8a; - padding: 4px 12px; - font-size: 14px; -} - -.card-header-toolbar .dropdown-toggle i { - font-size: 20px; - line-height: normal; - vertical-align: text-bottom; -} - -.card-header-toolbar .dropdown-toggle::after { - display: none; -} - -.card-header .dropdown-bg { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.card-block.card-stretch { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.card-block.card-height-third { - height: calc(33.33% - 30px); -} - -.card-block.card-height-half { - height: calc(50% - 30px); -} - -.card-block.card-height { - height: calc(100% - 30px); -} - -.card-block { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -/*! -Animate.css - http://daneden.me/animate -Licensed under the MIT license - -Copyright (c) 2013 Daniel Eden - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ -.animated { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.animated.hinge { - -webkit-animation-duration: 2s; - animation-duration: 2s; -} - -@-webkit-keyframes bounce { - 0%, - 20%, - 50%, - 80%, - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -@keyframes bounce { - 0%, - 20%, - 50%, - 80%, - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 40% { - -webkit-transform: translateY(-30px); - -ms-transform: translateY(-30px); - transform: translateY(-30px); - } - 60% { - -webkit-transform: translateY(-15px); - -ms-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -.bounce { - -webkit-animation-name: bounce; - animation-name: bounce; -} - -@-webkit-keyframes flash { - 0%, - 50%, - 100% { - opacity: 1; - } - 25%, - 75% { - opacity: 0; - } -} - -@keyframes flash { - 0%, - 50%, - 100% { - opacity: 1; - } - 25%, - 75% { - opacity: 0; - } -} - -.flash { - -webkit-animation-name: flash; - animation-name: flash; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes pulse { - 0% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - 50% { - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } -} - -.pulse { - -webkit-animation-name: pulse; - animation-name: pulse; -} - -@-webkit-keyframes shake { - 0%, - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } -} - -@keyframes shake { - 0%, - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translateX(-10px); - -ms-transform: translateX(-10px); - transform: translateX(-10px); - } - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translateX(10px); - -ms-transform: translateX(10px); - transform: translateX(10px); - } -} - -.shake { - -webkit-animation-name: shake; - animation-name: shake; -} - -@-webkit-keyframes swing { - 20% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 40% { - -webkit-transform: rotate(-10deg); - transform: rotate(-10deg); - } - 60% { - -webkit-transform: rotate(5deg); - transform: rotate(5deg); - } - 80% { - -webkit-transform: rotate(-5deg); - transform: rotate(-5deg); - } - 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -@keyframes swing { - 20% { - -webkit-transform: rotate(15deg); - -ms-transform: rotate(15deg); - transform: rotate(15deg); - } - 40% { - -webkit-transform: rotate(-10deg); - -ms-transform: rotate(-10deg); - transform: rotate(-10deg); - } - 60% { - -webkit-transform: rotate(5deg); - -ms-transform: rotate(5deg); - transform: rotate(5deg); - } - 80% { - -webkit-transform: rotate(-5deg); - -ms-transform: rotate(-5deg); - transform: rotate(-5deg); - } - 100% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -.swing { - -webkit-transform-origin: top center; - -ms-transform-origin: top center; - transform-origin: top center; - -webkit-animation-name: swing; - animation-name: swing; -} - -@-webkit-keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - 10%, - 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - 40%, - 60%, - 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - 100% { - -webkit-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -@keyframes tada { - 0% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - 10%, - 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - -ms-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale(1.1) rotate(3deg); - -ms-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - 40%, - 60%, - 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - -ms-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - 100% { - -webkit-transform: scale(1) rotate(0); - -ms-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -.tada { - -webkit-animation-name: tada; - animation-name: tada; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes wobble { - 0% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - 15% { - -webkit-transform: translateX(-25%) rotate(-5deg); - transform: translateX(-25%) rotate(-5deg); - } - 30% { - -webkit-transform: translateX(20%) rotate(3deg); - transform: translateX(20%) rotate(3deg); - } - 45% { - -webkit-transform: translateX(-15%) rotate(-3deg); - transform: translateX(-15%) rotate(-3deg); - } - 60% { - -webkit-transform: translateX(10%) rotate(2deg); - transform: translateX(10%) rotate(2deg); - } - 75% { - -webkit-transform: translateX(-5%) rotate(-1deg); - transform: translateX(-5%) rotate(-1deg); - } - 100% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -@keyframes wobble { - 0% { - -webkit-transform: translateX(0%); - -ms-transform: translateX(0%); - transform: translateX(0%); - } - 15% { - -webkit-transform: translateX(-25%) rotate(-5deg); - -ms-transform: translateX(-25%) rotate(-5deg); - transform: translateX(-25%) rotate(-5deg); - } - 30% { - -webkit-transform: translateX(20%) rotate(3deg); - -ms-transform: translateX(20%) rotate(3deg); - transform: translateX(20%) rotate(3deg); - } - 45% { - -webkit-transform: translateX(-15%) rotate(-3deg); - -ms-transform: translateX(-15%) rotate(-3deg); - transform: translateX(-15%) rotate(-3deg); - } - 60% { - -webkit-transform: translateX(10%) rotate(2deg); - -ms-transform: translateX(10%) rotate(2deg); - transform: translateX(10%) rotate(2deg); - } - 75% { - -webkit-transform: translateX(-5%) rotate(-1deg); - -ms-transform: translateX(-5%) rotate(-1deg); - transform: translateX(-5%) rotate(-1deg); - } - 100% { - -webkit-transform: translateX(0%); - -ms-transform: translateX(0%); - transform: translateX(0%); - } -} - -.wobble { - -webkit-animation-name: wobble; - animation-name: wobble; -} - -@-webkit-keyframes bounceIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.05); - transform: scale(1.05); - } - 70% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes bounceIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - -ms-transform: scale(0.3); - transform: scale(0.3); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); - } - 70% { - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); - } - 100% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } -} - -.bounceIn { - -webkit-animation-name: bounceIn; - animation-name: bounceIn; -} - -@-webkit-keyframes bounceInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(30px); - transform: translateY(30px); - } - 80% { - -webkit-transform: translateY(-10px); - transform: translateY(-10px); - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes bounceInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(30px); - -ms-transform: translateY(30px); - transform: translateY(30px); - } - 80% { - -webkit-transform: translateY(-10px); - -ms-transform: translateY(-10px); - transform: translateY(-10px); - } - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.bounceInDown { - -webkit-animation-name: bounceInDown; - animation-name: bounceInDown; -} - -@-webkit-keyframes bounceInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(30px); - transform: translateX(30px); - } - 80% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes bounceInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(30px); - -ms-transform: translateX(30px); - transform: translateX(30px); - } - 80% { - -webkit-transform: translateX(-10px); - -ms-transform: translateX(-10px); - transform: translateX(-10px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.bounceInLeft { - -webkit-animation-name: bounceInLeft; - animation-name: bounceInLeft; -} - -@-webkit-keyframes bounceInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(-30px); - transform: translateX(-30px); - } - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes bounceInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateX(-30px); - -ms-transform: translateX(-30px); - transform: translateX(-30px); - } - 80% { - -webkit-transform: translateX(10px); - -ms-transform: translateX(10px); - transform: translateX(10px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.bounceInRight { - -webkit-animation-name: bounceInRight; - animation-name: bounceInRight; -} - -@-webkit-keyframes bounceInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - 80% { - -webkit-transform: translateY(10px); - transform: translateY(10px); - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes bounceInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } - 60% { - opacity: 1; - -webkit-transform: translateY(-30px); - -ms-transform: translateY(-30px); - transform: translateY(-30px); - } - 80% { - -webkit-transform: translateY(10px); - -ms-transform: translateY(10px); - transform: translateY(10px); - } - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.bounceInUp { - -webkit-animation-name: bounceInUp; - animation-name: bounceInUp; -} - -@-webkit-keyframes bounceOut { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - 25% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } -} - -@keyframes bounceOut { - 0% { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - 25% { - -webkit-transform: scale(0.95); - -ms-transform: scale(0.95); - transform: scale(0.95); - } - 50% { - opacity: 1; - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); - } - 100% { - opacity: 0; - -webkit-transform: scale(0.3); - -ms-transform: scale(0.3); - transform: scale(0.3); - } -} - -.bounceOut { - -webkit-animation-name: bounceOut; - animation-name: bounceOut; -} - -@-webkit-keyframes bounceOutDown { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes bounceOutDown { - 0% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.bounceOutDown { - -webkit-animation-name: bounceOutDown; - animation-name: bounceOutDown; -} - -@-webkit-keyframes bounceOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes bounceOutLeft { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.bounceOutLeft { - -webkit-animation-name: bounceOutLeft; - animation-name: bounceOutLeft; -} - -@-webkit-keyframes bounceOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes bounceOutRight { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 20% { - opacity: 1; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.bounceOutRight { - -webkit-animation-name: bounceOutRight; - animation-name: bounceOutRight; -} - -@-webkit-keyframes bounceOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes bounceOutUp { - 0% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 20% { - opacity: 1; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.bounceOutUp { - -webkit-animation-name: bounceOutUp; - animation-name: bounceOutUp; -} - -@-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -.fadeIn { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -@-webkit-keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDown { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} - -@-webkit-keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDownBig { - -webkit-animation-name: fadeInDownBig; - animation-name: fadeInDownBig; -} - -@-webkit-keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeft { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} - -@-webkit-keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeftBig { - -webkit-animation-name: fadeInLeftBig; - animation-name: fadeInLeftBig; -} - -@-webkit-keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRight { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} - -@-webkit-keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRightBig { - -webkit-animation-name: fadeInRightBig; - animation-name: fadeInRightBig; -} - -@-webkit-keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUp { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} - -@-webkit-keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUpBig { - -webkit-animation-name: fadeInUpBig; - animation-name: fadeInUpBig; -} - -@-webkit-keyframes fadeOut { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - -@keyframes fadeOut { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - -.fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} - -@-webkit-keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } -} - -@keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } -} - -.fadeOutDown { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} - -@-webkit-keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.fadeOutDownBig { - -webkit-animation-name: fadeOutDownBig; - animation-name: fadeOutDownBig; -} - -@-webkit-keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -@keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -.fadeOutLeft { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} - -@-webkit-keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.fadeOutLeftBig { - -webkit-animation-name: fadeOutLeftBig; - animation-name: fadeOutLeftBig; -} - -@-webkit-keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } -} - -@keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } -} - -.fadeOutRight { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} - -@-webkit-keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.fadeOutRightBig { - -webkit-animation-name: fadeOutRightBig; - animation-name: fadeOutRightBig; -} - -@-webkit-keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -@keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -.fadeOutUp { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} - -@-webkit-keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.fadeOutUpBig { - -webkit-animation-name: fadeOutUpBig; - animation-name: fadeOutUpBig; -} - -@-webkit-keyframes flip { - 0% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 40% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) - scale(1); - transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 50% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) - scale(1); - transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 80% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) - scale(0.95); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 100% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -@keyframes flip { - 0% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - transform: perspective(400px) translateZ(0) rotateY(0) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 40% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) - scale(1); - -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - 50% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) - scale(1); - -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 80% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) - scale(0.95); - -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - 100% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -.animated.flip { - -webkit-backface-visibility: visible; - -ms-backface-visibility: visible; - backface-visibility: visible; - -webkit-animation-name: flip; - animation-name: flip; -} - -@-webkit-keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateX(-10deg); - transform: perspective(400px) rotateX(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateX(10deg); - transform: perspective(400px) rotateX(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} - -@keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotateX(90deg); - -ms-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateX(-10deg); - -ms-transform: perspective(400px) rotateX(-10deg); - transform: perspective(400px) rotateX(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateX(10deg); - -ms-transform: perspective(400px) rotateX(10deg); - transform: perspective(400px) rotateX(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateX(0deg); - -ms-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} - -.flipInX { - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInX; - animation-name: flipInX; -} - -@-webkit-keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateY(-10deg); - transform: perspective(400px) rotateY(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateY(10deg); - transform: perspective(400px) rotateY(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} - -@keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotateY(90deg); - -ms-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - 40% { - -webkit-transform: perspective(400px) rotateY(-10deg); - -ms-transform: perspective(400px) rotateY(-10deg); - transform: perspective(400px) rotateY(-10deg); - } - 70% { - -webkit-transform: perspective(400px) rotateY(10deg); - -ms-transform: perspective(400px) rotateY(10deg); - transform: perspective(400px) rotateY(10deg); - } - 100% { - -webkit-transform: perspective(400px) rotateY(0deg); - -ms-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} - -.flipInY { - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInY; - animation-name: flipInY; -} - -@-webkit-keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} - -@keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px) rotateX(0deg); - -ms-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateX(90deg); - -ms-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} - -.flipOutX { - -webkit-animation-name: flipOutX; - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -@-webkit-keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} - -@keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px) rotateY(0deg); - -ms-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - 100% { - -webkit-transform: perspective(400px) rotateY(90deg); - -ms-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} - -.flipOutY { - -webkit-backface-visibility: visible !important; - -ms-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipOutY; - animation-name: flipOutY; -} - -@-webkit-keyframes lightSpeedIn { - 0% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - 60% { - -webkit-transform: translateX(-20%) skewX(30deg); - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - 80% { - -webkit-transform: translateX(0%) skewX(-15deg); - transform: translateX(0%) skewX(-15deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } -} - -@keyframes lightSpeedIn { - 0% { - -webkit-transform: translateX(100%) skewX(-30deg); - -ms-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - 60% { - -webkit-transform: translateX(-20%) skewX(30deg); - -ms-transform: translateX(-20%) skewX(30deg); - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - 80% { - -webkit-transform: translateX(0%) skewX(-15deg); - -ms-transform: translateX(0%) skewX(-15deg); - transform: translateX(0%) skewX(-15deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(0%) skewX(0deg); - -ms-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } -} - -.lightSpeedIn { - -webkit-animation-name: lightSpeedIn; - animation-name: lightSpeedIn; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} - -@-webkit-keyframes lightSpeedOut { - 0% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} - -@keyframes lightSpeedOut { - 0% { - -webkit-transform: translateX(0%) skewX(0deg); - -ms-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } - 100% { - -webkit-transform: translateX(100%) skewX(-30deg); - -ms-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} - -.lightSpeedOut { - -webkit-animation-name: lightSpeedOut; - animation-name: lightSpeedOut; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} - -@-webkit-keyframes rotateIn { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(-200deg); - transform: rotate(-200deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateIn { - 0% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(-200deg); - -ms-transform: rotate(-200deg); - transform: rotate(-200deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateIn { - -webkit-animation-name: rotateIn; - animation-name: rotateIn; -} - -@-webkit-keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInDownLeft { - -webkit-animation-name: rotateInDownLeft; - animation-name: rotateInDownLeft; -} - -@-webkit-keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInDownRight { - -webkit-animation-name: rotateInDownRight; - animation-name: rotateInDownRight; -} - -@-webkit-keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInUpLeft { - -webkit-animation-name: rotateInUpLeft; - animation-name: rotateInUpLeft; -} - -@-webkit-keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInUpRight { - -webkit-animation-name: rotateInUpRight; - animation-name: rotateInUpRight; -} - -@-webkit-keyframes rotateOut { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(200deg); - transform: rotate(200deg); - opacity: 0; - } -} - -@keyframes rotateOut { - 0% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(200deg); - -ms-transform: rotate(200deg); - transform: rotate(200deg); - opacity: 0; - } -} - -.rotateOut { - -webkit-animation-name: rotateOut; - animation-name: rotateOut; -} - -@-webkit-keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -@keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -.rotateOutDownLeft { - -webkit-animation-name: rotateOutDownLeft; - animation-name: rotateOutDownLeft; -} - -@-webkit-keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -@keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -.rotateOutDownRight { - -webkit-animation-name: rotateOutDownRight; - animation-name: rotateOutDownRight; -} - -@-webkit-keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: left bottom; - -ms-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -.rotateOutUpLeft { - -webkit-animation-name: rotateOutUpLeft; - animation-name: rotateOutUpLeft; -} - -@-webkit-keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: right bottom; - -ms-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -.rotateOutUpRight { - -webkit-animation-name: rotateOutUpRight; - animation-name: rotateOutUpRight; -} - -@-webkit-keyframes slideInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes slideInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - 100% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.slideInDown { - -webkit-animation-name: slideInDown; - animation-name: slideInDown; -} - -@-webkit-keyframes slideInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes slideInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.slideInLeft { - -webkit-animation-name: slideInLeft; - animation-name: slideInLeft; -} - -@-webkit-keyframes slideInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes slideInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - 100% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.slideInRight { - -webkit-animation-name: slideInRight; - animation-name: slideInRight; -} - -@-webkit-keyframes slideOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes slideOutLeft { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.slideOutLeft { - -webkit-animation-name: slideOutLeft; - animation-name: slideOutLeft; -} - -@-webkit-keyframes slideOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes slideOutRight { - 0% { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.slideOutRight { - -webkit-animation-name: slideOutRight; - animation-name: slideOutRight; -} - -@-webkit-keyframes slideOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes slideOutUp { - 0% { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.slideOutUp { - -webkit-animation-name: slideOutUp; - animation-name: slideOutUp; -} - -@-webkit-keyframes hinge { - 0% { - -webkit-transform: rotate(0); - transform: rotate(0); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 20%, - 60% { - -webkit-transform: rotate(80deg); - transform: rotate(80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 40% { - -webkit-transform: rotate(60deg); - transform: rotate(60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 80% { - -webkit-transform: rotate(60deg) translateY(0); - transform: rotate(60deg) translateY(0); - opacity: 1; - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 100% { - -webkit-transform: translateY(700px); - transform: translateY(700px); - opacity: 0; - } -} - -@keyframes hinge { - 0% { - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 20%, - 60% { - -webkit-transform: rotate(80deg); - -ms-transform: rotate(80deg); - transform: rotate(80deg); - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 40% { - -webkit-transform: rotate(60deg); - -ms-transform: rotate(60deg); - transform: rotate(60deg); - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 80% { - -webkit-transform: rotate(60deg) translateY(0); - -ms-transform: rotate(60deg) translateY(0); - transform: rotate(60deg) translateY(0); - opacity: 1; - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - 100% { - -webkit-transform: translateY(700px); - -ms-transform: translateY(700px); - transform: translateY(700px); - opacity: 0; - } -} - -.hinge { - -webkit-animation-name: hinge; - animation-name: hinge; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translateX(-100%) rotate(-120deg); - transform: translateX(-100%) rotate(-120deg); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } -} - -@keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translateX(-100%) rotate(-120deg); - -ms-transform: translateX(-100%) rotate(-120deg); - transform: translateX(-100%) rotate(-120deg); - } - 100% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - -ms-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } -} - -.rollIn { - -webkit-animation-name: rollIn; - animation-name: rollIn; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes rollOut { - 0% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } - 100% { - opacity: 0; - -webkit-transform: translateX(100%) rotate(120deg); - transform: translateX(100%) rotate(120deg); - } -} - -@keyframes rollOut { - 0% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - -ms-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } - 100% { - opacity: 0; - -webkit-transform: translateX(100%) rotate(120deg); - -ms-transform: translateX(100%) rotate(120deg); - transform: translateX(100%) rotate(120deg); - } -} - -.rollOut { - -webkit-animation-name: rollOut; - animation-name: rollOut; -} - -.scroller { - overflow-y: auto; - scrollbar-color: #32bdea #88dffb; - scrollbar-width: thin; -} -.scroller::-webkit-scrollbar-thumb { - background-color: #32bdea; -} -.scroller::-webkit-scrollbar-track { - background-color: #88dffb; -} -.scroller::-moz-scrollbar-thumb { - background-color: #32bdea; -} -.scroller::-moz-scrollbar-track { - background-color: #88dffb; -} - -::-webkit-scrollbar { - width: 8px; - height: 8px; - border-radius: 20px; -} - -::-moz-scrollbar { - width: 8px; - height: 8px; - border-radius: 20px; -} - -::-webkit-scrollbar-track { - background: #dcdfe8; - border-radius: 20px; -} - -::-webkit-scrollbar-thumb { - background: #01041b; - border-radius: 20px; -} -::-webkit-scrollbar-thumb:hover { - background: #01041b; - border-radius: 20px; -} - -::-moz-scrollbar-thumb { - background: #01041b; - border-radius: 20px; -} -::-moz-scrollbar-thumb:hover { - background: #01041b; - border-radius: 20px; -} - -::-webkit-scrollbar { - width: 4px; - height: 8px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -::-moz-scrollbar { - width: 4px; - height: 8px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -.scrollbar-thumb { - width: 4px !important; -} - -.scrollbar-track-y { - width: 4px !important; -} - -body { - font-family: "Lato", sans-serif; - font-weight: 400; - font-style: normal; - font-size: 16px; - line-height: 29px; - padding: 0; - margin: 0; - color: #676e8a; - background: #ffffff; -} - -a:hover { - text-decoration: none; -} - -.btn i { - margin-right: 5px; -} - -.iq-mb-3 { - margin-bottom: 30px !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 600; -} - -button:focus { - outline: none; -} - -.line-height { - line-height: normal; -} - -.rounded-normal, -.rounded-small { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} - -:focus { - outline: none; -} - -.text-break { - word-break: break-all; -} - -.border-none { - border: none !important; -} - -.breadcrumb-item + .breadcrumb-item::before { - margin-top: 5px; -} - -.user-list-files { - justify-content: flex-end; -} -.user-list-files a { - padding: 10px 15px; - margin: 0 0 0 10px; - border-radius: 5px; - line-height: normal; -} - -code { - color: #e08db4; -} - -.slick-loading .slick-list { - background: transparent !important; -} - -ul.iq-edit-profile li a { - padding: 1rem 1rem !important; - text-align: center; -} - -.change-mode { - margin-right: 0; - margin-top: 0px; -} -.change-mode .custom-switch.custom-switch-icon .custom-control-input { - height: 100%; -} -.change-mode - .custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:after { - transform: translateX(1.6rem); -} -.change-mode - .custom-switch.custom-switch-icon - .custom-control-input:checked - ~ .custom-control-label:before { - background-color: #0d0d0d; - border-color: #0d0d0d; -} -.change-mode .custom-switch.custom-switch-icon label.custom-control-label { - height: 31px; - width: 30px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label:after { - top: 0; - left: 0; - width: 35px; - height: 30px; - -webkit-border-radius: 5px 0 0 5px; - -moz-border-radius: 5px 0 0 5px; - -ms-border-radius: 5px 0 0 5px; - -o-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; - background-color: #32bdea; - border-color: #32bdea; - z-index: 0; - display: none; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label:before { - width: 38px; - height: 38px; - top: 0; - left: 0; - background-color: #fff; - border: 1px solid #dcdfe8; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - -o-border-radius: 10px; - border-radius: 10px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-left { - top: 5px; - z-index: 1; - left: 11px; - line-height: 24px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-left - i { - font-size: 16px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-right { - right: 3px; - top: 5px; - line-height: 24px; -} -.change-mode - .custom-switch.custom-switch-icon - label.custom-control-label - .switch-icon-right - i { - font-size: 16px; -} - -.custom-control-input:focus ~ .custom-control-label:before { - box-shadow: none !important; -} - -g[aria-describedby="id-22-description"] { - stroke: none; -} - -@media (min-width: 1400px) { - .container { - max-width: 1300px; - } - .container-lg { - max-width: 1300px; - } - .container-md { - max-width: 1300px; - } - .container-sm { - max-width: 1300px; - } - .container-xl { - max-width: 1300px; - } -} - -@media (max-width: 1300px) { - .flatpickr-rContainer { - padding-right: 40px; - } - .flatpickr-months .flatpickr-next-month { - padding-right: 40px; - } - .flatpickr-months .flatpickr-prev-month { - padding-right: 40px; - } - .flatpickr-current-month { - left: 7.5%; - } -} - -@media (max-width: 767px) { - .table { - width: 100%; - max-width: 100%; - margin-bottom: 1rem; - display: block; - overflow-x: auto; - } - .tree { - display: inline-table; - } -} - -@media (max-width: 575px) { - .user-list-files { - justify-content: center; - margin-top: 15px; - } -} diff --git a/static/css/monigo-styles.css b/static/css/monigo-styles.css deleted file mode 100644 index 6e5192e..0000000 --- a/static/css/monigo-styles.css +++ /dev/null @@ -1,99 +0,0 @@ -.loader-container { - display: flex; - justify-content: center; - align-items: center; -} - -.bouncing-dots { - display: flex; - justify-content: space-between; - width: 40px; -} - -.dot { - width: 10px; - height: 10px; - background-color: #FF5C35; - border-radius: 70%; - animation: bounce 1.5s infinite; -} - -.dot:nth-child(1) { - animation-delay: 0s; -} - -.dot:nth-child(2) { - animation-delay: 0.3s; -} - -.dot:nth-child(3) { - animation-delay: 0.6s; -} - -@keyframes bounce { - - 0%, - 100% { - transform: translateY(0); - } - - 50% { - transform: translateY(-20px); - } -} - -.health-indicator { - width: 12px; - height: 12px; - border-radius: 50%; - margin-right: 5px; - margin-left: 5px; - display: inline-block; -} - -.health-indicator.healthy { - background-color: green; -} - -.health-indicator.unhealthy { - background-color: red; -} - -.chart-container { - height: 300px; - padding: 10px; -} - -.card-header-toolbar { - padding: 1rem; -} - -.dropdown { - display: flex; - align-items: center; -} - -.dropdown-label { - margin-right: 0.5rem; - font-weight: bold; -} - -.dropdown-select { - border: 1px solid #ddd; - border-radius: 10px; - padding: 0.4rem; - background-color: #fff; - font-size: 1rem; - cursor: pointer; -} - -.chart-container { - margin-left: 1rem; - flex-grow: 1; -} - -.service-health{ - margin-left: 30px; -} - -/* Function Stack View CSS */ diff --git a/static/function-metrics.html b/static/function-metrics.html deleted file mode 100644 index 567df0e..0000000 --- a/static/function-metrics.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - Monigo - Metrics Dashboard - - - - - - - - - - -
-
-
-
- - -
- -
-
- -
-
-
-
-
-
-
-
-

Function Metrics

-

Monitor the performance metrics of functions running in your - application. This provides insights into function performance - and overall application efficiency. -

-
-
-
-
-
-
-
-
-
-
- image -
-
-

Total Functions:

-
-
-
-
- - -
-
-
-
-
-
-
-
-
- image -
-
-

Missing a feature or field? Please submit a GitHub issue to help us improve the project.

-

Easy integration and comprehensive monitoring

-
- - Feature Request - -
-
- - -
-
-
-
-
-
- - -
-
-
-
-

Runtime Function Metrics

-
- -
-
-
- -
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/go-routines-stats.html b/static/go-routines-stats.html deleted file mode 100644 index a53b3d4..0000000 --- a/static/go-routines-stats.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - Monigo - Metrics Dashboard - - - - - - - - - - - - -
-
-
-
- - -
- - -
-
- -
-
-
-
-
-
-
-
-

Go Routines Stats

-

- Monitor the number of goroutines running in your Go application. This dashboard provides - real-time insights into goroutine activity and performance. -

- You can examine the stack trace for each goroutine to identify potential issues or bottlenecks. - For bug reports or feature requests, please use GitHub issues. -

-
Total Number of Go routines: 0
- -
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-

Go Routines Stack View

-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/index.html b/static/index.html deleted file mode 100644 index ae957f8..0000000 --- a/static/index.html +++ /dev/null @@ -1,897 +0,0 @@ - - - - - - - Monigo - Metrics Dashboard - - - - - - - - - - - - -
-
-
- - -
- -
-
- -
-
-
-
-
-
-
-
-
-

- Health Info - i -

-
-
-
-
- - ... - -
-
-
-
-
-
-
-
-
-
- GoRoutines Image -
-
-
- - -
-
-
-
-
-
-
-
- GoRoutines Image -
-
-
- - -
-
-
-
-
-
-
-
-
- Load Image -
-
-
-
-
- Load Image -
-
-
-
- - -
-
-
-
-
-
-
-
- -
-
-
-
-
- GoRoutines Image -
-
- -
-
- - -
-
-
-
-
-
-
-
-
- Load Image -
-
-
- - -
-
-
- - -
-
-
-
-
-
-
-
-
- Cores Image -
-
-
- - -
-
-
- - -
-
-
-
-
-
-
-
-
- Memory Image -
-
-
- - -
-
-
- - -
-
-
-
-
-
-
-
-
- CPU Usage Image -
-
-
-
- - -
-
-
-
-
-
-
-
-
- Uptime Image -
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-

- Load Statistics - i -

-
- -
-
-
-
-
-
-
-
-
-
-

- CPU Statistics - i -

-
- -
-
-
-
-
-
-
-
-
-
-

- Memory Statistics - i -

-
- -
-
-
-
-
-
-
-
-
-
-

- Heap Memory Usage - i -

-
- -
-
-
-
-
-
-
-
-
-
-

- History Statistics Overview -

-
-
- -
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-

- CPU Usage - i -

-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-

- GoRoutines Statistics - i -

-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-

- Load & Memory Statistics - i -

-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-

- Health Statistics - i -

-
- -
-
- -
-
-
-
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/js/common.js b/static/js/common.js deleted file mode 100644 index f0c2d21..0000000 --- a/static/js/common.js +++ /dev/null @@ -1,94 +0,0 @@ -document.addEventListener('DOMContentLoaded', () => { - const refreshHtml = ` -
-
-
-
-
-
-
`; - - // Function to get API key from URL parameters - function getApiKey() { - const urlParams = new URLSearchParams(window.location.search); - return urlParams.get('api_key'); - } - - // Function to add API key to fetch URL (only for API key auth) - function addApiKeyToUrl(url) { - const apiKey = getApiKey(); - if (apiKey) { - const separator = url.includes('?') ? '&' : '?'; - return `${url}${separator}api_key=${encodeURIComponent(apiKey)}`; - } - return url; - } - - // Function to make authenticated fetch request - function authenticatedFetch(url, options = {}) { - const apiKey = getApiKey(); - if (apiKey) { - // API key authentication - add to URL - const separator = url.includes('?') ? '&' : '?'; - url = `${url}${separator}api_key=${encodeURIComponent(apiKey)}`; - } else { - // Check for custom authentication methods - const urlParams = new URLSearchParams(window.location.search); - const secret = urlParams.get('secret'); - - if (secret === 'monigo-admin-secret') { - // Custom query parameter authentication - const separator = url.includes('?') ? '&' : '?'; - url = `${url}${separator}secret=${encodeURIComponent(secret)}`; - } else { - // Check for custom header authentication - // For custom auth, we need to add headers - if (!options.headers) { - options.headers = {}; - } - - // Add custom header for admin access - options.headers['X-User-Role'] = 'admin'; - - // Set custom user agent for automated access - options.headers['User-Agent'] = 'MoniGo-Admin/1.0'; - } - } - // For basic auth, the browser handles credentials automatically - return fetch(url, options); - } - - const elements = { - healthMessage: document.getElementById('health-message'), - }; - - Object.values(elements).forEach(el => el && (el.innerHTML = refreshHtml)); - - function fetchMetrics() { - authenticatedFetch(`/monigo/api/v1/metrics`) - .then(response => response.json()) - .then(data => { - const { - // core_statistics, - // load_statistics, - // cpu_statistics, - // memory_statistics, - health - } = data; - const healthIndicator = document.getElementById('health-indicator'); - if (health.service_health.healthy) { - healthIndicator.classList.add('healthy'); - document.getElementById('health-message').textContent = health.service_health.message; - } else { - healthIndicator.classList.add('unhealthy'); - document.getElementById('health-message').textContent = health.service_health.message; - } - }) - .catch(error => { - console.error('Error fetching metrics:', error); - }); - } - - // on page refresh - fetchMetrics(); -}); \ No newline at end of file diff --git a/static/js/core/app.js b/static/js/core/app.js deleted file mode 100644 index 54a4a7e..0000000 --- a/static/js/core/app.js +++ /dev/null @@ -1,604 +0,0 @@ -/*---------------------------------------------- -Index Of Script ------------------------------------------------- - -:: Tooltip -:: Fixed Nav -:: Magnific Popup -:: Ripple Effect -:: Sidebar Widget -:: FullScreen -:: Page Loader -:: Counter -:: Progress Bar -:: Page Menu -:: Close navbar Toggle -:: Mailbox -:: chatuser -:: chatuser main -:: Chat start -:: todo Page -:: user toggle -:: Data tables -:: Form Validation -:: Active Class for Pricing Table -:: Flatpicker -:: Scrollbar -:: checkout -:: Datatables -:: image-upload -:: video -:: Button -:: Pricing tab - ------------------------------------------------- -Index Of Script -----------------------------------------------*/ - -(function (jQuery) { - "use strict"; - - /*--------------------------------------------------------------------- - Tooltip - -----------------------------------------------------------------------*/ - jQuery('[data-toggle="popover"]').popover(); - jQuery('[data-toggle="tooltip"]').tooltip(); - - /*--------------------------------------------------------------------- - Fixed Nav - -----------------------------------------------------------------------*/ - - $(window).on("scroll", function () { - if ($(window).scrollTop() > 0) { - $(".iq-top-navbar").addClass("fixed"); - } else { - $(".iq-top-navbar").removeClass("fixed"); - } - }); - - $(window).on("scroll", function () { - if ($(window).scrollTop() > 0) { - $(".white-bg-menu").addClass("sticky-menu"); - } else { - $(".white-bg-menu").removeClass("sticky-menu"); - } - }); - - /*--------------------------------------------------------------------- - Magnific Popup - -----------------------------------------------------------------------*/ - if (typeof $.fn.magnificPopup !== typeof undefined) { - jQuery(".popup-gallery").magnificPopup({ - delegate: "a.popup-img", - type: "image", - tLoading: "Loading image #%curr%...", - mainClass: "mfp-img-mobile", - gallery: { - enabled: true, - navigateByImgClick: true, - preload: [0, 1], // Will preload 0 - before current, and 1 after the current image - }, - image: { - tError: 'The image #%curr% could not be loaded.', - titleSrc: function (item) { - return item.el.attr("title") + "by Marsel Van Oosten"; - }, - }, - }); - jQuery(".popup-youtube, .popup-vimeo, .popup-gmaps").magnificPopup({ - disableOn: 700, - type: "iframe", - mainClass: "mfp-fade", - removalDelay: 160, - preloader: false, - fixedContentPos: false, - }); - } - - /*--------------------------------------------------------------------- - Ripple Effect - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".iq-waves-effect", function (e) { - // Remove any old one - jQuery(".ripple").remove(); - // Setup - let posX = jQuery(this).offset().left, - posY = jQuery(this).offset().top, - buttonWidth = jQuery(this).width(), - buttonHeight = jQuery(this).height(); - - // Add the element - jQuery(this).prepend(""); - - // Make it round! - if (buttonWidth >= buttonHeight) { - buttonHeight = buttonWidth; - } else { - buttonWidth = buttonHeight; - } - - // Get the center of the element - let x = e.pageX - posX - buttonWidth / 2; - let y = e.pageY - posY - buttonHeight / 2; - - // Add the ripples CSS and start the animation - jQuery(".ripple") - .css({ - width: buttonWidth, - height: buttonHeight, - top: y + "px", - left: x + "px", - }) - .addClass("rippleEffect"); - }); - - /*--------------------------------------------------------------------- - Sidebar Widget - -----------------------------------------------------------------------*/ - - jQuery(document).on("click", ".iq-menu > li > a", function () { - jQuery(".iq-menu > li > a").parent().removeClass("active"); - jQuery(this).parent().addClass("active"); - }); - - // Active menu - var parents = jQuery("li.active").parents(".iq-submenu.collapse"); - - parents.addClass("show"); - - parents.parents("li").addClass("active"); - jQuery('li.active > a[aria-expanded="false"]').attr("aria-expanded", "true"); - - /*--------------------------------------------------------------------- - FullScreen - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".iq-full-screen", function () { - let elem = jQuery(this); - if ( - !document.fullscreenElement && - !document.mozFullScreenElement && // Mozilla - !document.webkitFullscreenElement && // Webkit-Browser - !document.msFullscreenElement - ) { - // MS IE ab version 11 - - if (document.documentElement.requestFullscreen) { - document.documentElement.requestFullscreen(); - } else if (document.documentElement.mozRequestFullScreen) { - document.documentElement.mozRequestFullScreen(); - } else if (document.documentElement.webkitRequestFullscreen) { - document.documentElement.webkitRequestFullscreen( - Element.ALLOW_KEYBOARD_INPUT - ); - } else if (document.documentElement.msRequestFullscreen) { - document.documentElement.msRequestFullscreen( - Element.ALLOW_KEYBOARD_INPUT - ); - } - } else { - if (document.cancelFullScreen) { - document.cancelFullScreen(); - } else if (document.mozCancelFullScreen) { - document.mozCancelFullScreen(); - } else if (document.webkitCancelFullScreen) { - document.webkitCancelFullScreen(); - } else if (document.msExitFullscreen) { - document.msExitFullscreen(); - } - } - elem - .find("i") - .toggleClass("ri-fullscreen-line") - .toggleClass("ri-fullscreen-exit-line"); - }); - - /*--------------------------------------------------------------------- - Page Loader - -----------------------------------------------------------------------*/ - jQuery("#load").fadeOut(); - jQuery("#loading").delay().fadeOut(""); - - /*--------------------------------------------------------------------- - Counter - -----------------------------------------------------------------------*/ - if (window.counterUp !== undefined) { - const counterUp = window.counterUp["default"]; - const $counters = $(".counter"); - $counters.each(function (ignore, counter) { - var waypoint = new Waypoint({ - element: $(this), - handler: function () { - counterUp(counter, { - duration: 1000, - delay: 10, - }); - this.destroy(); - }, - offset: "bottom-in-view", - }); - }); - } - - /*--------------------------------------------------------------------- - Progress Bar - -----------------------------------------------------------------------*/ - jQuery(".iq-progress-bar > span").each(function () { - let progressBar = jQuery(this); - let width = jQuery(this).data("percent"); - progressBar.css({ - transition: "width 2s", - }); - - setTimeout(function () { - progressBar.appear(function () { - progressBar.css("width", width + "%"); - }); - }, 100); - }); - - jQuery(".progress-bar-vertical > span").each(function () { - let progressBar = jQuery(this); - let height = jQuery(this).data("percent"); - progressBar.css({ - transition: "height 2s", - }); - setTimeout(function () { - progressBar.appear(function () { - progressBar.css("height", height + "%"); - }); - }, 100); - }); - - /*--------------------------------------------------------------------- - Page Menu - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".wrapper-menu", function () { - jQuery(this).toggleClass("open"); - }); - - jQuery(document).on("click", ".wrapper-menu", function () { - jQuery("body").toggleClass("sidebar-main"); - }); - - /*--------------------------------------------------------------------- - Close navbar Toggle - -----------------------------------------------------------------------*/ - - jQuery(".close-toggle").on("click", function () { - jQuery(".h-collapse.navbar-collapse").collapse("hide"); - }); - - /*--------------------------------------------------------------------- - Mailbox - -----------------------------------------------------------------------*/ - jQuery(document).on("click", "ul.iq-email-sender-list li", function () { - jQuery(this).next().addClass("show"); - // jQuery('.mail-box-detail').css('filter','blur(4px)'); - }); - - jQuery(document).on("click", ".email-app-details li h4", function () { - jQuery(".email-app-details").removeClass("show"); - }); - - /*--------------------------------------------------------------------- - chatuser - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".chat-head .chat-user-profile", function () { - jQuery(this).parent().next().toggleClass("show"); - }); - jQuery(document).on("click", ".user-profile .close-popup", function () { - jQuery(this).parent().parent().removeClass("show"); - }); - - /*--------------------------------------------------------------------- - chatuser main - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".chat-search .chat-profile", function () { - jQuery(this).parent().next().toggleClass("show"); - }); - jQuery(document).on("click", ".user-profile .close-popup", function () { - jQuery(this).parent().parent().removeClass("show"); - }); - - /*--------------------------------------------------------------------- - Chat start - -----------------------------------------------------------------------*/ - jQuery(document).on("click", "#chat-start", function () { - jQuery(".chat-data-left").toggleClass("show"); - }); - jQuery(document).on("click", ".close-btn-res", function () { - jQuery(".chat-data-left").removeClass("show"); - }); - jQuery(document).on("click", ".iq-chat-ui li", function () { - jQuery(".chat-data-left").removeClass("show"); - }); - jQuery(document).on("click", ".sidebar-toggle", function () { - jQuery(".chat-data-left").addClass("show"); - }); - - /*--------------------------------------------------------------------- - todo Page - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".todo-task-list > li > a", function () { - jQuery(".todo-task-list li").removeClass("active"); - jQuery(".todo-task-list .sub-task").removeClass("show"); - jQuery(this).parent().toggleClass("active"); - jQuery(this).next().toggleClass("show"); - }); - jQuery(document).on("click", ".todo-task-list > li li > a", function () { - jQuery(".todo-task-list li li").removeClass("active"); - jQuery(this).parent().toggleClass("active"); - }); - - /*--------------------------------------------------------------------- - user toggle - -----------------------------------------------------------------------*/ - jQuery(document).on("click", ".iq-user-toggle", function () { - jQuery(this).parent().addClass("show-data"); - }); - - jQuery(document).on("click", ".close-data", function () { - jQuery(".iq-user-toggle").parent().removeClass("show-data"); - }); - jQuery(document).on("click", function (event) { - var $trigger = jQuery(".iq-user-toggle"); - if ($trigger !== event.target && !$trigger.has(event.target).length) { - jQuery(".iq-user-toggle").parent().removeClass("show-data"); - } - }); - /*-------hide profile when scrolling--------*/ - jQuery(window).scroll(function () { - let scroll = jQuery(window).scrollTop(); - if ( - scroll >= 10 && - jQuery(".iq-user-toggle").parent().hasClass("show-data") - ) { - jQuery(".iq-user-toggle").parent().removeClass("show-data"); - } - }); - let Scrollbar = window.Scrollbar; - if (jQuery(".data-scrollbar").length) { - Scrollbar.init(document.querySelector(".data-scrollbar"), { - continuousScrolling: false, - }); - } - - /*--------------------------------------------------------------------- - Datatables - -----------------------------------------------------------------------*/ - if (jQuery(".data-tables").length) { - $(".data-tables").DataTable(); - } - - /*--------------------------------------------------------------------- - Form Validation - -----------------------------------------------------------------------*/ - - // Example starter JavaScript for disabling form submissions if there are invalid fields - window.addEventListener( - "load", - function () { - // Fetch all the forms we want to apply custom Bootstrap validation styles to - var forms = document.getElementsByClassName("needs-validation"); - // Loop over them and prevent submission - var validation = Array.prototype.filter.call(forms, function (form) { - form.addEventListener( - "submit", - function (event) { - if (form.checkValidity() === false) { - event.preventDefault(); - event.stopPropagation(); - } - form.classList.add("was-validated"); - }, - false - ); - }); - }, - false - ); - - /*--------------------------------------------------------------------- - Active Class for Pricing Table - -----------------------------------------------------------------------*/ - jQuery("#my-table tr th").click(function () { - jQuery("#my-table tr th").children().removeClass("active"); - jQuery(this).children().addClass("active"); - jQuery("#my-table td").each(function () { - if (jQuery(this).hasClass("active")) { - jQuery(this).removeClass("active"); - } - }); - var col = jQuery(this).index(); - jQuery("#my-table tr td:nth-child(" + parseInt(col + 1) + ")").addClass( - "active" - ); - }); - - /*------------------------------------------------------------------ - Select 2 Selectpicker - * -----------------------------------------------------------------*/ - - if ($.fn.select2 !== undefined) { - $("#single").select2({ - placeholder: "Select a Option", - allowClear: true, - }); - $("#multiple").select2({ - placeholder: "Select a Multiple Option", - allowClear: true, - }); - $("#multiple2").select2({ - placeholder: "Select a Multiple Option", - allowClear: true, - }); - } - - /*------------------------------------------------------------------ - Flatpicker - * -----------------------------------------------------------------*/ - if (jQuery.fn.flatpickr !== undefined) { - if (jQuery(".basicFlatpickr").length > 0) { - jQuery(".basicFlatpickr").flatpickr(); - } - - if (jQuery("#inputTime").length > 0) { - jQuery("#inputTime").flatpickr({ - enableTime: true, - noCalendar: true, - dateFormat: "H:i", - }); - } - if (jQuery("#inputDatetime").length > 0) { - jQuery("#inputDatetime").flatpickr({ - enableTime: true, - }); - } - if (jQuery("#inputWeek").length > 0) { - jQuery("#inputWeek").flatpickr({ - weekNumbers: true, - }); - } - if (jQuery("#inline-date").length > 0) { - jQuery("#inline-date").flatpickr({ - inline: true, - }); - } - if (jQuery("#inline-date1").length > 0) { - jQuery("#inline-date1").flatpickr({ - inline: true, - }); - } - } - - /*--------------------------------------------------------------------- - Scrollbar - -----------------------------------------------------------------------*/ - - jQuery(window) - .on("resize", function () { - if (jQuery(this).width() <= 1299) { - jQuery("#salon-scrollbar").addClass("data-scrollbar"); - } else { - jQuery("#salon-scrollbar").removeClass("data-scrollbar"); - } - }) - .trigger("resize"); - - jQuery(".data-scrollbar").each(function () { - var attr = $(this).attr("data-scroll"); - if (typeof attr !== typeof undefined && attr !== false) { - let Scrollbar = window.Scrollbar; - var a = jQuery(this).data("scroll"); - Scrollbar.init(document.querySelector('div[data-scroll= "' + a + '"]')); - } - }); - - /*--------------------------------------------------------------------- - Pricing tab - -----------------------------------------------------------------------*/ - jQuery(window).on("scroll", function (e) { - // Pricing Pill Tab - var nav = jQuery("#pricing-pills-tab"); - if (nav.length) { - var contentNav = nav.offset().top - window.outerHeight; - if (jQuery(window).scrollTop() >= contentNav) { - e.preventDefault(); - jQuery("#pricing-pills-tab li a").removeClass("active"); - jQuery("#pricing-pills-tab li a[aria-selected=true]").addClass( - "active" - ); - } - } - }); - - /*--------------------------------------------------------------------- - Sweet alt Delete - -----------------------------------------------------------------------*/ - $('[data-extra-toggle="delete"]').on("click", function (e) { - const closestElem = $(this).attr("data-closest-elem"); - const swalWithBootstrapButtons = Swal.mixin({ - customClass: { - confirmButton: "btn btn-primary", - cancelButton: "btn btn-outline-primary ml-2", - }, - buttonsStyling: false, - }); - - swalWithBootstrapButtons - .fire({ - title: "Are you sure?", - text: "You won't be able to revert this!", - icon: "warning", - showCancelButton: true, - confirmButtonText: "Yes, delete it!", - showClass: { - popup: "animate__animated animate__zoomIn", - }, - hideClass: { - popup: "animate__animated animate__zoomOut", - }, - }) - .then((willDelete) => { - if (willDelete.isConfirmed) { - swalWithBootstrapButtons - .fire({ - title: "Deleted!", - text: "Your note has been deleted.", - icon: "success", - showClass: { - popup: "animate__animated animate__zoomIn", - }, - hideClass: { - popup: "animate__animated animate__zoomOut", - }, - }) - .then(() => { - if (closestElem == ".card") { - $(this).closest(closestElem).parent().remove(); - } else { - $(this).closest(closestElem).remove(); - } - }); - } else { - swalWithBootstrapButtons.fire({ - title: "Your note is safe!", - showClass: { - popup: "animate__animated animate__zoomIn", - }, - hideClass: { - popup: "animate__animated animate__zoomOut", - }, - }); - } - }); - }); - - if ($.fn.slick !== undefined && $(".top-product").length > 0) { - jQuery(".top-product").slick({ - slidesToShow: 3, - speed: 300, - slidesToScroll: 1, - focusOnSelect: true, - autoplay: true, - arrows: false, - responsive: [ - { - breakpoint: 768, - settings: { - arrows: false, - slidesToShow: 2, - }, - }, - { - breakpoint: 480, - settings: { - arrows: false, - autoplay: true, - slidesToShow: 1, - }, - }, - ], - }); - } -})(jQuery); diff --git a/static/js/core/backend-bundle.min.js b/static/js/core/backend-bundle.min.js deleted file mode 100644 index 62b5eae..0000000 --- a/static/js/core/backend-bundle.min.js +++ /dev/null @@ -1,172 +0,0 @@ -/*! - * jQuery JavaScript Library v3.6.0 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright OpenJS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2021-03-02T17:08Z - */ -!function(t,e){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=t.document?e(t,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(t)}("undefined"!=typeof window?window:this,(function(t,e){"use strict";var i=[],n=Object.getPrototypeOf,r=i.slice,o=i.flat?function(t){return i.flat.call(t)}:function(t){return i.concat.apply([],t)},a=i.push,s=i.indexOf,l={},c=l.toString,h=l.hasOwnProperty,u=h.toString,d=u.call(Object),p={},f=function(t){return"function"==typeof t&&"number"!=typeof t.nodeType&&"function"!=typeof t.item},g=function(t){return null!=t&&t===t.window},m=t.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function v(t,e,i){var n,r,o=(i=i||m).createElement("script");if(o.text=t,e)for(n in y)(r=e[n]||e.getAttribute&&e.getAttribute(n))&&o.setAttribute(n,r);i.head.appendChild(o).parentNode.removeChild(o)}function b(t){return null==t?t+"":"object"==typeof t||"function"==typeof t?l[c.call(t)]||"object":typeof t}var x="3.6.0",w=function(t,e){return new w.fn.init(t,e)};function _(t){var e=!!t&&"length"in t&&t.length,i=b(t);return!f(t)&&!g(t)&&("array"===i||0===e||"number"==typeof e&&e>0&&e-1 in t)}w.fn=w.prototype={jquery:x,constructor:w,length:0,toArray:function(){return r.call(this)},get:function(t){return null==t?r.call(this):t<0?this[t+this.length]:this[t]},pushStack:function(t){var e=w.merge(this.constructor(),t);return e.prevObject=this,e},each:function(t){return w.each(this,t)},map:function(t){return this.pushStack(w.map(this,(function(e,i){return t.call(e,i,e)})))},slice:function(){return this.pushStack(r.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(w.grep(this,(function(t,e){return(e+1)%2})))},odd:function(){return this.pushStack(w.grep(this,(function(t,e){return e%2})))},eq:function(t){var e=this.length,i=+t+(t<0?e:0);return this.pushStack(i>=0&&i+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),Y=new RegExp(F+"|>"),G=new RegExp(z),U=new RegExp("^"+R+"$"),q={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+V),PSEUDO:new RegExp("^"+z),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+N+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},$=/HTML$/i,K=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,tt=/[+~]/,et=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),it=function(t,e){var i="0x"+t.slice(1)-65536;return e||(i<0?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320))},nt=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,rt=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},ot=function(){d()},at=xt((function(t){return!0===t.disabled&&"fieldset"===t.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{D.apply(M=L.call(w.childNodes),w.childNodes),M[w.childNodes.length].nodeType}catch(t){D={apply:M.length?function(t,e){I.apply(t,L.call(e))}:function(t,e){for(var i=t.length,n=0;t[i++]=e[n++];);t.length=i-1}}}function st(t,e,n,r){var o,s,c,h,u,f,y,v=e&&e.ownerDocument,w=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==w&&9!==w&&11!==w)return n;if(!r&&(d(e),e=e||p,g)){if(11!==w&&(u=Q.exec(t)))if(o=u[1]){if(9===w){if(!(c=e.getElementById(o)))return n;if(c.id===o)return n.push(c),n}else if(v&&(c=v.getElementById(o))&&b(e,c)&&c.id===o)return n.push(c),n}else{if(u[2])return D.apply(n,e.getElementsByTagName(t)),n;if((o=u[3])&&i.getElementsByClassName&&e.getElementsByClassName)return D.apply(n,e.getElementsByClassName(o)),n}if(i.qsa&&!T[t+" "]&&(!m||!m.test(t))&&(1!==w||"object"!==e.nodeName.toLowerCase())){if(y=t,v=e,1===w&&(Y.test(t)||X.test(t))){for((v=tt.test(t)&&yt(e.parentNode)||e)===e&&i.scope||((h=e.getAttribute("id"))?h=h.replace(nt,rt):e.setAttribute("id",h=x)),s=(f=a(t)).length;s--;)f[s]=(h?"#"+h:":scope")+" "+bt(f[s]);y=f.join(",")}try{return D.apply(n,v.querySelectorAll(y)),n}catch(e){T(t,!0)}finally{h===x&&e.removeAttribute("id")}}}return l(t.replace(H,"$1"),e,n,r)}function lt(){var t=[];return function e(i,r){return t.push(i+" ")>n.cacheLength&&delete e[t.shift()],e[i+" "]=r}}function ct(t){return t[x]=!0,t}function ht(t){var e=p.createElement("fieldset");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function ut(t,e){for(var i=t.split("|"),r=i.length;r--;)n.attrHandle[i[r]]=e}function dt(t,e){var i=e&&t,n=i&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(n)return n;if(i)for(;i=i.nextSibling;)if(i===e)return-1;return t?1:-1}function pt(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function ft(t){return function(e){var i=e.nodeName.toLowerCase();return("input"===i||"button"===i)&&e.type===t}}function gt(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&at(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function mt(t){return ct((function(e){return e=+e,ct((function(i,n){for(var r,o=t([],i.length,e),a=o.length;a--;)i[r=o[a]]&&(i[r]=!(n[r]=i[r]))}))}))}function yt(t){return t&&void 0!==t.getElementsByTagName&&t}for(e in i=st.support={},o=st.isXML=function(t){var e=t&&t.namespaceURI,i=t&&(t.ownerDocument||t).documentElement;return!$.test(e||i&&i.nodeName||"HTML")},d=st.setDocument=function(t){var e,r,a=t?t.ownerDocument||t:w;return a!=p&&9===a.nodeType&&a.documentElement?(f=(p=a).documentElement,g=!o(p),w!=p&&(r=p.defaultView)&&r.top!==r&&(r.addEventListener?r.addEventListener("unload",ot,!1):r.attachEvent&&r.attachEvent("onunload",ot)),i.scope=ht((function(t){return f.appendChild(t).appendChild(p.createElement("div")),void 0!==t.querySelectorAll&&!t.querySelectorAll(":scope fieldset div").length})),i.attributes=ht((function(t){return t.className="i",!t.getAttribute("className")})),i.getElementsByTagName=ht((function(t){return t.appendChild(p.createComment("")),!t.getElementsByTagName("*").length})),i.getElementsByClassName=J.test(p.getElementsByClassName),i.getById=ht((function(t){return f.appendChild(t).id=x,!p.getElementsByName||!p.getElementsByName(x).length})),i.getById?(n.filter.ID=function(t){var e=t.replace(et,it);return function(t){return t.getAttribute("id")===e}},n.find.ID=function(t,e){if(void 0!==e.getElementById&&g){var i=e.getElementById(t);return i?[i]:[]}}):(n.filter.ID=function(t){var e=t.replace(et,it);return function(t){var i=void 0!==t.getAttributeNode&&t.getAttributeNode("id");return i&&i.value===e}},n.find.ID=function(t,e){if(void 0!==e.getElementById&&g){var i,n,r,o=e.getElementById(t);if(o){if((i=o.getAttributeNode("id"))&&i.value===t)return[o];for(r=e.getElementsByName(t),n=0;o=r[n++];)if((i=o.getAttributeNode("id"))&&i.value===t)return[o]}return[]}}),n.find.TAG=i.getElementsByTagName?function(t,e){return void 0!==e.getElementsByTagName?e.getElementsByTagName(t):i.qsa?e.querySelectorAll(t):void 0}:function(t,e){var i,n=[],r=0,o=e.getElementsByTagName(t);if("*"===t){for(;i=o[r++];)1===i.nodeType&&n.push(i);return n}return o},n.find.CLASS=i.getElementsByClassName&&function(t,e){if(void 0!==e.getElementsByClassName&&g)return e.getElementsByClassName(t)},y=[],m=[],(i.qsa=J.test(p.querySelectorAll))&&(ht((function(t){var e;f.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),t.querySelectorAll("[selected]").length||m.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+N+")"),t.querySelectorAll("[id~="+x+"-]").length||m.push("~="),(e=p.createElement("input")).setAttribute("name",""),t.appendChild(e),t.querySelectorAll("[name='']").length||m.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),t.querySelectorAll(":checked").length||m.push(":checked"),t.querySelectorAll("a#"+x+"+*").length||m.push(".#.+[+~]"),t.querySelectorAll("\\\f"),m.push("[\\r\\n\\f]")})),ht((function(t){t.innerHTML="";var e=p.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&m.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&m.push(":enabled",":disabled"),f.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&m.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),m.push(",.*:")}))),(i.matchesSelector=J.test(v=f.matches||f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ht((function(t){i.disconnectedMatch=v.call(t,"*"),v.call(t,"[s!='']:x"),y.push("!=",z)})),m=m.length&&new RegExp(m.join("|")),y=y.length&&new RegExp(y.join("|")),e=J.test(f.compareDocumentPosition),b=e||J.test(f.contains)?function(t,e){var i=9===t.nodeType?t.documentElement:t,n=e&&e.parentNode;return t===n||!(!n||1!==n.nodeType||!(i.contains?i.contains(n):t.compareDocumentPosition&&16&t.compareDocumentPosition(n)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},A=e?function(t,e){if(t===e)return u=!0,0;var n=!t.compareDocumentPosition-!e.compareDocumentPosition;return n||(1&(n=(t.ownerDocument||t)==(e.ownerDocument||e)?t.compareDocumentPosition(e):1)||!i.sortDetached&&e.compareDocumentPosition(t)===n?t==p||t.ownerDocument==w&&b(w,t)?-1:e==p||e.ownerDocument==w&&b(w,e)?1:h?j(h,t)-j(h,e):0:4&n?-1:1)}:function(t,e){if(t===e)return u=!0,0;var i,n=0,r=t.parentNode,o=e.parentNode,a=[t],s=[e];if(!r||!o)return t==p?-1:e==p?1:r?-1:o?1:h?j(h,t)-j(h,e):0;if(r===o)return dt(t,e);for(i=t;i=i.parentNode;)a.unshift(i);for(i=e;i=i.parentNode;)s.unshift(i);for(;a[n]===s[n];)n++;return n?dt(a[n],s[n]):a[n]==w?-1:s[n]==w?1:0},p):p},st.matches=function(t,e){return st(t,null,null,e)},st.matchesSelector=function(t,e){if(d(t),i.matchesSelector&&g&&!T[e+" "]&&(!y||!y.test(e))&&(!m||!m.test(e)))try{var n=v.call(t,e);if(n||i.disconnectedMatch||t.document&&11!==t.document.nodeType)return n}catch(t){T(e,!0)}return st(e,p,null,[t]).length>0},st.contains=function(t,e){return(t.ownerDocument||t)!=p&&d(t),b(t,e)},st.attr=function(t,e){(t.ownerDocument||t)!=p&&d(t);var r=n.attrHandle[e.toLowerCase()],o=r&&O.call(n.attrHandle,e.toLowerCase())?r(t,e,!g):void 0;return void 0!==o?o:i.attributes||!g?t.getAttribute(e):(o=t.getAttributeNode(e))&&o.specified?o.value:null},st.escape=function(t){return(t+"").replace(nt,rt)},st.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},st.uniqueSort=function(t){var e,n=[],r=0,o=0;if(u=!i.detectDuplicates,h=!i.sortStable&&t.slice(0),t.sort(A),u){for(;e=t[o++];)e===t[o]&&(r=n.push(o));for(;r--;)t.splice(n[r],1)}return h=null,t},r=st.getText=function(t){var e,i="",n=0,o=t.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)i+=r(t)}else if(3===o||4===o)return t.nodeValue}else for(;e=t[n++];)i+=r(e);return i},(n=st.selectors={cacheLength:50,createPseudo:ct,match:q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(et,it),t[3]=(t[3]||t[4]||t[5]||"").replace(et,it),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||st.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&st.error(t[0]),t},PSEUDO:function(t){var e,i=!t[6]&&t[2];return q.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":i&&G.test(i)&&(e=a(i,!0))&&(e=i.indexOf(")",i.length-e)-i.length)&&(t[0]=t[0].slice(0,e),t[2]=i.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(et,it).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=P[t+" "];return e||(e=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+t+"("+F+"|$)"))&&P(t,(function(t){return e.test("string"==typeof t.className&&t.className||void 0!==t.getAttribute&&t.getAttribute("class")||"")}))},ATTR:function(t,e,i){return function(n){var r=st.attr(n,t);return null==r?"!="===e:!e||(r+="","="===e?r===i:"!="===e?r!==i:"^="===e?i&&0===r.indexOf(i):"*="===e?i&&r.indexOf(i)>-1:"$="===e?i&&r.slice(-i.length)===i:"~="===e?(" "+r.replace(B," ")+" ").indexOf(i)>-1:"|="===e&&(r===i||r.slice(0,i.length+1)===i+"-"))}},CHILD:function(t,e,i,n,r){var o="nth"!==t.slice(0,3),a="last"!==t.slice(-4),s="of-type"===e;return 1===n&&0===r?function(t){return!!t.parentNode}:function(e,i,l){var c,h,u,d,p,f,g=o!==a?"nextSibling":"previousSibling",m=e.parentNode,y=s&&e.nodeName.toLowerCase(),v=!l&&!s,b=!1;if(m){if(o){for(;g;){for(d=e;d=d[g];)if(s?d.nodeName.toLowerCase()===y:1===d.nodeType)return!1;f=g="only"===t&&!f&&"nextSibling"}return!0}if(f=[a?m.firstChild:m.lastChild],a&&v){for(b=(p=(c=(h=(u=(d=m)[x]||(d[x]={}))[d.uniqueID]||(u[d.uniqueID]={}))[t]||[])[0]===_&&c[1])&&c[2],d=p&&m.childNodes[p];d=++p&&d&&d[g]||(b=p=0)||f.pop();)if(1===d.nodeType&&++b&&d===e){h[t]=[_,p,b];break}}else if(v&&(b=p=(c=(h=(u=(d=e)[x]||(d[x]={}))[d.uniqueID]||(u[d.uniqueID]={}))[t]||[])[0]===_&&c[1]),!1===b)for(;(d=++p&&d&&d[g]||(b=p=0)||f.pop())&&((s?d.nodeName.toLowerCase()!==y:1!==d.nodeType)||!++b||(v&&((h=(u=d[x]||(d[x]={}))[d.uniqueID]||(u[d.uniqueID]={}))[t]=[_,b]),d!==e)););return(b-=r)===n||b%n==0&&b/n>=0}}},PSEUDO:function(t,e){var i,r=n.pseudos[t]||n.setFilters[t.toLowerCase()]||st.error("unsupported pseudo: "+t);return r[x]?r(e):r.length>1?(i=[t,t,"",e],n.setFilters.hasOwnProperty(t.toLowerCase())?ct((function(t,i){for(var n,o=r(t,e),a=o.length;a--;)t[n=j(t,o[a])]=!(i[n]=o[a])})):function(t){return r(t,0,i)}):r}},pseudos:{not:ct((function(t){var e=[],i=[],n=s(t.replace(H,"$1"));return n[x]?ct((function(t,e,i,r){for(var o,a=n(t,null,r,[]),s=t.length;s--;)(o=a[s])&&(t[s]=!(e[s]=o))})):function(t,r,o){return e[0]=t,n(e,null,o,i),e[0]=null,!i.pop()}})),has:ct((function(t){return function(e){return st(t,e).length>0}})),contains:ct((function(t){return t=t.replace(et,it),function(e){return(e.textContent||r(e)).indexOf(t)>-1}})),lang:ct((function(t){return U.test(t||"")||st.error("unsupported lang: "+t),t=t.replace(et,it).toLowerCase(),function(e){var i;do{if(i=g?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(i=i.toLowerCase())===t||0===i.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}})),target:function(e){var i=t.location&&t.location.hash;return i&&i.slice(1)===e.id},root:function(t){return t===f},focus:function(t){return t===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:gt(!1),disabled:gt(!0),checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!n.pseudos.empty(t)},header:function(t){return Z.test(t.nodeName)},input:function(t){return K.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:mt((function(){return[0]})),last:mt((function(t,e){return[e-1]})),eq:mt((function(t,e,i){return[i<0?i+e:i]})),even:mt((function(t,e){for(var i=0;ie?e:i;--n>=0;)t.push(n);return t})),gt:mt((function(t,e,i){for(var n=i<0?i+e:i;++n1?function(e,i,n){for(var r=t.length;r--;)if(!t[r](e,i,n))return!1;return!0}:t[0]}function _t(t,e,i,n,r){for(var o,a=[],s=0,l=t.length,c=null!=e;s-1&&(o[c]=!(a[c]=u))}}else y=_t(y===a?y.splice(f,y.length):y),r?r(null,a,y,l):D.apply(a,y)}))}function Pt(t){for(var e,i,r,o=t.length,a=n.relative[t[0].type],s=a||n.relative[" "],l=a?1:0,h=xt((function(t){return t===e}),s,!0),u=xt((function(t){return j(e,t)>-1}),s,!0),d=[function(t,i,n){var r=!a&&(n||i!==c)||((e=i).nodeType?h(t,i,n):u(t,i,n));return e=null,r}];l1&&wt(d),l>1&&bt(t.slice(0,l-1).concat({value:" "===t[l-2].type?"*":""})).replace(H,"$1"),i,l0,r=t.length>0,o=function(o,a,s,l,h){var u,f,m,y=0,v="0",b=o&&[],x=[],w=c,S=o||r&&n.find.TAG("*",h),P=_+=null==w?1:Math.random()||.1,k=S.length;for(h&&(c=a==p||a||h);v!==k&&null!=(u=S[v]);v++){if(r&&u){for(f=0,a||u.ownerDocument==p||(d(u),s=!g);m=t[f++];)if(m(u,a||p,s)){l.push(u);break}h&&(_=P)}i&&((u=!m&&u)&&y--,o&&b.push(u))}if(y+=v,i&&v!==y){for(f=0;m=e[f++];)m(b,x,a,s);if(o){if(y>0)for(;v--;)b[v]||x[v]||(x[v]=E.call(l));x=_t(x)}D.apply(l,x),h&&!o&&x.length>0&&y+e.length>1&&st.uniqueSort(l)}return h&&(_=P,c=w),b};return i?ct(o):o}(o,r))).selector=t}return s},l=st.select=function(t,e,i,r){var o,l,c,h,u,d="function"==typeof t&&t,p=!r&&a(t=d.selector||t);if(i=i||[],1===p.length){if((l=p[0]=p[0].slice(0)).length>2&&"ID"===(c=l[0]).type&&9===e.nodeType&&g&&n.relative[l[1].type]){if(!(e=(n.find.ID(c.matches[0].replace(et,it),e)||[])[0]))return i;d&&(e=e.parentNode),t=t.slice(l.shift().value.length)}for(o=q.needsContext.test(t)?0:l.length;o--&&(c=l[o],!n.relative[h=c.type]);)if((u=n.find[h])&&(r=u(c.matches[0].replace(et,it),tt.test(l[0].type)&&yt(e.parentNode)||e))){if(l.splice(o,1),!(t=r.length&&bt(l)))return D.apply(i,r),i;break}}return(d||s(t,p))(r,e,!g,i,!e||tt.test(t)&&yt(e.parentNode)||e),i},i.sortStable=x.split("").sort(A).join("")===x,i.detectDuplicates=!!u,d(),i.sortDetached=ht((function(t){return 1&t.compareDocumentPosition(p.createElement("fieldset"))})),ht((function(t){return t.innerHTML="","#"===t.firstChild.getAttribute("href")}))||ut("type|href|height|width",(function(t,e,i){if(!i)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)})),i.attributes&&ht((function(t){return t.innerHTML="",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")}))||ut("value",(function(t,e,i){if(!i&&"input"===t.nodeName.toLowerCase())return t.defaultValue})),ht((function(t){return null==t.getAttribute("disabled")}))||ut(N,(function(t,e,i){var n;if(!i)return!0===t[e]?e.toLowerCase():(n=t.getAttributeNode(e))&&n.specified?n.value:null})),st}(t);w.find=S,w.expr=S.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=S.uniqueSort,w.text=S.getText,w.isXMLDoc=S.isXML,w.contains=S.contains,w.escapeSelector=S.escape;var P=function(t,e,i){for(var n=[],r=void 0!==i;(t=t[e])&&9!==t.nodeType;)if(1===t.nodeType){if(r&&w(t).is(i))break;n.push(t)}return n},k=function(t,e){for(var i=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&i.push(t);return i},C=w.expr.match.needsContext;function T(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function O(t,e,i){return f(e)?w.grep(t,(function(t,n){return!!e.call(t,n,t)!==i})):e.nodeType?w.grep(t,(function(t){return t===e!==i})):"string"!=typeof e?w.grep(t,(function(t){return s.call(e,t)>-1!==i})):w.filter(e,t,i)}w.filter=function(t,e,i){var n=e[0];return i&&(t=":not("+t+")"),1===e.length&&1===n.nodeType?w.find.matchesSelector(n,t)?[n]:[]:w.find.matches(t,w.grep(e,(function(t){return 1===t.nodeType})))},w.fn.extend({find:function(t){var e,i,n=this.length,r=this;if("string"!=typeof t)return this.pushStack(w(t).filter((function(){for(e=0;e1?w.uniqueSort(i):i},filter:function(t){return this.pushStack(O(this,t||[],!1))},not:function(t){return this.pushStack(O(this,t||[],!0))},is:function(t){return!!O(this,"string"==typeof t&&C.test(t)?w(t):t||[],!1).length}});var M,E=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(t,e,i){var n,r;if(!t)return this;if(i=i||M,"string"==typeof t){if(!(n="<"===t[0]&&">"===t[t.length-1]&&t.length>=3?[null,t,null]:E.exec(t))||!n[1]&&e)return!e||e.jquery?(e||i).find(t):this.constructor(e).find(t);if(n[1]){if(e=e instanceof w?e[0]:e,w.merge(this,w.parseHTML(n[1],e&&e.nodeType?e.ownerDocument||e:m,!0)),A.test(n[1])&&w.isPlainObject(e))for(n in e)f(this[n])?this[n](e[n]):this.attr(n,e[n]);return this}return(r=m.getElementById(n[2]))&&(this[0]=r,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):f(t)?void 0!==i.ready?i.ready(t):t(w):w.makeArray(t,this)}).prototype=w.fn,M=w(m);var I=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};function L(t,e){for(;(t=t[e])&&1!==t.nodeType;);return t}w.fn.extend({has:function(t){var e=w(t,this),i=e.length;return this.filter((function(){for(var t=0;t-1:1===i.nodeType&&w.find.matchesSelector(i,t))){o.push(i);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(t){return t?"string"==typeof t?s.call(w(t),this[0]):s.call(this,t.jquery?t[0]:t):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),w.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return P(t,"parentNode")},parentsUntil:function(t,e,i){return P(t,"parentNode",i)},next:function(t){return L(t,"nextSibling")},prev:function(t){return L(t,"previousSibling")},nextAll:function(t){return P(t,"nextSibling")},prevAll:function(t){return P(t,"previousSibling")},nextUntil:function(t,e,i){return P(t,"nextSibling",i)},prevUntil:function(t,e,i){return P(t,"previousSibling",i)},siblings:function(t){return k((t.parentNode||{}).firstChild,t)},children:function(t){return k(t.firstChild)},contents:function(t){return null!=t.contentDocument&&n(t.contentDocument)?t.contentDocument:(T(t,"template")&&(t=t.content||t),w.merge([],t.childNodes))}},(function(t,e){w.fn[t]=function(i,n){var r=w.map(this,e,i);return"Until"!==t.slice(-5)&&(n=i),n&&"string"==typeof n&&(r=w.filter(n,r)),this.length>1&&(D[t]||w.uniqueSort(r),I.test(t)&&r.reverse()),this.pushStack(r)}}));var j=/[^\x20\t\r\n\f]+/g;function N(t){return t}function F(t){throw t}function R(t,e,i,n){var r;try{t&&f(r=t.promise)?r.call(t).done(e).fail(i):t&&f(r=t.then)?r.call(t,e,i):e.apply(void 0,[t].slice(n))}catch(t){i.apply(void 0,[t])}}w.Callbacks=function(t){t="string"==typeof t?function(t){var e={};return w.each(t.match(j)||[],(function(t,i){e[i]=!0})),e}(t):w.extend({},t);var e,i,n,r,o=[],a=[],s=-1,l=function(){for(r=r||t.once,n=e=!0;a.length;s=-1)for(i=a.shift();++s-1;)o.splice(i,1),i<=s&&s--})),this},has:function(t){return t?w.inArray(t,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return r=a=[],o=i="",this},disabled:function(){return!o},lock:function(){return r=a=[],i||e||(o=i=""),this},locked:function(){return!!r},fireWith:function(t,i){return r||(i=[t,(i=i||[]).slice?i.slice():i],a.push(i),e||l()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},w.extend({Deferred:function(e){var i=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],n="pending",r={state:function(){return n},always:function(){return o.done(arguments).fail(arguments),this},catch:function(t){return r.then(null,t)},pipe:function(){var t=arguments;return w.Deferred((function(e){w.each(i,(function(i,n){var r=f(t[n[4]])&&t[n[4]];o[n[1]]((function(){var t=r&&r.apply(this,arguments);t&&f(t.promise)?t.promise().progress(e.notify).done(e.resolve).fail(e.reject):e[n[0]+"With"](this,r?[t]:arguments)}))})),t=null})).promise()},then:function(e,n,r){var o=0;function a(e,i,n,r){return function(){var s=this,l=arguments,c=function(){var t,c;if(!(e=o&&(n!==F&&(s=void 0,l=[t]),i.rejectWith(s,l))}};e?h():(w.Deferred.getStackHook&&(h.stackTrace=w.Deferred.getStackHook()),t.setTimeout(h))}}return w.Deferred((function(t){i[0][3].add(a(0,t,f(r)?r:N,t.notifyWith)),i[1][3].add(a(0,t,f(e)?e:N)),i[2][3].add(a(0,t,f(n)?n:F))})).promise()},promise:function(t){return null!=t?w.extend(t,r):r}},o={};return w.each(i,(function(t,e){var a=e[2],s=e[5];r[e[1]]=a.add,s&&a.add((function(){n=s}),i[3-t][2].disable,i[3-t][3].disable,i[0][2].lock,i[0][3].lock),a.add(e[3].fire),o[e[0]]=function(){return o[e[0]+"With"](this===o?void 0:this,arguments),this},o[e[0]+"With"]=a.fireWith})),r.promise(o),e&&e.call(o,o),o},when:function(t){var e=arguments.length,i=e,n=Array(i),o=r.call(arguments),a=w.Deferred(),s=function(t){return function(i){n[t]=this,o[t]=arguments.length>1?r.call(arguments):i,--e||a.resolveWith(n,o)}};if(e<=1&&(R(t,a.done(s(i)).resolve,a.reject,!e),"pending"===a.state()||f(o[i]&&o[i].then)))return a.then();for(;i--;)R(o[i],s(i),a.reject);return a.promise()}});var V=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(e,i){t.console&&t.console.warn&&e&&V.test(e.name)&&t.console.warn("jQuery.Deferred exception: "+e.message,e.stack,i)},w.readyException=function(e){t.setTimeout((function(){throw e}))};var z=w.Deferred();function B(){m.removeEventListener("DOMContentLoaded",B),t.removeEventListener("load",B),w.ready()}w.fn.ready=function(t){return z.then(t).catch((function(t){w.readyException(t)})),this},w.extend({isReady:!1,readyWait:1,ready:function(t){(!0===t?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==t&&--w.readyWait>0||z.resolveWith(m,[w]))}}),w.ready.then=z.then,"complete"===m.readyState||"loading"!==m.readyState&&!m.documentElement.doScroll?t.setTimeout(w.ready):(m.addEventListener("DOMContentLoaded",B),t.addEventListener("load",B));var H=function(t,e,i,n,r,o,a){var s=0,l=t.length,c=null==i;if("object"===b(i))for(s in r=!0,i)H(t,e,s,i[s],!0,o,a);else if(void 0!==n&&(r=!0,f(n)||(a=!0),c&&(a?(e.call(t,n),e=null):(c=e,e=function(t,e,i){return c.call(w(t),i)})),e))for(;s1,null,!0)},removeData:function(t){return this.each((function(){K.remove(this,t)}))}}),w.extend({queue:function(t,e,i){var n;if(t)return e=(e||"fx")+"queue",n=$.get(t,e),i&&(!n||Array.isArray(i)?n=$.access(t,e,w.makeArray(i)):n.push(i)),n||[]},dequeue:function(t,e){e=e||"fx";var i=w.queue(t,e),n=i.length,r=i.shift(),o=w._queueHooks(t,e);"inprogress"===r&&(r=i.shift(),n--),r&&("fx"===e&&i.unshift("inprogress"),delete o.stop,r.call(t,(function(){w.dequeue(t,e)}),o)),!n&&o&&o.empty.fire()},_queueHooks:function(t,e){var i=e+"queueHooks";return $.get(t,i)||$.access(t,i,{empty:w.Callbacks("once memory").add((function(){$.remove(t,[e+"queue",i])}))})}}),w.fn.extend({queue:function(t,e){var i=2;return"string"!=typeof t&&(e=t,t="fx",i--),arguments.length\x20\t\r\n\f]*)/i,gt=/^$|^module$|\/(?:java|ecma)script/i;ut=m.createDocumentFragment().appendChild(m.createElement("div")),(dt=m.createElement("input")).setAttribute("type","radio"),dt.setAttribute("checked","checked"),dt.setAttribute("name","t"),ut.appendChild(dt),p.checkClone=ut.cloneNode(!0).cloneNode(!0).lastChild.checked,ut.innerHTML="",p.noCloneChecked=!!ut.cloneNode(!0).lastChild.defaultValue,ut.innerHTML="",p.option=!!ut.lastChild;var mt={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function yt(t,e){var i;return i=void 0!==t.getElementsByTagName?t.getElementsByTagName(e||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&T(t,e)?w.merge([t],i):i}function vt(t,e){for(var i=0,n=t.length;i",""]);var bt=/<|&#?\w+;/;function xt(t,e,i,n,r){for(var o,a,s,l,c,h,u=e.createDocumentFragment(),d=[],p=0,f=t.length;p-1)r&&r.push(o);else if(c=rt(o),a=yt(u.appendChild(o),"script"),c&&vt(a),i)for(h=0;o=a[h++];)gt.test(o.type||"")&&i.push(o);return u}var wt=/^([^.]*)(?:\.(.+)|)/;function _t(){return!0}function St(){return!1}function Pt(t,e){return t===function(){try{return m.activeElement}catch(t){}}()==("focus"===e)}function kt(t,e,i,n,r,o){var a,s;if("object"==typeof e){for(s in"string"!=typeof i&&(n=n||i,i=void 0),e)kt(t,s,i,n,e[s],o);return t}if(null==n&&null==r?(r=i,n=i=void 0):null==r&&("string"==typeof i?(r=n,n=void 0):(r=n,n=i,i=void 0)),!1===r)r=St;else if(!r)return t;return 1===o&&(a=r,(r=function(t){return w().off(t),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),t.each((function(){w.event.add(this,e,r,n,i)}))}function Ct(t,e,i){i?($.set(t,e,!1),w.event.add(t,e,{namespace:!1,handler:function(t){var n,o,a=$.get(this,e);if(1&t.isTrigger&&this[e]){if(a.length)(w.event.special[e]||{}).delegateType&&t.stopPropagation();else if(a=r.call(arguments),$.set(this,e,a),n=i(this,e),this[e](),a!==(o=$.get(this,e))||n?$.set(this,e,!1):o={},a!==o)return t.stopImmediatePropagation(),t.preventDefault(),o&&o.value}else a.length&&($.set(this,e,{value:w.event.trigger(w.extend(a[0],w.Event.prototype),a.slice(1),this)}),t.stopImmediatePropagation())}})):void 0===$.get(t,e)&&w.event.add(t,e,_t)}w.event={global:{},add:function(t,e,i,n,r){var o,a,s,l,c,h,u,d,p,f,g,m=$.get(t);if(U(t))for(i.handler&&(i=(o=i).handler,r=o.selector),r&&w.find.matchesSelector(nt,r),i.guid||(i.guid=w.guid++),(l=m.events)||(l=m.events=Object.create(null)),(a=m.handle)||(a=m.handle=function(e){return void 0!==w&&w.event.triggered!==e.type?w.event.dispatch.apply(t,arguments):void 0}),c=(e=(e||"").match(j)||[""]).length;c--;)p=g=(s=wt.exec(e[c])||[])[1],f=(s[2]||"").split(".").sort(),p&&(u=w.event.special[p]||{},p=(r?u.delegateType:u.bindType)||p,u=w.event.special[p]||{},h=w.extend({type:p,origType:g,data:n,handler:i,guid:i.guid,selector:r,needsContext:r&&w.expr.match.needsContext.test(r),namespace:f.join(".")},o),(d=l[p])||((d=l[p]=[]).delegateCount=0,u.setup&&!1!==u.setup.call(t,n,f,a)||t.addEventListener&&t.addEventListener(p,a)),u.add&&(u.add.call(t,h),h.handler.guid||(h.handler.guid=i.guid)),r?d.splice(d.delegateCount++,0,h):d.push(h),w.event.global[p]=!0)},remove:function(t,e,i,n,r){var o,a,s,l,c,h,u,d,p,f,g,m=$.hasData(t)&&$.get(t);if(m&&(l=m.events)){for(c=(e=(e||"").match(j)||[""]).length;c--;)if(p=g=(s=wt.exec(e[c])||[])[1],f=(s[2]||"").split(".").sort(),p){for(u=w.event.special[p]||{},d=l[p=(n?u.delegateType:u.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+f.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)h=d[o],!r&&g!==h.origType||i&&i.guid!==h.guid||s&&!s.test(h.namespace)||n&&n!==h.selector&&("**"!==n||!h.selector)||(d.splice(o,1),h.selector&&d.delegateCount--,u.remove&&u.remove.call(t,h));a&&!d.length&&(u.teardown&&!1!==u.teardown.call(t,f,m.handle)||w.removeEvent(t,p,m.handle),delete l[p])}else for(p in l)w.event.remove(t,p+e[c],i,n,!0);w.isEmptyObject(l)&&$.remove(t,"handle events")}},dispatch:function(t){var e,i,n,r,o,a,s=new Array(arguments.length),l=w.event.fix(t),c=($.get(this,"events")||Object.create(null))[l.type]||[],h=w.event.special[l.type]||{};for(s[0]=l,e=1;e=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==t.type||!0!==c.disabled)){for(o=[],a={},i=0;i-1:w.find(r,this,null,[c]).length),a[r]&&o.push(n);o.length&&s.push({elem:c,handlers:o})}return c=this,l\s*$/g;function Mt(t,e){return T(t,"table")&&T(11!==e.nodeType?e:e.firstChild,"tr")&&w(t).children("tbody")[0]||t}function Et(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function It(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function Dt(t,e){var i,n,r,o,a,s;if(1===e.nodeType){if($.hasData(t)&&(s=$.get(t).events))for(r in $.remove(e,"handle events"),s)for(i=0,n=s[r].length;i1&&"string"==typeof m&&!p.checkClone&&At.test(m))return t.each((function(r){var o=t.eq(r);y&&(e[0]=m.call(this,r,o.html())),jt(o,e,i,n)}));if(d&&(a=(r=xt(e,t[0].ownerDocument,!1,t,n)).firstChild,1===r.childNodes.length&&(r=a),a||n)){for(l=(s=w.map(yt(r,"script"),Et)).length;u0&&vt(a,!l&&yt(t,"script")),s},cleanData:function(t){for(var e,i,n,r=w.event.special,o=0;void 0!==(i=t[o]);o++)if(U(i)){if(e=i[$.expando]){if(e.events)for(n in e.events)r[n]?w.event.remove(i,n):w.removeEvent(i,n,e.handle);i[$.expando]=void 0}i[K.expando]&&(i[K.expando]=void 0)}}}),w.fn.extend({detach:function(t){return Nt(this,t,!0)},remove:function(t){return Nt(this,t)},text:function(t){return H(this,(function(t){return void 0===t?w.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=t)}))}),null,t,arguments.length)},append:function(){return jt(this,arguments,(function(t){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Mt(this,t).appendChild(t)}))},prepend:function(){return jt(this,arguments,(function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=Mt(this,t);e.insertBefore(t,e.firstChild)}}))},before:function(){return jt(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this)}))},after:function(){return jt(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)}))},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)1===t.nodeType&&(w.cleanData(yt(t,!1)),t.textContent="");return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map((function(){return w.clone(this,t,e)}))},html:function(t){return H(this,(function(t){var e=this[0]||{},i=0,n=this.length;if(void 0===t&&1===e.nodeType)return e.innerHTML;if("string"==typeof t&&!Tt.test(t)&&!mt[(ft.exec(t)||["",""])[1].toLowerCase()]){t=w.htmlPrefilter(t);try{for(;i=0&&(l+=Math.max(0,Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-o-l-s-.5))||0),l}function Qt(t,e,i){var n=Rt(t),r=(!p.boxSizingReliable()||i)&&"border-box"===w.css(t,"boxSizing",!1,n),o=r,a=Bt(t,e,n),s="offset"+e[0].toUpperCase()+e.slice(1);if(Ft.test(a)){if(!i)return a;a="auto"}return(!p.boxSizingReliable()&&r||!p.reliableTrDimensions()&&T(t,"tr")||"auto"===a||!parseFloat(a)&&"inline"===w.css(t,"display",!1,n))&&t.getClientRects().length&&(r="border-box"===w.css(t,"boxSizing",!1,n),(o=s in t)&&(a=t[s])),(a=parseFloat(a)||0)+Jt(t,e,i||(r?"border":"content"),o,n,a)+"px"}function te(t,e,i,n,r){return new te.prototype.init(t,e,i,n,r)}w.extend({cssHooks:{opacity:{get:function(t,e){if(e){var i=Bt(t,"opacity");return""===i?"1":i}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(t,e,i,n){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var r,o,a,s=G(e),l=qt.test(e),c=t.style;if(l||(e=Gt(s)),a=w.cssHooks[e]||w.cssHooks[s],void 0===i)return a&&"get"in a&&void 0!==(r=a.get(t,!1,n))?r:c[e];"string"===(o=typeof i)&&(r=et.exec(i))&&r[1]&&(i=st(t,e,r),o="number"),null!=i&&i==i&&("number"!==o||l||(i+=r&&r[3]||(w.cssNumber[s]?"":"px")),p.clearCloneStyle||""!==i||0!==e.indexOf("background")||(c[e]="inherit"),a&&"set"in a&&void 0===(i=a.set(t,i,n))||(l?c.setProperty(e,i):c[e]=i))}},css:function(t,e,i,n){var r,o,a,s=G(e);return qt.test(e)||(e=Gt(s)),(a=w.cssHooks[e]||w.cssHooks[s])&&"get"in a&&(r=a.get(t,!0,i)),void 0===r&&(r=Bt(t,e,n)),"normal"===r&&e in Kt&&(r=Kt[e]),""===i||i?(o=parseFloat(r),!0===i||isFinite(o)?o||0:r):r}}),w.each(["height","width"],(function(t,e){w.cssHooks[e]={get:function(t,i,n){if(i)return!Ut.test(w.css(t,"display"))||t.getClientRects().length&&t.getBoundingClientRect().width?Qt(t,e,n):Vt(t,$t,(function(){return Qt(t,e,n)}))},set:function(t,i,n){var r,o=Rt(t),a=!p.scrollboxSize()&&"absolute"===o.position,s=(a||n)&&"border-box"===w.css(t,"boxSizing",!1,o),l=n?Jt(t,e,n,s,o):0;return s&&a&&(l-=Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-parseFloat(o[e])-Jt(t,e,"border",!1,o)-.5)),l&&(r=et.exec(i))&&"px"!==(r[3]||"px")&&(t.style[e]=i,i=w.css(t,e)),Zt(0,i,l)}}})),w.cssHooks.marginLeft=Ht(p.reliableMarginLeft,(function(t,e){if(e)return(parseFloat(Bt(t,"marginLeft"))||t.getBoundingClientRect().left-Vt(t,{marginLeft:0},(function(){return t.getBoundingClientRect().left})))+"px"})),w.each({margin:"",padding:"",border:"Width"},(function(t,e){w.cssHooks[t+e]={expand:function(i){for(var n=0,r={},o="string"==typeof i?i.split(" "):[i];n<4;n++)r[t+it[n]+e]=o[n]||o[n-2]||o[0];return r}},"margin"!==t&&(w.cssHooks[t+e].set=Zt)})),w.fn.extend({css:function(t,e){return H(this,(function(t,e,i){var n,r,o={},a=0;if(Array.isArray(e)){for(n=Rt(t),r=e.length;a1)}}),w.Tween=te,te.prototype={constructor:te,init:function(t,e,i,n,r,o){this.elem=t,this.prop=i,this.easing=r||w.easing._default,this.options=e,this.start=this.now=this.cur(),this.end=n,this.unit=o||(w.cssNumber[i]?"":"px")},cur:function(){var t=te.propHooks[this.prop];return t&&t.get?t.get(this):te.propHooks._default.get(this)},run:function(t){var e,i=te.propHooks[this.prop];return this.options.duration?this.pos=e=w.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),i&&i.set?i.set(this):te.propHooks._default.set(this),this}},te.prototype.init.prototype=te.prototype,te.propHooks={_default:{get:function(t){var e;return 1!==t.elem.nodeType||null!=t.elem[t.prop]&&null==t.elem.style[t.prop]?t.elem[t.prop]:(e=w.css(t.elem,t.prop,""))&&"auto"!==e?e:0},set:function(t){w.fx.step[t.prop]?w.fx.step[t.prop](t):1!==t.elem.nodeType||!w.cssHooks[t.prop]&&null==t.elem.style[Gt(t.prop)]?t.elem[t.prop]=t.now:w.style(t.elem,t.prop,t.now+t.unit)}}},te.propHooks.scrollTop=te.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},w.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},_default:"swing"},w.fx=te.prototype.init,w.fx.step={};var ee,ie,ne=/^(?:toggle|show|hide)$/,re=/queueHooks$/;function oe(){ie&&(!1===m.hidden&&t.requestAnimationFrame?t.requestAnimationFrame(oe):t.setTimeout(oe,w.fx.interval),w.fx.tick())}function ae(){return t.setTimeout((function(){ee=void 0})),ee=Date.now()}function se(t,e){var i,n=0,r={height:t};for(e=e?1:0;n<4;n+=2-e)r["margin"+(i=it[n])]=r["padding"+i]=t;return e&&(r.opacity=r.width=t),r}function le(t,e,i){for(var n,r=(ce.tweeners[e]||[]).concat(ce.tweeners["*"]),o=0,a=r.length;o1)},removeAttr:function(t){return this.each((function(){w.removeAttr(this,t)}))}}),w.extend({attr:function(t,e,i){var n,r,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===t.getAttribute?w.prop(t,e,i):(1===o&&w.isXMLDoc(t)||(r=w.attrHooks[e.toLowerCase()]||(w.expr.match.bool.test(e)?he:void 0)),void 0!==i?null===i?void w.removeAttr(t,e):r&&"set"in r&&void 0!==(n=r.set(t,i,e))?n:(t.setAttribute(e,i+""),i):r&&"get"in r&&null!==(n=r.get(t,e))?n:null==(n=w.find.attr(t,e))?void 0:n)},attrHooks:{type:{set:function(t,e){if(!p.radioValue&&"radio"===e&&T(t,"input")){var i=t.value;return t.setAttribute("type",e),i&&(t.value=i),e}}}},removeAttr:function(t,e){var i,n=0,r=e&&e.match(j);if(r&&1===t.nodeType)for(;i=r[n++];)t.removeAttribute(i)}}),he={set:function(t,e,i){return!1===e?w.removeAttr(t,i):t.setAttribute(i,i),i}},w.each(w.expr.match.bool.source.match(/\w+/g),(function(t,e){var i=ue[e]||w.find.attr;ue[e]=function(t,e,n){var r,o,a=e.toLowerCase();return n||(o=ue[a],ue[a]=r,r=null!=i(t,e,n)?a:null,ue[a]=o),r}}));var de=/^(?:input|select|textarea|button)$/i,pe=/^(?:a|area)$/i;function fe(t){return(t.match(j)||[]).join(" ")}function ge(t){return t.getAttribute&&t.getAttribute("class")||""}function me(t){return Array.isArray(t)?t:"string"==typeof t&&t.match(j)||[]}w.fn.extend({prop:function(t,e){return H(this,w.prop,t,e,arguments.length>1)},removeProp:function(t){return this.each((function(){delete this[w.propFix[t]||t]}))}}),w.extend({prop:function(t,e,i){var n,r,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(t)||(e=w.propFix[e]||e,r=w.propHooks[e]),void 0!==i?r&&"set"in r&&void 0!==(n=r.set(t,i,e))?n:t[e]=i:r&&"get"in r&&null!==(n=r.get(t,e))?n:t[e]},propHooks:{tabIndex:{get:function(t){var e=w.find.attr(t,"tabindex");return e?parseInt(e,10):de.test(t.nodeName)||pe.test(t.nodeName)&&t.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),p.optSelected||(w.propHooks.selected={get:function(t){var e=t.parentNode;return e&&e.parentNode&&e.parentNode.selectedIndex,null},set:function(t){var e=t.parentNode;e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){w.propFix[this.toLowerCase()]=this})),w.fn.extend({addClass:function(t){var e,i,n,r,o,a,s,l=0;if(f(t))return this.each((function(e){w(this).addClass(t.call(this,e,ge(this)))}));if((e=me(t)).length)for(;i=this[l++];)if(r=ge(i),n=1===i.nodeType&&" "+fe(r)+" "){for(a=0;o=e[a++];)n.indexOf(" "+o+" ")<0&&(n+=o+" ");r!==(s=fe(n))&&i.setAttribute("class",s)}return this},removeClass:function(t){var e,i,n,r,o,a,s,l=0;if(f(t))return this.each((function(e){w(this).removeClass(t.call(this,e,ge(this)))}));if(!arguments.length)return this.attr("class","");if((e=me(t)).length)for(;i=this[l++];)if(r=ge(i),n=1===i.nodeType&&" "+fe(r)+" "){for(a=0;o=e[a++];)for(;n.indexOf(" "+o+" ")>-1;)n=n.replace(" "+o+" "," ");r!==(s=fe(n))&&i.setAttribute("class",s)}return this},toggleClass:function(t,e){var i=typeof t,n="string"===i||Array.isArray(t);return"boolean"==typeof e&&n?e?this.addClass(t):this.removeClass(t):f(t)?this.each((function(i){w(this).toggleClass(t.call(this,i,ge(this),e),e)})):this.each((function(){var e,r,o,a;if(n)for(r=0,o=w(this),a=me(t);e=a[r++];)o.hasClass(e)?o.removeClass(e):o.addClass(e);else void 0!==t&&"boolean"!==i||((e=ge(this))&&$.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":$.get(this,"__className__")||""))}))},hasClass:function(t){var e,i,n=0;for(e=" "+t+" ";i=this[n++];)if(1===i.nodeType&&(" "+fe(ge(i))+" ").indexOf(e)>-1)return!0;return!1}});var ye=/\r/g;w.fn.extend({val:function(t){var e,i,n,r=this[0];return arguments.length?(n=f(t),this.each((function(i){var r;1===this.nodeType&&(null==(r=n?t.call(this,i,w(this).val()):t)?r="":"number"==typeof r?r+="":Array.isArray(r)&&(r=w.map(r,(function(t){return null==t?"":t+""}))),(e=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&void 0!==e.set(this,r,"value")||(this.value=r))}))):r?(e=w.valHooks[r.type]||w.valHooks[r.nodeName.toLowerCase()])&&"get"in e&&void 0!==(i=e.get(r,"value"))?i:"string"==typeof(i=r.value)?i.replace(ye,""):null==i?"":i:void 0}}),w.extend({valHooks:{option:{get:function(t){var e=w.find.attr(t,"value");return null!=e?e:fe(w.text(t))}},select:{get:function(t){var e,i,n,r=t.options,o=t.selectedIndex,a="select-one"===t.type,s=a?null:[],l=a?o+1:r.length;for(n=o<0?l:a?o:0;n-1)&&(i=!0);return i||(t.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],(function(){w.valHooks[this]={set:function(t,e){if(Array.isArray(e))return t.checked=w.inArray(w(t).val(),e)>-1}},p.checkOn||(w.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})})),p.focusin="onfocusin"in t;var ve=/^(?:focusinfocus|focusoutblur)$/,be=function(t){t.stopPropagation()};w.extend(w.event,{trigger:function(e,i,n,r){var o,a,s,l,c,u,d,p,y=[n||m],v=h.call(e,"type")?e.type:e,b=h.call(e,"namespace")?e.namespace.split("."):[];if(a=p=s=n=n||m,3!==n.nodeType&&8!==n.nodeType&&!ve.test(v+w.event.triggered)&&(v.indexOf(".")>-1&&(b=v.split("."),v=b.shift(),b.sort()),c=v.indexOf(":")<0&&"on"+v,(e=e[w.expando]?e:new w.Event(v,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=b.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),i=null==i?[e]:w.makeArray(i,[e]),d=w.event.special[v]||{},r||!d.trigger||!1!==d.trigger.apply(n,i))){if(!r&&!d.noBubble&&!g(n)){for(l=d.delegateType||v,ve.test(l+v)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(n.ownerDocument||m)&&y.push(s.defaultView||s.parentWindow||t)}for(o=0;(a=y[o++])&&!e.isPropagationStopped();)p=a,e.type=o>1?l:d.bindType||v,(u=($.get(a,"events")||Object.create(null))[e.type]&&$.get(a,"handle"))&&u.apply(a,i),(u=c&&a[c])&&u.apply&&U(a)&&(e.result=u.apply(a,i),!1===e.result&&e.preventDefault());return e.type=v,r||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(y.pop(),i)||!U(n)||c&&f(n[v])&&!g(n)&&((s=n[c])&&(n[c]=null),w.event.triggered=v,e.isPropagationStopped()&&p.addEventListener(v,be),n[v](),e.isPropagationStopped()&&p.removeEventListener(v,be),w.event.triggered=void 0,s&&(n[c]=s)),e.result}},simulate:function(t,e,i){var n=w.extend(new w.Event,i,{type:t,isSimulated:!0});w.event.trigger(n,null,e)}}),w.fn.extend({trigger:function(t,e){return this.each((function(){w.event.trigger(t,e,this)}))},triggerHandler:function(t,e){var i=this[0];if(i)return w.event.trigger(t,e,i,!0)}}),p.focusin||w.each({focus:"focusin",blur:"focusout"},(function(t,e){var i=function(t){w.event.simulate(e,t.target,w.event.fix(t))};w.event.special[e]={setup:function(){var n=this.ownerDocument||this.document||this,r=$.access(n,e);r||n.addEventListener(t,i,!0),$.access(n,e,(r||0)+1)},teardown:function(){var n=this.ownerDocument||this.document||this,r=$.access(n,e)-1;r?$.access(n,e,r):(n.removeEventListener(t,i,!0),$.remove(n,e))}}}));var xe=t.location,we={guid:Date.now()},_e=/\?/;w.parseXML=function(e){var i,n;if(!e||"string"!=typeof e)return null;try{i=(new t.DOMParser).parseFromString(e,"text/xml")}catch(t){}return n=i&&i.getElementsByTagName("parsererror")[0],i&&!n||w.error("Invalid XML: "+(n?w.map(n.childNodes,(function(t){return t.textContent})).join("\n"):e)),i};var Se=/\[\]$/,Pe=/\r?\n/g,ke=/^(?:submit|button|image|reset|file)$/i,Ce=/^(?:input|select|textarea|keygen)/i;function Te(t,e,i,n){var r;if(Array.isArray(e))w.each(e,(function(e,r){i||Se.test(t)?n(t,r):Te(t+"["+("object"==typeof r&&null!=r?e:"")+"]",r,i,n)}));else if(i||"object"!==b(e))n(t,e);else for(r in e)Te(t+"["+r+"]",e[r],i,n)}w.param=function(t,e){var i,n=[],r=function(t,e){var i=f(e)?e():e;n[n.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==i?"":i)};if(null==t)return"";if(Array.isArray(t)||t.jquery&&!w.isPlainObject(t))w.each(t,(function(){r(this.name,this.value)}));else for(i in t)Te(i,t[i],e,r);return n.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var t=w.prop(this,"elements");return t?w.makeArray(t):this})).filter((function(){var t=this.type;return this.name&&!w(this).is(":disabled")&&Ce.test(this.nodeName)&&!ke.test(t)&&(this.checked||!pt.test(t))})).map((function(t,e){var i=w(this).val();return null==i?null:Array.isArray(i)?w.map(i,(function(t){return{name:e.name,value:t.replace(Pe,"\r\n")}})):{name:e.name,value:i.replace(Pe,"\r\n")}})).get()}});var Ae=/%20/g,Oe=/#.*$/,Me=/([?&])_=[^&]*/,Ee=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ie=/^(?:GET|HEAD)$/,De=/^\/\//,Le={},je={},Ne="*/".concat("*"),Fe=m.createElement("a");function Re(t){return function(e,i){"string"!=typeof e&&(i=e,e="*");var n,r=0,o=e.toLowerCase().match(j)||[];if(f(i))for(;n=o[r++];)"+"===n[0]?(n=n.slice(1)||"*",(t[n]=t[n]||[]).unshift(i)):(t[n]=t[n]||[]).push(i)}}function Ve(t,e,i,n){var r={},o=t===je;function a(s){var l;return r[s]=!0,w.each(t[s]||[],(function(t,s){var c=s(e,i,n);return"string"!=typeof c||o||r[c]?o?!(l=c):void 0:(e.dataTypes.unshift(c),a(c),!1)})),l}return a(e.dataTypes[0])||!r["*"]&&a("*")}function ze(t,e){var i,n,r=w.ajaxSettings.flatOptions||{};for(i in e)void 0!==e[i]&&((r[i]?t:n||(n={}))[i]=e[i]);return n&&w.extend(!0,t,n),t}Fe.href=xe.href,w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:xe.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(xe.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Ne,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?ze(ze(t,w.ajaxSettings),e):ze(w.ajaxSettings,t)},ajaxPrefilter:Re(Le),ajaxTransport:Re(je),ajax:function(e,i){"object"==typeof e&&(i=e,e=void 0),i=i||{};var n,r,o,a,s,l,c,h,u,d,p=w.ajaxSetup({},i),f=p.context||p,g=p.context&&(f.nodeType||f.jquery)?w(f):w.event,y=w.Deferred(),v=w.Callbacks("once memory"),b=p.statusCode||{},x={},_={},S="canceled",P={readyState:0,getResponseHeader:function(t){var e;if(c){if(!a)for(a={};e=Ee.exec(o);)a[e[1].toLowerCase()+" "]=(a[e[1].toLowerCase()+" "]||[]).concat(e[2]);e=a[t.toLowerCase()+" "]}return null==e?null:e.join(", ")},getAllResponseHeaders:function(){return c?o:null},setRequestHeader:function(t,e){return null==c&&(t=_[t.toLowerCase()]=_[t.toLowerCase()]||t,x[t]=e),this},overrideMimeType:function(t){return null==c&&(p.mimeType=t),this},statusCode:function(t){var e;if(t)if(c)P.always(t[P.status]);else for(e in t)b[e]=[b[e],t[e]];return this},abort:function(t){var e=t||S;return n&&n.abort(e),k(0,e),this}};if(y.promise(P),p.url=((e||p.url||xe.href)+"").replace(De,xe.protocol+"//"),p.type=i.method||i.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(j)||[""],null==p.crossDomain){l=m.createElement("a");try{l.href=p.url,l.href=l.href,p.crossDomain=Fe.protocol+"//"+Fe.host!=l.protocol+"//"+l.host}catch(t){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=w.param(p.data,p.traditional)),Ve(Le,p,i,P),c)return P;for(u in(h=w.event&&p.global)&&0==w.active++&&w.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Ie.test(p.type),r=p.url.replace(Oe,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(Ae,"+")):(d=p.url.slice(r.length),p.data&&(p.processData||"string"==typeof p.data)&&(r+=(_e.test(r)?"&":"?")+p.data,delete p.data),!1===p.cache&&(r=r.replace(Me,"$1"),d=(_e.test(r)?"&":"?")+"_="+we.guid+++d),p.url=r+d),p.ifModified&&(w.lastModified[r]&&P.setRequestHeader("If-Modified-Since",w.lastModified[r]),w.etag[r]&&P.setRequestHeader("If-None-Match",w.etag[r])),(p.data&&p.hasContent&&!1!==p.contentType||i.contentType)&&P.setRequestHeader("Content-Type",p.contentType),P.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Ne+"; q=0.01":""):p.accepts["*"]),p.headers)P.setRequestHeader(u,p.headers[u]);if(p.beforeSend&&(!1===p.beforeSend.call(f,P,p)||c))return P.abort();if(S="abort",v.add(p.complete),P.done(p.success),P.fail(p.error),n=Ve(je,p,i,P)){if(P.readyState=1,h&&g.trigger("ajaxSend",[P,p]),c)return P;p.async&&p.timeout>0&&(s=t.setTimeout((function(){P.abort("timeout")}),p.timeout));try{c=!1,n.send(x,k)}catch(t){if(c)throw t;k(-1,t)}}else k(-1,"No Transport");function k(e,i,a,l){var u,d,m,x,_,S=i;c||(c=!0,s&&t.clearTimeout(s),n=void 0,o=l||"",P.readyState=e>0?4:0,u=e>=200&&e<300||304===e,a&&(x=function(t,e,i){for(var n,r,o,a,s=t.contents,l=t.dataTypes;"*"===l[0];)l.shift(),void 0===n&&(n=t.mimeType||e.getResponseHeader("Content-Type"));if(n)for(r in s)if(s[r]&&s[r].test(n)){l.unshift(r);break}if(l[0]in i)o=l[0];else{for(r in i){if(!l[0]||t.converters[r+" "+l[0]]){o=r;break}a||(a=r)}o=o||a}if(o)return o!==l[0]&&l.unshift(o),i[o]}(p,P,a)),!u&&w.inArray("script",p.dataTypes)>-1&&w.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),x=function(t,e,i,n){var r,o,a,s,l,c={},h=t.dataTypes.slice();if(h[1])for(a in t.converters)c[a.toLowerCase()]=t.converters[a];for(o=h.shift();o;)if(t.responseFields[o]&&(i[t.responseFields[o]]=e),!l&&n&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),l=o,o=h.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(!(a=c[l+" "+o]||c["* "+o]))for(r in c)if((s=r.split(" "))[1]===o&&(a=c[l+" "+s[0]]||c["* "+s[0]])){!0===a?a=c[r]:!0!==c[r]&&(o=s[0],h.unshift(s[1]));break}if(!0!==a)if(a&&t.throws)e=a(e);else try{e=a(e)}catch(t){return{state:"parsererror",error:a?t:"No conversion from "+l+" to "+o}}}return{state:"success",data:e}}(p,x,P,u),u?(p.ifModified&&((_=P.getResponseHeader("Last-Modified"))&&(w.lastModified[r]=_),(_=P.getResponseHeader("etag"))&&(w.etag[r]=_)),204===e||"HEAD"===p.type?S="nocontent":304===e?S="notmodified":(S=x.state,d=x.data,u=!(m=x.error))):(m=S,!e&&S||(S="error",e<0&&(e=0))),P.status=e,P.statusText=(i||S)+"",u?y.resolveWith(f,[d,S,P]):y.rejectWith(f,[P,S,m]),P.statusCode(b),b=void 0,h&&g.trigger(u?"ajaxSuccess":"ajaxError",[P,p,u?d:m]),v.fireWith(f,[P,S]),h&&(g.trigger("ajaxComplete",[P,p]),--w.active||w.event.trigger("ajaxStop")))}return P},getJSON:function(t,e,i){return w.get(t,e,i,"json")},getScript:function(t,e){return w.get(t,void 0,e,"script")}}),w.each(["get","post"],(function(t,e){w[e]=function(t,i,n,r){return f(i)&&(r=r||n,n=i,i=void 0),w.ajax(w.extend({url:t,type:e,dataType:r,data:i,success:n},w.isPlainObject(t)&&t))}})),w.ajaxPrefilter((function(t){var e;for(e in t.headers)"content-type"===e.toLowerCase()&&(t.contentType=t.headers[e]||"")})),w._evalUrl=function(t,e,i){return w.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(t){w.globalEval(t,e,i)}})},w.fn.extend({wrapAll:function(t){var e;return this[0]&&(f(t)&&(t=t.call(this[0])),e=w(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&e.insertBefore(this[0]),e.map((function(){for(var t=this;t.firstElementChild;)t=t.firstElementChild;return t})).append(this)),this},wrapInner:function(t){return f(t)?this.each((function(e){w(this).wrapInner(t.call(this,e))})):this.each((function(){var e=w(this),i=e.contents();i.length?i.wrapAll(t):e.append(t)}))},wrap:function(t){var e=f(t);return this.each((function(i){w(this).wrapAll(e?t.call(this,i):t)}))},unwrap:function(t){return this.parent(t).not("body").each((function(){w(this).replaceWith(this.childNodes)})),this}}),w.expr.pseudos.hidden=function(t){return!w.expr.pseudos.visible(t)},w.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new t.XMLHttpRequest}catch(t){}};var Be={0:200,1223:204},He=w.ajaxSettings.xhr();p.cors=!!He&&"withCredentials"in He,p.ajax=He=!!He,w.ajaxTransport((function(e){var i,n;if(p.cors||He&&!e.crossDomain)return{send:function(r,o){var a,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest"),r)s.setRequestHeader(a,r[a]);i=function(t){return function(){i&&(i=n=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===t?s.abort():"error"===t?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Be[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=i(),n=s.onerror=s.ontimeout=i("error"),void 0!==s.onabort?s.onabort=n:s.onreadystatechange=function(){4===s.readyState&&t.setTimeout((function(){i&&n()}))},i=i("abort");try{s.send(e.hasContent&&e.data||null)}catch(t){if(i)throw t}},abort:function(){i&&i()}}})),w.ajaxPrefilter((function(t){t.crossDomain&&(t.contents.script=!1)})),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return w.globalEval(t),t}}}),w.ajaxPrefilter("script",(function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")})),w.ajaxTransport("script",(function(t){var e,i;if(t.crossDomain||t.scriptAttrs)return{send:function(n,r){e=w("© - - MoniGO v1.0.0 - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/web/.gitignore b/web/.gitignore new file mode 100644 index 0000000..3b462cb --- /dev/null +++ b/web/.gitignore @@ -0,0 +1,23 @@ +node_modules + +# Output +.output +.vercel +.netlify +.wrangler +/.svelte-kit +/build + +# OS +.DS_Store +Thumbs.db + +# Env +.env +.env.* +!.env.example +!.env.test + +# Vite +vite.config.js.timestamp-* +vite.config.ts.timestamp-* diff --git a/web/.npmrc b/web/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/web/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/web/.prettierignore b/web/.prettierignore new file mode 100644 index 0000000..7d74fe2 --- /dev/null +++ b/web/.prettierignore @@ -0,0 +1,9 @@ +# Package Managers +package-lock.json +pnpm-lock.yaml +yarn.lock +bun.lock +bun.lockb + +# Miscellaneous +/static/ diff --git a/web/.prettierrc b/web/.prettierrc new file mode 100644 index 0000000..819fa57 --- /dev/null +++ b/web/.prettierrc @@ -0,0 +1,16 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100, + "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], + "overrides": [ + { + "files": "*.svelte", + "options": { + "parser": "svelte" + } + } + ], + "tailwindStylesheet": "./src/routes/layout.css" +} diff --git a/web/README.md b/web/README.md new file mode 100644 index 0000000..7571897 --- /dev/null +++ b/web/README.md @@ -0,0 +1,42 @@ +# sv + +Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). + +## Creating a project + +If you're seeing this, you've probably already done this step. Congrats! + +```sh +# create a new project +npx sv create my-app +``` + +To recreate this project with the same configuration: + +```sh +# recreate this project +bun x sv create --template minimal --types ts --add prettier eslint vitest="usages:unit,component" tailwindcss="plugins:typography" --install bun . +``` + +## Developing + +Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: + +```sh +npm run dev + +# or start the server and open the app in a new browser tab +npm run dev -- --open +``` + +## Building + +To create a production version of your app: + +```sh +npm run build +``` + +You can preview the production build with `npm run preview`. + +> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. diff --git a/web/bun.lock b/web/bun.lock new file mode 100644 index 0000000..a1b3809 --- /dev/null +++ b/web/bun.lock @@ -0,0 +1,695 @@ +{ + "lockfileVersion": 1, + "configVersion": 1, + "workspaces": { + "": { + "name": "web", + "dependencies": { + "@sveltejs/adapter-static": "^3.0.10", + "echarts": "^6.0.0", + "lucide-svelte": "^0.563.0", + }, + "devDependencies": { + "@eslint/compat": "^2.0.2", + "@eslint/js": "^9.39.2", + "@internationalized/date": "^3.10.0", + "@lucide/svelte": "^0.561.0", + "@sveltejs/adapter-auto": "^7.0.0", + "@sveltejs/kit": "^2.50.2", + "@sveltejs/vite-plugin-svelte": "^6.2.4", + "@tailwindcss/typography": "^0.5.19", + "@tailwindcss/vite": "^4.1.18", + "@types/node": "^22", + "@vitest/browser-playwright": "^4.0.18", + "bits-ui": "^2.14.4", + "clsx": "^2.1.1", + "eslint": "^9.39.2", + "eslint-config-prettier": "^10.1.8", + "eslint-plugin-svelte": "^3.14.0", + "globals": "^17.3.0", + "playwright": "^1.58.1", + "prettier": "^3.8.1", + "prettier-plugin-svelte": "^3.4.1", + "prettier-plugin-tailwindcss": "^0.7.2", + "svelte": "^5.49.2", + "svelte-check": "^4.3.6", + "tailwind-merge": "^3.4.0", + "tailwind-variants": "^3.2.2", + "tailwindcss": "^4.1.18", + "tw-animate-css": "^1.4.0", + "typescript": "^5.9.3", + "typescript-eslint": "^8.54.0", + "vite": "^7.3.1", + "vitest": "^4.0.18", + "vitest-browser-svelte": "^2.0.2", + }, + }, + }, + "packages": { + "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.3", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg=="], + + "@esbuild/android-arm": ["@esbuild/android-arm@0.27.3", "", { "os": "android", "cpu": "arm" }, "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA=="], + + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.27.3", "", { "os": "android", "cpu": "arm64" }, "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg=="], + + "@esbuild/android-x64": ["@esbuild/android-x64@0.27.3", "", { "os": "android", "cpu": "x64" }, "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ=="], + + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.27.3", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg=="], + + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.27.3", "", { "os": "darwin", "cpu": "x64" }, "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg=="], + + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.27.3", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w=="], + + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.27.3", "", { "os": "freebsd", "cpu": "x64" }, "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA=="], + + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.27.3", "", { "os": "linux", "cpu": "arm" }, "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw=="], + + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.27.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg=="], + + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.27.3", "", { "os": "linux", "cpu": "ia32" }, "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg=="], + + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.27.3", "", { "os": "linux", "cpu": "none" }, "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA=="], + + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.27.3", "", { "os": "linux", "cpu": "none" }, "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw=="], + + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.27.3", "", { "os": "linux", "cpu": "ppc64" }, "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA=="], + + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.27.3", "", { "os": "linux", "cpu": "none" }, "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ=="], + + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.27.3", "", { "os": "linux", "cpu": "s390x" }, "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw=="], + + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.27.3", "", { "os": "linux", "cpu": "x64" }, "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA=="], + + "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.27.3", "", { "os": "none", "cpu": "arm64" }, "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA=="], + + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.27.3", "", { "os": "none", "cpu": "x64" }, "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA=="], + + "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.27.3", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw=="], + + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.27.3", "", { "os": "openbsd", "cpu": "x64" }, "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ=="], + + "@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.27.3", "", { "os": "none", "cpu": "arm64" }, "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g=="], + + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.27.3", "", { "os": "sunos", "cpu": "x64" }, "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA=="], + + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.27.3", "", { "os": "win32", "cpu": "arm64" }, "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.27.3", "", { "os": "win32", "cpu": "ia32" }, "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.3", "", { "os": "win32", "cpu": "x64" }, "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA=="], + + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.1", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ=="], + + "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.2", "", {}, "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew=="], + + "@eslint/compat": ["@eslint/compat@2.0.2", "", { "dependencies": { "@eslint/core": "^1.1.0" }, "peerDependencies": { "eslint": "^8.40 || 9 || 10" }, "optionalPeers": ["eslint"] }, "sha512-pR1DoD0h3HfF675QZx0xsyrsU8q70Z/plx7880NOhS02NuWLgBCOMDL787nUeQ7EWLkxv3bPQJaarjcPQb2Dwg=="], + + "@eslint/config-array": ["@eslint/config-array@0.21.1", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA=="], + + "@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="], + + "@eslint/core": ["@eslint/core@1.1.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw=="], + + "@eslint/eslintrc": ["@eslint/eslintrc@3.3.3", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.1", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ=="], + + "@eslint/js": ["@eslint/js@9.39.2", "", {}, "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA=="], + + "@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="], + + "@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="], + + "@floating-ui/core": ["@floating-ui/core@1.7.4", "", { "dependencies": { "@floating-ui/utils": "^0.2.10" } }, "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg=="], + + "@floating-ui/dom": ["@floating-ui/dom@1.7.5", "", { "dependencies": { "@floating-ui/core": "^1.7.4", "@floating-ui/utils": "^0.2.10" } }, "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg=="], + + "@floating-ui/utils": ["@floating-ui/utils@0.2.10", "", {}, "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ=="], + + "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], + + "@humanfs/node": ["@humanfs/node@0.16.7", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.4.0" } }, "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ=="], + + "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], + + "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="], + + "@internationalized/date": ["@internationalized/date@3.11.0", "", { "dependencies": { "@swc/helpers": "^0.5.0" } }, "sha512-BOx5huLAWhicM9/ZFs84CzP+V3gBW6vlpM02yzsdYC7TGlZJX1OJiEEHcSayF00Z+3jLlm4w79amvSt6RqKN3Q=="], + + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.13", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA=="], + + "@jridgewell/remapping": ["@jridgewell/remapping@2.3.5", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ=="], + + "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], + + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.31", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw=="], + + "@lucide/svelte": ["@lucide/svelte@0.561.0", "", { "peerDependencies": { "svelte": "^5" } }, "sha512-vofKV2UFVrKE6I4ewKJ3dfCXSV6iP6nWVmiM83MLjsU91EeJcEg7LoWUABLp/aOTxj1HQNbJD1f3g3L0JQgH9A=="], + + "@polka/url": ["@polka/url@1.0.0-next.29", "", {}, "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww=="], + + "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.57.1", "", { "os": "android", "cpu": "arm" }, "sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg=="], + + "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.57.1", "", { "os": "android", "cpu": "arm64" }, "sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w=="], + + "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.57.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg=="], + + "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.57.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w=="], + + "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.57.1", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug=="], + + "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.57.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q=="], + + "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.57.1", "", { "os": "linux", "cpu": "arm" }, "sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw=="], + + "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.57.1", "", { "os": "linux", "cpu": "arm" }, "sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw=="], + + "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.57.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g=="], + + "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.57.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q=="], + + "@rollup/rollup-linux-loong64-gnu": ["@rollup/rollup-linux-loong64-gnu@4.57.1", "", { "os": "linux", "cpu": "none" }, "sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA=="], + + "@rollup/rollup-linux-loong64-musl": ["@rollup/rollup-linux-loong64-musl@4.57.1", "", { "os": "linux", "cpu": "none" }, "sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw=="], + + "@rollup/rollup-linux-ppc64-gnu": ["@rollup/rollup-linux-ppc64-gnu@4.57.1", "", { "os": "linux", "cpu": "ppc64" }, "sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w=="], + + "@rollup/rollup-linux-ppc64-musl": ["@rollup/rollup-linux-ppc64-musl@4.57.1", "", { "os": "linux", "cpu": "ppc64" }, "sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw=="], + + "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.57.1", "", { "os": "linux", "cpu": "none" }, "sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A=="], + + "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.57.1", "", { "os": "linux", "cpu": "none" }, "sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw=="], + + "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.57.1", "", { "os": "linux", "cpu": "s390x" }, "sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg=="], + + "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.57.1", "", { "os": "linux", "cpu": "x64" }, "sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg=="], + + "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.57.1", "", { "os": "linux", "cpu": "x64" }, "sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw=="], + + "@rollup/rollup-openbsd-x64": ["@rollup/rollup-openbsd-x64@4.57.1", "", { "os": "openbsd", "cpu": "x64" }, "sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw=="], + + "@rollup/rollup-openharmony-arm64": ["@rollup/rollup-openharmony-arm64@4.57.1", "", { "os": "none", "cpu": "arm64" }, "sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ=="], + + "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.57.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ=="], + + "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.57.1", "", { "os": "win32", "cpu": "ia32" }, "sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew=="], + + "@rollup/rollup-win32-x64-gnu": ["@rollup/rollup-win32-x64-gnu@4.57.1", "", { "os": "win32", "cpu": "x64" }, "sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ=="], + + "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.57.1", "", { "os": "win32", "cpu": "x64" }, "sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA=="], + + "@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], + + "@sveltejs/acorn-typescript": ["@sveltejs/acorn-typescript@1.0.9", "", { "peerDependencies": { "acorn": "^8.9.0" } }, "sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA=="], + + "@sveltejs/adapter-auto": ["@sveltejs/adapter-auto@7.0.0", "", { "peerDependencies": { "@sveltejs/kit": "^2.0.0" } }, "sha512-ImDWaErTOCkRS4Gt+5gZuymKFBobnhChXUZ9lhUZLahUgvA4OOvRzi3sahzYgbxGj5nkA6OV0GAW378+dl/gyw=="], + + "@sveltejs/adapter-static": ["@sveltejs/adapter-static@3.0.10", "", { "peerDependencies": { "@sveltejs/kit": "^2.0.0" } }, "sha512-7D9lYFWJmB7zxZyTE/qxjksvMqzMuYrrsyh1f4AlZqeZeACPRySjbC3aFiY55wb1tWUaKOQG9PVbm74JcN2Iew=="], + + "@sveltejs/kit": ["@sveltejs/kit@2.50.2", "", { "dependencies": { "@standard-schema/spec": "^1.0.0", "@sveltejs/acorn-typescript": "^1.0.5", "@types/cookie": "^0.6.0", "acorn": "^8.14.1", "cookie": "^0.6.0", "devalue": "^5.6.2", "esm-env": "^1.2.2", "kleur": "^4.1.5", "magic-string": "^0.30.5", "mrmime": "^2.0.0", "sade": "^1.8.1", "set-cookie-parser": "^3.0.0", "sirv": "^3.0.0" }, "peerDependencies": { "@opentelemetry/api": "^1.0.0", "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0", "svelte": "^4.0.0 || ^5.0.0-next.0", "typescript": "^5.3.3", "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0" }, "optionalPeers": ["@opentelemetry/api", "typescript"], "bin": { "svelte-kit": "svelte-kit.js" } }, "sha512-875hTUkEbz+MyJIxWbQjfMaekqdmEKUUfR7JyKcpfMRZqcGyrO9Gd+iS1D/Dx8LpE5FEtutWGOtlAh4ReSAiOA=="], + + "@sveltejs/vite-plugin-svelte": ["@sveltejs/vite-plugin-svelte@6.2.4", "", { "dependencies": { "@sveltejs/vite-plugin-svelte-inspector": "^5.0.0", "deepmerge": "^4.3.1", "magic-string": "^0.30.21", "obug": "^2.1.0", "vitefu": "^1.1.1" }, "peerDependencies": { "svelte": "^5.0.0", "vite": "^6.3.0 || ^7.0.0" } }, "sha512-ou/d51QSdTyN26D7h6dSpusAKaZkAiGM55/AKYi+9AGZw7q85hElbjK3kEyzXHhLSnRISHOYzVge6x0jRZ7DXA=="], + + "@sveltejs/vite-plugin-svelte-inspector": ["@sveltejs/vite-plugin-svelte-inspector@5.0.2", "", { "dependencies": { "obug": "^2.1.0" }, "peerDependencies": { "@sveltejs/vite-plugin-svelte": "^6.0.0-next.0", "svelte": "^5.0.0", "vite": "^6.3.0 || ^7.0.0" } }, "sha512-TZzRTcEtZffICSAoZGkPSl6Etsj2torOVrx6Uw0KpXxrec9Gg6jFWQ60Q3+LmNGfZSxHRCZL7vXVZIWmuV50Ig=="], + + "@swc/helpers": ["@swc/helpers@0.5.18", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ=="], + + "@tailwindcss/node": ["@tailwindcss/node@4.1.18", "", { "dependencies": { "@jridgewell/remapping": "^2.3.4", "enhanced-resolve": "^5.18.3", "jiti": "^2.6.1", "lightningcss": "1.30.2", "magic-string": "^0.30.21", "source-map-js": "^1.2.1", "tailwindcss": "4.1.18" } }, "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ=="], + + "@tailwindcss/oxide": ["@tailwindcss/oxide@4.1.18", "", { "optionalDependencies": { "@tailwindcss/oxide-android-arm64": "4.1.18", "@tailwindcss/oxide-darwin-arm64": "4.1.18", "@tailwindcss/oxide-darwin-x64": "4.1.18", "@tailwindcss/oxide-freebsd-x64": "4.1.18", "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18", "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18", "@tailwindcss/oxide-linux-arm64-musl": "4.1.18", "@tailwindcss/oxide-linux-x64-gnu": "4.1.18", "@tailwindcss/oxide-linux-x64-musl": "4.1.18", "@tailwindcss/oxide-wasm32-wasi": "4.1.18", "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18", "@tailwindcss/oxide-win32-x64-msvc": "4.1.18" } }, "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A=="], + + "@tailwindcss/oxide-android-arm64": ["@tailwindcss/oxide-android-arm64@4.1.18", "", { "os": "android", "cpu": "arm64" }, "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q=="], + + "@tailwindcss/oxide-darwin-arm64": ["@tailwindcss/oxide-darwin-arm64@4.1.18", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A=="], + + "@tailwindcss/oxide-darwin-x64": ["@tailwindcss/oxide-darwin-x64@4.1.18", "", { "os": "darwin", "cpu": "x64" }, "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw=="], + + "@tailwindcss/oxide-freebsd-x64": ["@tailwindcss/oxide-freebsd-x64@4.1.18", "", { "os": "freebsd", "cpu": "x64" }, "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA=="], + + "@tailwindcss/oxide-linux-arm-gnueabihf": ["@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18", "", { "os": "linux", "cpu": "arm" }, "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA=="], + + "@tailwindcss/oxide-linux-arm64-gnu": ["@tailwindcss/oxide-linux-arm64-gnu@4.1.18", "", { "os": "linux", "cpu": "arm64" }, "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw=="], + + "@tailwindcss/oxide-linux-arm64-musl": ["@tailwindcss/oxide-linux-arm64-musl@4.1.18", "", { "os": "linux", "cpu": "arm64" }, "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg=="], + + "@tailwindcss/oxide-linux-x64-gnu": ["@tailwindcss/oxide-linux-x64-gnu@4.1.18", "", { "os": "linux", "cpu": "x64" }, "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g=="], + + "@tailwindcss/oxide-linux-x64-musl": ["@tailwindcss/oxide-linux-x64-musl@4.1.18", "", { "os": "linux", "cpu": "x64" }, "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ=="], + + "@tailwindcss/oxide-wasm32-wasi": ["@tailwindcss/oxide-wasm32-wasi@4.1.18", "", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@emnapi/wasi-threads": "^1.1.0", "@napi-rs/wasm-runtime": "^1.1.0", "@tybys/wasm-util": "^0.10.1", "tslib": "^2.4.0" }, "cpu": "none" }, "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA=="], + + "@tailwindcss/oxide-win32-arm64-msvc": ["@tailwindcss/oxide-win32-arm64-msvc@4.1.18", "", { "os": "win32", "cpu": "arm64" }, "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA=="], + + "@tailwindcss/oxide-win32-x64-msvc": ["@tailwindcss/oxide-win32-x64-msvc@4.1.18", "", { "os": "win32", "cpu": "x64" }, "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q=="], + + "@tailwindcss/typography": ["@tailwindcss/typography@0.5.19", "", { "dependencies": { "postcss-selector-parser": "6.0.10" }, "peerDependencies": { "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" } }, "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg=="], + + "@tailwindcss/vite": ["@tailwindcss/vite@4.1.18", "", { "dependencies": { "@tailwindcss/node": "4.1.18", "@tailwindcss/oxide": "4.1.18", "tailwindcss": "4.1.18" }, "peerDependencies": { "vite": "^5.2.0 || ^6 || ^7" } }, "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA=="], + + "@testing-library/svelte-core": ["@testing-library/svelte-core@1.0.0", "", { "peerDependencies": { "svelte": "^3 || ^4 || ^5 || ^5.0.0-next.0" } }, "sha512-VkUePoLV6oOYwSUvX6ShA8KLnJqZiYMIbP2JW2t0GLWLkJxKGvuH5qrrZBV/X7cXFnLGuFQEC7RheYiZOW68KQ=="], + + "@types/chai": ["@types/chai@5.2.3", "", { "dependencies": { "@types/deep-eql": "*", "assertion-error": "^2.0.1" } }, "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA=="], + + "@types/cookie": ["@types/cookie@0.6.0", "", {}, "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA=="], + + "@types/deep-eql": ["@types/deep-eql@4.0.2", "", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="], + + "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], + + "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], + + "@types/node": ["@types/node@22.19.11", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w=="], + + "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.55.0", "", { "dependencies": { "@eslint-community/regexpp": "^4.12.2", "@typescript-eslint/scope-manager": "8.55.0", "@typescript-eslint/type-utils": "8.55.0", "@typescript-eslint/utils": "8.55.0", "@typescript-eslint/visitor-keys": "8.55.0", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.4.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.55.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ=="], + + "@typescript-eslint/parser": ["@typescript-eslint/parser@8.55.0", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.55.0", "@typescript-eslint/types": "8.55.0", "@typescript-eslint/typescript-estree": "8.55.0", "@typescript-eslint/visitor-keys": "8.55.0", "debug": "^4.4.3" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw=="], + + "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.55.0", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.55.0", "@typescript-eslint/types": "^8.55.0", "debug": "^4.4.3" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ=="], + + "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.55.0", "", { "dependencies": { "@typescript-eslint/types": "8.55.0", "@typescript-eslint/visitor-keys": "8.55.0" } }, "sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q=="], + + "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.55.0", "", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q=="], + + "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.55.0", "", { "dependencies": { "@typescript-eslint/types": "8.55.0", "@typescript-eslint/typescript-estree": "8.55.0", "@typescript-eslint/utils": "8.55.0", "debug": "^4.4.3", "ts-api-utils": "^2.4.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g=="], + + "@typescript-eslint/types": ["@typescript-eslint/types@8.55.0", "", {}, "sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w=="], + + "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.55.0", "", { "dependencies": { "@typescript-eslint/project-service": "8.55.0", "@typescript-eslint/tsconfig-utils": "8.55.0", "@typescript-eslint/types": "8.55.0", "@typescript-eslint/visitor-keys": "8.55.0", "debug": "^4.4.3", "minimatch": "^9.0.5", "semver": "^7.7.3", "tinyglobby": "^0.2.15", "ts-api-utils": "^2.4.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw=="], + + "@typescript-eslint/utils": ["@typescript-eslint/utils@8.55.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", "@typescript-eslint/scope-manager": "8.55.0", "@typescript-eslint/types": "8.55.0", "@typescript-eslint/typescript-estree": "8.55.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow=="], + + "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.55.0", "", { "dependencies": { "@typescript-eslint/types": "8.55.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA=="], + + "@vitest/browser": ["@vitest/browser@4.0.18", "", { "dependencies": { "@vitest/mocker": "4.0.18", "@vitest/utils": "4.0.18", "magic-string": "^0.30.21", "pixelmatch": "7.1.0", "pngjs": "^7.0.0", "sirv": "^3.0.2", "tinyrainbow": "^3.0.3", "ws": "^8.18.3" }, "peerDependencies": { "vitest": "4.0.18" } }, "sha512-gVQqh7paBz3gC+ZdcCmNSWJMk70IUjDeVqi+5m5vYpEHsIwRgw3Y545jljtajhkekIpIp5Gg8oK7bctgY0E2Ng=="], + + "@vitest/browser-playwright": ["@vitest/browser-playwright@4.0.18", "", { "dependencies": { "@vitest/browser": "4.0.18", "@vitest/mocker": "4.0.18", "tinyrainbow": "^3.0.3" }, "peerDependencies": { "playwright": "*", "vitest": "4.0.18" } }, "sha512-gfajTHVCiwpxRj1qh0Sh/5bbGLG4F/ZH/V9xvFVoFddpITfMta9YGow0W6ZpTTORv2vdJuz9TnrNSmjKvpOf4g=="], + + "@vitest/expect": ["@vitest/expect@4.0.18", "", { "dependencies": { "@standard-schema/spec": "^1.0.0", "@types/chai": "^5.2.2", "@vitest/spy": "4.0.18", "@vitest/utils": "4.0.18", "chai": "^6.2.1", "tinyrainbow": "^3.0.3" } }, "sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ=="], + + "@vitest/mocker": ["@vitest/mocker@4.0.18", "", { "dependencies": { "@vitest/spy": "4.0.18", "estree-walker": "^3.0.3", "magic-string": "^0.30.21" }, "peerDependencies": { "msw": "^2.4.9", "vite": "^6.0.0 || ^7.0.0-0" }, "optionalPeers": ["msw", "vite"] }, "sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ=="], + + "@vitest/pretty-format": ["@vitest/pretty-format@4.0.18", "", { "dependencies": { "tinyrainbow": "^3.0.3" } }, "sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw=="], + + "@vitest/runner": ["@vitest/runner@4.0.18", "", { "dependencies": { "@vitest/utils": "4.0.18", "pathe": "^2.0.3" } }, "sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw=="], + + "@vitest/snapshot": ["@vitest/snapshot@4.0.18", "", { "dependencies": { "@vitest/pretty-format": "4.0.18", "magic-string": "^0.30.21", "pathe": "^2.0.3" } }, "sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA=="], + + "@vitest/spy": ["@vitest/spy@4.0.18", "", {}, "sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw=="], + + "@vitest/utils": ["@vitest/utils@4.0.18", "", { "dependencies": { "@vitest/pretty-format": "4.0.18", "tinyrainbow": "^3.0.3" } }, "sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA=="], + + "acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], + + "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], + + "ajv": ["ajv@6.12.6", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="], + + "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + + "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], + + "aria-query": ["aria-query@5.3.2", "", {}, "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw=="], + + "assertion-error": ["assertion-error@2.0.1", "", {}, "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA=="], + + "axobject-query": ["axobject-query@4.1.0", "", {}, "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="], + + "balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "bits-ui": ["bits-ui@2.15.5", "", { "dependencies": { "@floating-ui/core": "^1.7.1", "@floating-ui/dom": "^1.7.1", "esm-env": "^1.1.2", "runed": "^0.35.1", "svelte-toolbelt": "^0.10.6", "tabbable": "^6.2.0" }, "peerDependencies": { "@internationalized/date": "^3.8.1", "svelte": "^5.33.0" } }, "sha512-WhS+P+E//ClLfKU6KqjKC17nGDRLnz+vkwoP6ClFUPd5m1fFVDxTElPX8QVsduLj5V1KFDxlnv6sW2G5Lqk+vw=="], + + "brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], + + "callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="], + + "chai": ["chai@6.2.2", "", {}, "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg=="], + + "chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + + "chokidar": ["chokidar@4.0.3", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="], + + "clsx": ["clsx@2.1.1", "", {}, "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="], + + "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], + + "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], + + "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], + + "cookie": ["cookie@0.6.0", "", {}, "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw=="], + + "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], + + "cssesc": ["cssesc@3.0.0", "", { "bin": { "cssesc": "bin/cssesc" } }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="], + + "debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "deep-is": ["deep-is@0.1.4", "", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="], + + "deepmerge": ["deepmerge@4.3.1", "", {}, "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="], + + "dequal": ["dequal@2.0.3", "", {}, "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="], + + "detect-libc": ["detect-libc@2.1.2", "", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="], + + "devalue": ["devalue@5.6.2", "", {}, "sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg=="], + + "echarts": ["echarts@6.0.0", "", { "dependencies": { "tslib": "2.3.0", "zrender": "6.0.0" } }, "sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ=="], + + "enhanced-resolve": ["enhanced-resolve@5.19.0", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.3.0" } }, "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg=="], + + "es-module-lexer": ["es-module-lexer@1.7.0", "", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="], + + "esbuild": ["esbuild@0.27.3", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.27.3", "@esbuild/android-arm": "0.27.3", "@esbuild/android-arm64": "0.27.3", "@esbuild/android-x64": "0.27.3", "@esbuild/darwin-arm64": "0.27.3", "@esbuild/darwin-x64": "0.27.3", "@esbuild/freebsd-arm64": "0.27.3", "@esbuild/freebsd-x64": "0.27.3", "@esbuild/linux-arm": "0.27.3", "@esbuild/linux-arm64": "0.27.3", "@esbuild/linux-ia32": "0.27.3", "@esbuild/linux-loong64": "0.27.3", "@esbuild/linux-mips64el": "0.27.3", "@esbuild/linux-ppc64": "0.27.3", "@esbuild/linux-riscv64": "0.27.3", "@esbuild/linux-s390x": "0.27.3", "@esbuild/linux-x64": "0.27.3", "@esbuild/netbsd-arm64": "0.27.3", "@esbuild/netbsd-x64": "0.27.3", "@esbuild/openbsd-arm64": "0.27.3", "@esbuild/openbsd-x64": "0.27.3", "@esbuild/openharmony-arm64": "0.27.3", "@esbuild/sunos-x64": "0.27.3", "@esbuild/win32-arm64": "0.27.3", "@esbuild/win32-ia32": "0.27.3", "@esbuild/win32-x64": "0.27.3" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg=="], + + "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], + + "eslint": ["eslint@9.39.2", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.1", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.39.2", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw=="], + + "eslint-config-prettier": ["eslint-config-prettier@10.1.8", "", { "peerDependencies": { "eslint": ">=7.0.0" }, "bin": { "eslint-config-prettier": "bin/cli.js" } }, "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w=="], + + "eslint-plugin-svelte": ["eslint-plugin-svelte@3.15.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.6.1", "@jridgewell/sourcemap-codec": "^1.5.0", "esutils": "^2.0.3", "globals": "^16.0.0", "known-css-properties": "^0.37.0", "postcss": "^8.4.49", "postcss-load-config": "^3.1.4", "postcss-safe-parser": "^7.0.0", "semver": "^7.6.3", "svelte-eslint-parser": "^1.4.0" }, "peerDependencies": { "eslint": "^8.57.1 || ^9.0.0 || ^10.0.0", "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0" }, "optionalPeers": ["svelte"] }, "sha512-QKB7zqfuB8aChOfBTComgDptMf2yxiJx7FE04nneCmtQzgTHvY8UJkuh8J2Rz7KB9FFV9aTHX6r7rdYGvG8T9Q=="], + + "eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="], + + "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="], + + "esm-env": ["esm-env@1.2.2", "", {}, "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA=="], + + "espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="], + + "esquery": ["esquery@1.7.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g=="], + + "esrap": ["esrap@2.2.3", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" } }, "sha512-8fOS+GIGCQZl/ZIlhl59htOlms6U8NvX6ZYgYHpRU/b6tVSh3uHkOHZikl3D4cMbYM0JlpBe+p/BkZEi8J9XIQ=="], + + "esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="], + + "estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="], + + "estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="], + + "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], + + "expect-type": ["expect-type@1.3.0", "", {}, "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA=="], + + "fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="], + + "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="], + + "fast-levenshtein": ["fast-levenshtein@2.0.6", "", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="], + + "fdir": ["fdir@6.5.0", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="], + + "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], + + "find-up": ["find-up@5.0.0", "", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="], + + "flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], + + "flatted": ["flatted@3.3.3", "", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="], + + "fsevents": ["fsevents@2.3.2", "", { "os": "darwin" }, "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="], + + "glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="], + + "globals": ["globals@17.3.0", "", {}, "sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw=="], + + "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="], + + "has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], + + "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], + + "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], + + "imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="], + + "inline-style-parser": ["inline-style-parser@0.2.7", "", {}, "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA=="], + + "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], + + "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], + + "is-reference": ["is-reference@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.6" } }, "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw=="], + + "isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], + + "jiti": ["jiti@2.6.1", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ=="], + + "js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="], + + "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], + + "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="], + + "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="], + + "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], + + "kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="], + + "known-css-properties": ["known-css-properties@0.37.0", "", {}, "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ=="], + + "levn": ["levn@0.4.1", "", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="], + + "lightningcss": ["lightningcss@1.30.2", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.30.2", "lightningcss-darwin-arm64": "1.30.2", "lightningcss-darwin-x64": "1.30.2", "lightningcss-freebsd-x64": "1.30.2", "lightningcss-linux-arm-gnueabihf": "1.30.2", "lightningcss-linux-arm64-gnu": "1.30.2", "lightningcss-linux-arm64-musl": "1.30.2", "lightningcss-linux-x64-gnu": "1.30.2", "lightningcss-linux-x64-musl": "1.30.2", "lightningcss-win32-arm64-msvc": "1.30.2", "lightningcss-win32-x64-msvc": "1.30.2" } }, "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ=="], + + "lightningcss-android-arm64": ["lightningcss-android-arm64@1.30.2", "", { "os": "android", "cpu": "arm64" }, "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A=="], + + "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.30.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA=="], + + "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.30.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ=="], + + "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.30.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA=="], + + "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.30.2", "", { "os": "linux", "cpu": "arm" }, "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA=="], + + "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.30.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A=="], + + "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.30.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA=="], + + "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.30.2", "", { "os": "linux", "cpu": "x64" }, "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w=="], + + "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.30.2", "", { "os": "linux", "cpu": "x64" }, "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA=="], + + "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.30.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ=="], + + "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.2", "", { "os": "win32", "cpu": "x64" }, "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw=="], + + "lilconfig": ["lilconfig@2.1.0", "", {}, "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="], + + "locate-character": ["locate-character@3.0.0", "", {}, "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA=="], + + "locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="], + + "lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="], + + "lucide-svelte": ["lucide-svelte@0.563.0", "", { "peerDependencies": { "svelte": "^3 || ^4 || ^5.0.0-next.42" } }, "sha512-pjZKw7TpQcamfQrx7YdbOHgmrcNeKiGGMD0tKZQaVktwSsbqw28CsKc2Q97ttwjytiCWkJyOa8ij2Q+Og0nPfQ=="], + + "lz-string": ["lz-string@1.5.0", "", { "bin": { "lz-string": "bin/bin.js" } }, "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ=="], + + "magic-string": ["magic-string@0.30.21", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="], + + "minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + + "mri": ["mri@1.2.0", "", {}, "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="], + + "mrmime": ["mrmime@2.0.1", "", {}, "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ=="], + + "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + + "nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], + + "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], + + "obug": ["obug@2.1.1", "", {}, "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ=="], + + "optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="], + + "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], + + "p-locate": ["p-locate@5.0.0", "", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="], + + "parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], + + "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], + + "path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="], + + "pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="], + + "pixelmatch": ["pixelmatch@7.1.0", "", { "dependencies": { "pngjs": "^7.0.0" }, "bin": { "pixelmatch": "bin/pixelmatch" } }, "sha512-1wrVzJ2STrpmONHKBy228LM1b84msXDUoAzVEl0R8Mz4Ce6EPr+IVtxm8+yvrqLYMHswREkjYFaMxnyGnaY3Ng=="], + + "playwright": ["playwright@1.58.2", "", { "dependencies": { "playwright-core": "1.58.2" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A=="], + + "playwright-core": ["playwright-core@1.58.2", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg=="], + + "pngjs": ["pngjs@7.0.0", "", {}, "sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow=="], + + "postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], + + "postcss-load-config": ["postcss-load-config@3.1.4", "", { "dependencies": { "lilconfig": "^2.0.5", "yaml": "^1.10.2" }, "peerDependencies": { "postcss": ">=8.0.9", "ts-node": ">=9.0.0" }, "optionalPeers": ["postcss", "ts-node"] }, "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg=="], + + "postcss-safe-parser": ["postcss-safe-parser@7.0.1", "", { "peerDependencies": { "postcss": "^8.4.31" } }, "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A=="], + + "postcss-scss": ["postcss-scss@4.0.9", "", { "peerDependencies": { "postcss": "^8.4.29" } }, "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A=="], + + "postcss-selector-parser": ["postcss-selector-parser@6.0.10", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="], + + "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], + + "prettier": ["prettier@3.8.1", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg=="], + + "prettier-plugin-svelte": ["prettier-plugin-svelte@3.4.1", "", { "peerDependencies": { "prettier": "^3.0.0", "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" } }, "sha512-xL49LCloMoZRvSwa6IEdN2GV6cq2IqpYGstYtMT+5wmml1/dClEoI0MZR78MiVPpu6BdQFfN0/y73yO6+br5Pg=="], + + "prettier-plugin-tailwindcss": ["prettier-plugin-tailwindcss@0.7.2", "", { "peerDependencies": { "@ianvs/prettier-plugin-sort-imports": "*", "@prettier/plugin-hermes": "*", "@prettier/plugin-oxc": "*", "@prettier/plugin-pug": "*", "@shopify/prettier-plugin-liquid": "*", "@trivago/prettier-plugin-sort-imports": "*", "@zackad/prettier-plugin-twig": "*", "prettier": "^3.0", "prettier-plugin-astro": "*", "prettier-plugin-css-order": "*", "prettier-plugin-jsdoc": "*", "prettier-plugin-marko": "*", "prettier-plugin-multiline-arrays": "*", "prettier-plugin-organize-attributes": "*", "prettier-plugin-organize-imports": "*", "prettier-plugin-sort-imports": "*", "prettier-plugin-svelte": "*" }, "optionalPeers": ["@ianvs/prettier-plugin-sort-imports", "@prettier/plugin-hermes", "@prettier/plugin-oxc", "@prettier/plugin-pug", "@shopify/prettier-plugin-liquid", "@trivago/prettier-plugin-sort-imports", "@zackad/prettier-plugin-twig", "prettier-plugin-astro", "prettier-plugin-css-order", "prettier-plugin-jsdoc", "prettier-plugin-marko", "prettier-plugin-multiline-arrays", "prettier-plugin-organize-attributes", "prettier-plugin-organize-imports", "prettier-plugin-sort-imports", "prettier-plugin-svelte"] }, "sha512-LkphyK3Fw+q2HdMOoiEHWf93fNtYJwfamoKPl7UwtjFQdei/iIBoX11G6j706FzN3ymX9mPVi97qIY8328vdnA=="], + + "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], + + "readdirp": ["readdirp@4.1.2", "", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="], + + "resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], + + "rollup": ["rollup@4.57.1", "", { "dependencies": { "@types/estree": "1.0.8" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.57.1", "@rollup/rollup-android-arm64": "4.57.1", "@rollup/rollup-darwin-arm64": "4.57.1", "@rollup/rollup-darwin-x64": "4.57.1", "@rollup/rollup-freebsd-arm64": "4.57.1", "@rollup/rollup-freebsd-x64": "4.57.1", "@rollup/rollup-linux-arm-gnueabihf": "4.57.1", "@rollup/rollup-linux-arm-musleabihf": "4.57.1", "@rollup/rollup-linux-arm64-gnu": "4.57.1", "@rollup/rollup-linux-arm64-musl": "4.57.1", "@rollup/rollup-linux-loong64-gnu": "4.57.1", "@rollup/rollup-linux-loong64-musl": "4.57.1", "@rollup/rollup-linux-ppc64-gnu": "4.57.1", "@rollup/rollup-linux-ppc64-musl": "4.57.1", "@rollup/rollup-linux-riscv64-gnu": "4.57.1", "@rollup/rollup-linux-riscv64-musl": "4.57.1", "@rollup/rollup-linux-s390x-gnu": "4.57.1", "@rollup/rollup-linux-x64-gnu": "4.57.1", "@rollup/rollup-linux-x64-musl": "4.57.1", "@rollup/rollup-openbsd-x64": "4.57.1", "@rollup/rollup-openharmony-arm64": "4.57.1", "@rollup/rollup-win32-arm64-msvc": "4.57.1", "@rollup/rollup-win32-ia32-msvc": "4.57.1", "@rollup/rollup-win32-x64-gnu": "4.57.1", "@rollup/rollup-win32-x64-msvc": "4.57.1", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A=="], + + "runed": ["runed@0.35.1", "", { "dependencies": { "dequal": "^2.0.3", "esm-env": "^1.0.0", "lz-string": "^1.5.0" }, "peerDependencies": { "@sveltejs/kit": "^2.21.0", "svelte": "^5.7.0" }, "optionalPeers": ["@sveltejs/kit"] }, "sha512-2F4Q/FZzbeJTFdIS/PuOoPRSm92sA2LhzTnv6FXhCoENb3huf5+fDuNOg1LNvGOouy3u/225qxmuJvcV3IZK5Q=="], + + "sade": ["sade@1.8.1", "", { "dependencies": { "mri": "^1.1.0" } }, "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A=="], + + "semver": ["semver@7.7.4", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA=="], + + "set-cookie-parser": ["set-cookie-parser@3.0.1", "", {}, "sha512-n7Z7dXZhJbwuAHhNzkTti6Aw9QDDjZtm3JTpTGATIdNzdQz5GuFs22w90BcvF4INfnrL5xrX3oGsuqO5Dx3A1Q=="], + + "shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="], + + "shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="], + + "siginfo": ["siginfo@2.0.0", "", {}, "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g=="], + + "sirv": ["sirv@3.0.2", "", { "dependencies": { "@polka/url": "^1.0.0-next.24", "mrmime": "^2.0.0", "totalist": "^3.0.0" } }, "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g=="], + + "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], + + "stackback": ["stackback@0.0.2", "", {}, "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw=="], + + "std-env": ["std-env@3.10.0", "", {}, "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg=="], + + "strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], + + "style-to-object": ["style-to-object@1.0.14", "", { "dependencies": { "inline-style-parser": "0.2.7" } }, "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw=="], + + "supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + + "svelte": ["svelte@5.50.2", "", { "dependencies": { "@jridgewell/remapping": "^2.3.4", "@jridgewell/sourcemap-codec": "^1.5.0", "@sveltejs/acorn-typescript": "^1.0.5", "@types/estree": "^1.0.5", "acorn": "^8.12.1", "aria-query": "^5.3.1", "axobject-query": "^4.1.0", "clsx": "^2.1.1", "devalue": "^5.6.2", "esm-env": "^1.2.1", "esrap": "^2.2.2", "is-reference": "^3.0.3", "locate-character": "^3.0.0", "magic-string": "^0.30.11", "zimmerframe": "^1.1.2" } }, "sha512-WCxzm3BBf+Ase6RwiDPR4G36cM4Kb0NuhmLK6x44I+D6reaxizDDg8kBkk4jT/19+Rgmc44eZkOvMO6daoSFIw=="], + + "svelte-check": ["svelte-check@4.3.6", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "chokidar": "^4.0.1", "fdir": "^6.2.0", "picocolors": "^1.0.0", "sade": "^1.7.4" }, "peerDependencies": { "svelte": "^4.0.0 || ^5.0.0-next.0", "typescript": ">=5.0.0" }, "bin": { "svelte-check": "bin/svelte-check" } }, "sha512-uBkz96ElE3G4pt9E1Tw0xvBfIUQkeH794kDQZdAUk795UVMr+NJZpuFSS62vcmO/DuSalK83LyOwhgWq8YGU1Q=="], + + "svelte-eslint-parser": ["svelte-eslint-parser@1.4.1", "", { "dependencies": { "eslint-scope": "^8.2.0", "eslint-visitor-keys": "^4.0.0", "espree": "^10.0.0", "postcss": "^8.4.49", "postcss-scss": "^4.0.9", "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0" }, "optionalPeers": ["svelte"] }, "sha512-1eqkfQ93goAhjAXxZiu1SaKI9+0/sxp4JIWQwUpsz7ybehRE5L8dNuz7Iry7K22R47p5/+s9EM+38nHV2OlgXA=="], + + "svelte-toolbelt": ["svelte-toolbelt@0.10.6", "", { "dependencies": { "clsx": "^2.1.1", "runed": "^0.35.1", "style-to-object": "^1.0.8" }, "peerDependencies": { "svelte": "^5.30.2" } }, "sha512-YWuX+RE+CnWYx09yseAe4ZVMM7e7GRFZM6OYWpBKOb++s+SQ8RBIMMe+Bs/CznBMc0QPLjr+vDBxTAkozXsFXQ=="], + + "tabbable": ["tabbable@6.4.0", "", {}, "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg=="], + + "tailwind-merge": ["tailwind-merge@3.4.0", "", {}, "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g=="], + + "tailwind-variants": ["tailwind-variants@3.2.2", "", { "peerDependencies": { "tailwind-merge": ">=3.0.0", "tailwindcss": "*" }, "optionalPeers": ["tailwind-merge"] }, "sha512-Mi4kHeMTLvKlM98XPnK+7HoBPmf4gygdFmqQPaDivc3DpYS6aIY6KiG/PgThrGvii5YZJqRsPz0aPyhoFzmZgg=="], + + "tailwindcss": ["tailwindcss@4.1.18", "", {}, "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw=="], + + "tapable": ["tapable@2.3.0", "", {}, "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg=="], + + "tinybench": ["tinybench@2.9.0", "", {}, "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg=="], + + "tinyexec": ["tinyexec@1.0.2", "", {}, "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg=="], + + "tinyglobby": ["tinyglobby@0.2.15", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="], + + "tinyrainbow": ["tinyrainbow@3.0.3", "", {}, "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q=="], + + "totalist": ["totalist@3.0.1", "", {}, "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ=="], + + "ts-api-utils": ["ts-api-utils@2.4.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA=="], + + "tslib": ["tslib@2.3.0", "", {}, "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="], + + "tw-animate-css": ["tw-animate-css@1.4.0", "", {}, "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ=="], + + "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + + "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], + + "typescript-eslint": ["typescript-eslint@8.55.0", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.55.0", "@typescript-eslint/parser": "8.55.0", "@typescript-eslint/typescript-estree": "8.55.0", "@typescript-eslint/utils": "8.55.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-HE4wj+r5lmDVS9gdaN0/+iqNvPZwGfnJ5lZuz7s5vLlg9ODw0bIiiETaios9LvFI1U94/VBXGm3CB2Y5cNFMpw=="], + + "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], + + "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="], + + "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], + + "vite": ["vite@7.3.1", "", { "dependencies": { "esbuild": "^0.27.0", "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", "rollup": "^4.43.0", "tinyglobby": "^0.2.15" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "jiti": ">=1.21.0", "less": "^4.0.0", "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA=="], + + "vitefu": ["vitefu@1.1.1", "", { "peerDependencies": { "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" }, "optionalPeers": ["vite"] }, "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ=="], + + "vitest": ["vitest@4.0.18", "", { "dependencies": { "@vitest/expect": "4.0.18", "@vitest/mocker": "4.0.18", "@vitest/pretty-format": "4.0.18", "@vitest/runner": "4.0.18", "@vitest/snapshot": "4.0.18", "@vitest/spy": "4.0.18", "@vitest/utils": "4.0.18", "es-module-lexer": "^1.7.0", "expect-type": "^1.2.2", "magic-string": "^0.30.21", "obug": "^2.1.1", "pathe": "^2.0.3", "picomatch": "^4.0.3", "std-env": "^3.10.0", "tinybench": "^2.9.0", "tinyexec": "^1.0.2", "tinyglobby": "^0.2.15", "tinyrainbow": "^3.0.3", "vite": "^6.0.0 || ^7.0.0", "why-is-node-running": "^2.3.0" }, "peerDependencies": { "@edge-runtime/vm": "*", "@opentelemetry/api": "^1.9.0", "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0", "@vitest/browser-playwright": "4.0.18", "@vitest/browser-preview": "4.0.18", "@vitest/browser-webdriverio": "4.0.18", "@vitest/ui": "4.0.18", "happy-dom": "*", "jsdom": "*" }, "optionalPeers": ["@edge-runtime/vm", "@opentelemetry/api", "@types/node", "@vitest/browser-playwright", "@vitest/browser-preview", "@vitest/browser-webdriverio", "@vitest/ui", "happy-dom", "jsdom"], "bin": { "vitest": "vitest.mjs" } }, "sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ=="], + + "vitest-browser-svelte": ["vitest-browser-svelte@2.0.2", "", { "dependencies": { "@testing-library/svelte-core": "^1.0.0" }, "peerDependencies": { "svelte": "^3 || ^4 || ^5 || ^5.0.0-next.0", "vitest": "^4.0.0" } }, "sha512-OLJVYoIYflwToFIy3s41pZ9mVp6dwXfYd8IIsWoc57g8DyN3SxsNJ5GB1xWFPxLFlKM+1MPExjPxLaqdELrfRQ=="], + + "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], + + "why-is-node-running": ["why-is-node-running@2.3.0", "", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" }, "bin": { "why-is-node-running": "cli.js" } }, "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w=="], + + "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], + + "ws": ["ws@8.19.0", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg=="], + + "yaml": ["yaml@1.10.2", "", {}, "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="], + + "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], + + "zimmerframe": ["zimmerframe@1.1.4", "", {}, "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ=="], + + "zrender": ["zrender@6.0.0", "", { "dependencies": { "tslib": "2.3.0" } }, "sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg=="], + + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], + + "@eslint/config-helpers/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="], + + "@eslint/eslintrc/globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="], + + "@eslint/plugin-kit/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="], + + "@swc/helpers/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "@tailwindcss/oxide-wasm32-wasi/@emnapi/core": ["@emnapi/core@1.8.1", "", { "dependencies": { "@emnapi/wasi-threads": "1.1.0", "tslib": "^2.4.0" }, "bundled": true }, "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg=="], + + "@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.8.1", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg=="], + + "@tailwindcss/oxide-wasm32-wasi/@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.1.0", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ=="], + + "@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.1.1", "", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@tybys/wasm-util": "^0.10.1" }, "bundled": true }, "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A=="], + + "@tailwindcss/oxide-wasm32-wasi/@tybys/wasm-util": ["@tybys/wasm-util@0.10.1", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg=="], + + "@tailwindcss/oxide-wasm32-wasi/tslib": ["tslib@2.8.1", "", { "bundled": true }, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + + "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "eslint/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="], + + "eslint-plugin-svelte/globals": ["globals@16.5.0", "", {}, "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ=="], + + "rollup/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + + "svelte-eslint-parser/postcss-selector-parser": ["postcss-selector-parser@7.1.1", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg=="], + + "vite/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + + "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + } +} diff --git a/web/components.json b/web/components.json new file mode 100644 index 0000000..c8f04c6 --- /dev/null +++ b/web/components.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://shadcn-svelte.com/schema.json", + "tailwind": { + "css": "src/routes/layout.css", + "baseColor": "slate" + }, + "aliases": { + "components": "$lib/components", + "utils": "$lib/utils", + "ui": "$lib/components/ui", + "hooks": "$lib/hooks", + "lib": "$lib" + }, + "typescript": true, + "registry": "https://shadcn-svelte.com/registry" +} diff --git a/web/eslint.config.js b/web/eslint.config.js new file mode 100644 index 0000000..9690379 --- /dev/null +++ b/web/eslint.config.js @@ -0,0 +1,39 @@ +import prettier from 'eslint-config-prettier'; +import path from 'node:path'; +import { includeIgnoreFile } from '@eslint/compat'; +import js from '@eslint/js'; +import svelte from 'eslint-plugin-svelte'; +import { defineConfig } from 'eslint/config'; +import globals from 'globals'; +import ts from 'typescript-eslint'; +import svelteConfig from './svelte.config.js'; + +const gitignorePath = path.resolve(import.meta.dirname, '.gitignore'); + +export default defineConfig( + includeIgnoreFile(gitignorePath), + js.configs.recommended, + ...ts.configs.recommended, + ...svelte.configs.recommended, + prettier, + ...svelte.configs.prettier, + { + languageOptions: { globals: { ...globals.browser, ...globals.node } }, + rules: { + // typescript-eslint strongly recommend that you do not use the no-undef lint rule on TypeScript projects. + // see: https://typescript-eslint.io/troubleshooting/faqs/eslint/#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors + 'no-undef': 'off' + } + }, + { + files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'], + languageOptions: { + parserOptions: { + projectService: true, + extraFileExtensions: ['.svelte'], + parser: ts.parser, + svelteConfig + } + } + } +); diff --git a/web/package.json b/web/package.json new file mode 100644 index 0000000..4238f11 --- /dev/null +++ b/web/package.json @@ -0,0 +1,57 @@ +{ + "name": "web", + "private": true, + "version": "0.0.1", + "type": "module", + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "prepare": "svelte-kit sync || echo ''", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "prettier --check . && eslint .", + "format": "prettier --write .", + "test:unit": "vitest", + "test": "npm run test:unit -- --run" + }, + "devDependencies": { + "@eslint/compat": "^2.0.2", + "@eslint/js": "^9.39.2", + "@internationalized/date": "^3.10.0", + "@lucide/svelte": "^0.561.0", + "@sveltejs/adapter-auto": "^7.0.0", + "@sveltejs/kit": "^2.50.2", + "@sveltejs/vite-plugin-svelte": "^6.2.4", + "@tailwindcss/typography": "^0.5.19", + "@tailwindcss/vite": "^4.1.18", + "@types/node": "^22", + "@vitest/browser-playwright": "^4.0.18", + "bits-ui": "^2.14.4", + "clsx": "^2.1.1", + "eslint": "^9.39.2", + "eslint-config-prettier": "^10.1.8", + "eslint-plugin-svelte": "^3.14.0", + "globals": "^17.3.0", + "playwright": "^1.58.1", + "prettier": "^3.8.1", + "prettier-plugin-svelte": "^3.4.1", + "prettier-plugin-tailwindcss": "^0.7.2", + "svelte": "^5.49.2", + "svelte-check": "^4.3.6", + "tailwind-merge": "^3.4.0", + "tailwind-variants": "^3.2.2", + "tailwindcss": "^4.1.18", + "tw-animate-css": "^1.4.0", + "typescript": "^5.9.3", + "typescript-eslint": "^8.54.0", + "vite": "^7.3.1", + "vitest": "^4.0.18", + "vitest-browser-svelte": "^2.0.2" + }, + "dependencies": { + "@sveltejs/adapter-static": "^3.0.10", + "echarts": "^6.0.0", + "lucide-svelte": "^0.563.0" + } +} diff --git a/web/src/app.d.ts b/web/src/app.d.ts new file mode 100644 index 0000000..da08e6d --- /dev/null +++ b/web/src/app.d.ts @@ -0,0 +1,13 @@ +// See https://svelte.dev/docs/kit/types#app.d.ts +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface PageState {} + // interface Platform {} + } +} + +export {}; diff --git a/web/src/app.html b/web/src/app.html new file mode 100644 index 0000000..4fb70f7 --- /dev/null +++ b/web/src/app.html @@ -0,0 +1,14 @@ + + + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/web/src/demo.spec.ts b/web/src/demo.spec.ts new file mode 100644 index 0000000..e07cbbd --- /dev/null +++ b/web/src/demo.spec.ts @@ -0,0 +1,7 @@ +import { describe, it, expect } from 'vitest'; + +describe('sum test', () => { + it('adds 1 + 2 to equal 3', () => { + expect(1 + 2).toBe(3); + }); +}); diff --git a/web/src/lib/api/monigo.ts b/web/src/lib/api/monigo.ts new file mode 100644 index 0000000..cd71b8e --- /dev/null +++ b/web/src/lib/api/monigo.ts @@ -0,0 +1,85 @@ +const API_BASE = '/monigo/api/v1'; + +function getAuthHeaders(): Record { + if (typeof window === 'undefined') return {}; + const urlParams = new URLSearchParams(window.location.search); + const apiKey = urlParams.get('api_key'); + const secret = urlParams.get('secret'); + const headers: Record = { 'User-Agent': 'MoniGo-Admin/1.0' }; + if (apiKey) return headers; + if (secret === 'monigo-admin-secret') return headers; + headers['X-User-Role'] = 'admin'; + return headers; +} + +function getUrl(path: string): string { + const urlParams = new URLSearchParams(window.location.search); + const apiKey = urlParams.get('api_key'); + const secret = urlParams.get('secret'); + const base = `${API_BASE}${path}`; + if (apiKey) return `${base}${base.includes('?') ? '&' : '?'}api_key=${encodeURIComponent(apiKey)}`; + if (secret === 'monigo-admin-secret') return `${base}${base.includes('?') ? '&' : '?'}secret=${encodeURIComponent(secret)}`; + return base; +} + +export async function fetchServiceInfo() { + const res = await fetch(getUrl('/service-info'), { headers: getAuthHeaders() }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} + +export async function fetchMetrics() { + const res = await fetch(getUrl('/metrics'), { headers: getAuthHeaders() }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} + +export async function fetchServiceMetrics(data: { + field_name: string[]; + timerange: string; + start_time: string; + end_time: string; +}) { + const res = await fetch(getUrl('/service-metrics'), { + method: 'POST', + headers: { 'Content-Type': 'application/json', ...getAuthHeaders() }, + body: JSON.stringify(data) + }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} + +export async function fetchGoRoutinesStats() { + const res = await fetch(getUrl('/go-routines-stats'), { headers: getAuthHeaders() }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} + +export async function fetchReports(data: { + topic: string; + start_time: string; + end_time: string; + time_frame: string; +}) { + const res = await fetch(getUrl('/reports'), { + method: 'POST', + headers: { 'Content-Type': 'application/json', ...getAuthHeaders() }, + body: JSON.stringify(data) + }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} + +export async function fetchFunctionTrace() { + const res = await fetch(getUrl('/function'), { headers: getAuthHeaders() }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} + +export async function fetchFunctionDetails(name: string, reportType = 'text') { + const res = await fetch(getUrl(`/function-details?name=${encodeURIComponent(name)}&reportType=${reportType}`), { + headers: getAuthHeaders() + }); + if (!res.ok) throw new Error(`Fetch failed: ${res.status}`); + return res.json(); +} diff --git a/web/src/lib/assets/favicon.svg b/web/src/lib/assets/favicon.svg new file mode 100644 index 0000000..cc5dc66 --- /dev/null +++ b/web/src/lib/assets/favicon.svg @@ -0,0 +1 @@ +svelte-logo \ No newline at end of file diff --git a/static/assets/monigo-icon.png b/web/src/lib/assets/monigo-icon.png similarity index 100% rename from static/assets/monigo-icon.png rename to web/src/lib/assets/monigo-icon.png diff --git a/web/src/lib/chart-theme.ts b/web/src/lib/chart-theme.ts new file mode 100644 index 0000000..831ce5b --- /dev/null +++ b/web/src/lib/chart-theme.ts @@ -0,0 +1,187 @@ +import * as echarts from 'echarts'; + +export function isLightMode(): boolean { + if (typeof document === 'undefined') return false; + return document.documentElement.classList.contains('light'); +} + +export function getTheme() { + const light = isLightMode(); + return { + bg: light ? '#ffffff' : '#0d1012', + text: light ? '#5a6a72' : '#7a9ba8', + textDim: light ? '#8a9aa2' : '#4a5a62', + textBright: light ? '#1a2a32' : '#c8dce4', + line: light ? 'rgba(0,0,0,0.08)' : 'rgba(122, 155, 168, 0.15)', + gridLine: light ? 'rgba(0,0,0,0.05)' : 'rgba(122, 155, 168, 0.08)', + cyan: light ? '#2a7aa8' : '#5a9ab8', + purple: light ? '#6a4aa0' : '#8a6ab8', + success: light ? '#2d7a4a' : '#4a9868', + warning: light ? '#9a7a28' : '#b89848', + error: light ? '#c03030' : '#b84848', + blue: light ? '#3a5a98' : '#5a7ab8', + tooltipBg: light ? '#ffffff' : '#0d1012', + tooltipBorder: light ? 'rgba(0,0,0,0.1)' : 'rgba(122, 155, 168, 0.15)', + }; +} + +export function chartColors() { + const t = getTheme(); + return [t.cyan, t.purple, t.success, t.warning, t.blue]; +} + +export function baseChartOption() { + const t = getTheme(); + return { + backgroundColor: 'transparent', + textStyle: { + fontFamily: "'JetBrains Mono', monospace", + color: t.text, + fontSize: 10, + }, + animationDuration: 800, + animationEasing: 'cubicOut' as const, + }; +} + +export function titleStyle(text: string) { + const t = getTheme(); + return { + text, + textStyle: { + color: t.textDim, + fontSize: 8, + fontWeight: 400 as const, + fontFamily: "'JetBrains Mono', monospace", + letterSpacing: 2, + }, + top: 0, + left: 0, + }; +} + +export function tooltipStyle() { + const t = getTheme(); + const light = isLightMode(); + return { + backgroundColor: t.tooltipBg, + borderColor: t.tooltipBorder, + borderWidth: 0.5, + textStyle: { + color: t.text, + fontSize: 10, + fontFamily: "'JetBrains Mono', monospace", + }, + extraCssText: light + ? 'border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.08);' + : 'border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.3);', + }; +} + +export function axisStyle() { + const t = getTheme(); + return { + xAxis: { + axisLabel: { color: t.textDim, fontSize: 8 }, + axisLine: { lineStyle: { color: t.line } }, + axisTick: { show: false }, + }, + yAxis: { + axisLabel: { color: t.textDim, fontSize: 8 }, + splitLine: { lineStyle: { color: t.gridLine, type: 'dashed' as const } }, + axisLine: { show: false }, + }, + }; +} + +export function legendStyle() { + const t = getTheme(); + return { + textStyle: { + color: t.textDim, + fontSize: 8, + fontFamily: "'JetBrains Mono', monospace", + }, + }; +} + +export function barSeries(data: number[], colorFn?: (val: number) => string) { + const t = getTheme(); + const defaultColor = t.cyan; + return { + type: 'bar' as const, + data, + barWidth: '45%', + itemStyle: { + borderRadius: [4, 4, 0, 0], + color: colorFn + ? (p: { value: number }) => { + const c = colorFn(p.value); + return new echarts.graphic.LinearGradient(0, 0, 0, 1, [ + { offset: 0, color: c }, + { offset: 1, color: c + '60' }, + ]); + } + : new echarts.graphic.LinearGradient(0, 0, 0, 1, [ + { offset: 0, color: defaultColor }, + { offset: 1, color: defaultColor + '60' }, + ]), + }, + emphasis: { + itemStyle: { + opacity: 0.85, + }, + }, + }; +} + +export function lineSeries(name: string, data: unknown[], color: string, showArea = true) { + const light = isLightMode(); + return { + name, + type: 'line' as const, + data, + smooth: true, + lineStyle: { + width: 2, + color, + }, + itemStyle: { color }, + showSymbol: false, + ...(showArea + ? { + areaStyle: { + color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ + { offset: 0, color: color + (light ? '18' : '25') }, + { offset: 1, color: color + '00' }, + ]), + }, + } + : {}), + }; +} + +export function pieSeries(data: { value: number; name: string; color: string }[]) { + return { + type: 'pie' as const, + radius: ['38%', '58%'], + center: ['50%', '48%'], + label: { show: false }, + padAngle: 2, + itemStyle: { + borderRadius: 6, + }, + emphasis: { + itemStyle: { + opacity: 0.85, + }, + }, + data: data.map((d) => ({ + value: d.value, + name: d.name, + itemStyle: { + color: d.color, + }, + })), + }; +} diff --git a/web/src/lib/components/app-sidebar.svelte b/web/src/lib/components/app-sidebar.svelte new file mode 100644 index 0000000..9fd1cee --- /dev/null +++ b/web/src/lib/components/app-sidebar.svelte @@ -0,0 +1,74 @@ + + + + + + + + MoniGo + + + {#each items as item (item.title)} + + + {#snippet child({ props })} + + + {item.title} + + {/snippet} + + + {/each} + + + + + + +

+ Found a bug or have a feature request? Please report it on + GitHub. If you find this project useful, we would appreciate + a star on GitHub. +

+ +
+
+
+
diff --git a/web/src/lib/components/ui/button/button.svelte b/web/src/lib/components/ui/button/button.svelte new file mode 100644 index 0000000..a8296ae --- /dev/null +++ b/web/src/lib/components/ui/button/button.svelte @@ -0,0 +1,82 @@ + + + + +{#if href} + + {@render children?.()} + +{:else} + +{/if} diff --git a/web/src/lib/components/ui/button/index.ts b/web/src/lib/components/ui/button/index.ts new file mode 100644 index 0000000..fb585d7 --- /dev/null +++ b/web/src/lib/components/ui/button/index.ts @@ -0,0 +1,17 @@ +import Root, { + type ButtonProps, + type ButtonSize, + type ButtonVariant, + buttonVariants, +} from "./button.svelte"; + +export { + Root, + type ButtonProps as Props, + // + Root as Button, + buttonVariants, + type ButtonProps, + type ButtonSize, + type ButtonVariant, +}; diff --git a/web/src/lib/components/ui/card/card-action.svelte b/web/src/lib/components/ui/card/card-action.svelte new file mode 100644 index 0000000..cc36c56 --- /dev/null +++ b/web/src/lib/components/ui/card/card-action.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/card/card-content.svelte b/web/src/lib/components/ui/card/card-content.svelte new file mode 100644 index 0000000..bc90b83 --- /dev/null +++ b/web/src/lib/components/ui/card/card-content.svelte @@ -0,0 +1,15 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/card/card-description.svelte b/web/src/lib/components/ui/card/card-description.svelte new file mode 100644 index 0000000..9b20ac7 --- /dev/null +++ b/web/src/lib/components/ui/card/card-description.svelte @@ -0,0 +1,20 @@ + + +

+ {@render children?.()} +

diff --git a/web/src/lib/components/ui/card/card-footer.svelte b/web/src/lib/components/ui/card/card-footer.svelte new file mode 100644 index 0000000..2d4d0f2 --- /dev/null +++ b/web/src/lib/components/ui/card/card-footer.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/card/card-header.svelte b/web/src/lib/components/ui/card/card-header.svelte new file mode 100644 index 0000000..2501788 --- /dev/null +++ b/web/src/lib/components/ui/card/card-header.svelte @@ -0,0 +1,23 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/card/card-title.svelte b/web/src/lib/components/ui/card/card-title.svelte new file mode 100644 index 0000000..7447231 --- /dev/null +++ b/web/src/lib/components/ui/card/card-title.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/card/card.svelte b/web/src/lib/components/ui/card/card.svelte new file mode 100644 index 0000000..99448cc --- /dev/null +++ b/web/src/lib/components/ui/card/card.svelte @@ -0,0 +1,23 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/card/index.ts b/web/src/lib/components/ui/card/index.ts new file mode 100644 index 0000000..4d3fce4 --- /dev/null +++ b/web/src/lib/components/ui/card/index.ts @@ -0,0 +1,25 @@ +import Root from "./card.svelte"; +import Content from "./card-content.svelte"; +import Description from "./card-description.svelte"; +import Footer from "./card-footer.svelte"; +import Header from "./card-header.svelte"; +import Title from "./card-title.svelte"; +import Action from "./card-action.svelte"; + +export { + Root, + Content, + Description, + Footer, + Header, + Title, + Action, + // + Root as Card, + Content as CardContent, + Description as CardDescription, + Footer as CardFooter, + Header as CardHeader, + Title as CardTitle, + Action as CardAction, +}; diff --git a/web/src/lib/components/ui/input/index.ts b/web/src/lib/components/ui/input/index.ts new file mode 100644 index 0000000..f47b6d3 --- /dev/null +++ b/web/src/lib/components/ui/input/index.ts @@ -0,0 +1,7 @@ +import Root from "./input.svelte"; + +export { + Root, + // + Root as Input, +}; diff --git a/web/src/lib/components/ui/input/input.svelte b/web/src/lib/components/ui/input/input.svelte new file mode 100644 index 0000000..ff1a4c8 --- /dev/null +++ b/web/src/lib/components/ui/input/input.svelte @@ -0,0 +1,52 @@ + + +{#if type === "file"} + +{:else} + +{/if} diff --git a/web/src/lib/components/ui/separator/index.ts b/web/src/lib/components/ui/separator/index.ts new file mode 100644 index 0000000..82442d2 --- /dev/null +++ b/web/src/lib/components/ui/separator/index.ts @@ -0,0 +1,7 @@ +import Root from "./separator.svelte"; + +export { + Root, + // + Root as Separator, +}; diff --git a/web/src/lib/components/ui/separator/separator.svelte b/web/src/lib/components/ui/separator/separator.svelte new file mode 100644 index 0000000..f40999f --- /dev/null +++ b/web/src/lib/components/ui/separator/separator.svelte @@ -0,0 +1,21 @@ + + + diff --git a/web/src/lib/components/ui/sheet/index.ts b/web/src/lib/components/ui/sheet/index.ts new file mode 100644 index 0000000..28d7da1 --- /dev/null +++ b/web/src/lib/components/ui/sheet/index.ts @@ -0,0 +1,34 @@ +import Root from "./sheet.svelte"; +import Portal from "./sheet-portal.svelte"; +import Trigger from "./sheet-trigger.svelte"; +import Close from "./sheet-close.svelte"; +import Overlay from "./sheet-overlay.svelte"; +import Content from "./sheet-content.svelte"; +import Header from "./sheet-header.svelte"; +import Footer from "./sheet-footer.svelte"; +import Title from "./sheet-title.svelte"; +import Description from "./sheet-description.svelte"; + +export { + Root, + Close, + Trigger, + Portal, + Overlay, + Content, + Header, + Footer, + Title, + Description, + // + Root as Sheet, + Close as SheetClose, + Trigger as SheetTrigger, + Portal as SheetPortal, + Overlay as SheetOverlay, + Content as SheetContent, + Header as SheetHeader, + Footer as SheetFooter, + Title as SheetTitle, + Description as SheetDescription, +}; diff --git a/web/src/lib/components/ui/sheet/sheet-close.svelte b/web/src/lib/components/ui/sheet/sheet-close.svelte new file mode 100644 index 0000000..ae382c1 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-close.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/sheet/sheet-content.svelte b/web/src/lib/components/ui/sheet/sheet-content.svelte new file mode 100644 index 0000000..065fe04 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-content.svelte @@ -0,0 +1,60 @@ + + + + + + + + {@render children?.()} + + + Close + + + diff --git a/web/src/lib/components/ui/sheet/sheet-description.svelte b/web/src/lib/components/ui/sheet/sheet-description.svelte new file mode 100644 index 0000000..333b17a --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-description.svelte @@ -0,0 +1,17 @@ + + + diff --git a/web/src/lib/components/ui/sheet/sheet-footer.svelte b/web/src/lib/components/ui/sheet/sheet-footer.svelte new file mode 100644 index 0000000..dd9ed84 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-footer.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sheet/sheet-header.svelte b/web/src/lib/components/ui/sheet/sheet-header.svelte new file mode 100644 index 0000000..757a6a5 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-header.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sheet/sheet-overlay.svelte b/web/src/lib/components/ui/sheet/sheet-overlay.svelte new file mode 100644 index 0000000..345e197 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-overlay.svelte @@ -0,0 +1,20 @@ + + + diff --git a/web/src/lib/components/ui/sheet/sheet-portal.svelte b/web/src/lib/components/ui/sheet/sheet-portal.svelte new file mode 100644 index 0000000..f3085a3 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/sheet/sheet-title.svelte b/web/src/lib/components/ui/sheet/sheet-title.svelte new file mode 100644 index 0000000..9fda327 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-title.svelte @@ -0,0 +1,17 @@ + + + diff --git a/web/src/lib/components/ui/sheet/sheet-trigger.svelte b/web/src/lib/components/ui/sheet/sheet-trigger.svelte new file mode 100644 index 0000000..e266975 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet-trigger.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/sheet/sheet.svelte b/web/src/lib/components/ui/sheet/sheet.svelte new file mode 100644 index 0000000..5bf9783 --- /dev/null +++ b/web/src/lib/components/ui/sheet/sheet.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/sidebar/constants.ts b/web/src/lib/components/ui/sidebar/constants.ts new file mode 100644 index 0000000..4de4435 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/constants.ts @@ -0,0 +1,6 @@ +export const SIDEBAR_COOKIE_NAME = "sidebar:state"; +export const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7; +export const SIDEBAR_WIDTH = "16rem"; +export const SIDEBAR_WIDTH_MOBILE = "18rem"; +export const SIDEBAR_WIDTH_ICON = "3rem"; +export const SIDEBAR_KEYBOARD_SHORTCUT = "b"; diff --git a/web/src/lib/components/ui/sidebar/context.svelte.ts b/web/src/lib/components/ui/sidebar/context.svelte.ts new file mode 100644 index 0000000..040eb1c --- /dev/null +++ b/web/src/lib/components/ui/sidebar/context.svelte.ts @@ -0,0 +1,84 @@ +import { browser } from "$app/environment"; +import { IsMobile } from "$lib/hooks/is-mobile.svelte.js"; +import { getContext, setContext } from "svelte"; +import { SIDEBAR_KEYBOARD_SHORTCUT } from "./constants.js"; + +type Getter = () => T; + +export type SidebarStateProps = { + /** + * A getter function that returns the current open state of the sidebar. + * We use a getter function here to support `bind:open` on the `Sidebar.Provider` + * component. + */ + open: Getter; + + /** + * A function that sets the open state of the sidebar. To support `bind:open`, we need + * a source of truth for changing the open state to ensure it will be synced throughout + * the sub-components and any `bind:` references. + */ + setOpen: (open: boolean) => void; +}; + +class SidebarState { + readonly props: SidebarStateProps; + open = $derived.by(() => this.props.open()); + openMobile = $state(false); + setOpen: SidebarStateProps["setOpen"]; + #isMobile: IsMobile; + state = $derived.by(() => (this.open ? "expanded" : "collapsed")); + + constructor(props: SidebarStateProps) { + this.setOpen = props.setOpen; + this.#isMobile = new IsMobile(); + this.props = props; + } + + // Convenience getter for checking if the sidebar is mobile + // without this, we would need to use `sidebar.isMobile.current` everywhere + get isMobile() { + if (!browser) return false; + return this.#isMobile.current; + } + + // Event handler to apply to the `` + handleShortcutKeydown = (e: KeyboardEvent) => { + if (e.key === SIDEBAR_KEYBOARD_SHORTCUT && (e.metaKey || e.ctrlKey)) { + e.preventDefault(); + this.toggle(); + } + }; + + setOpenMobile = (value: boolean) => { + this.openMobile = value; + }; + + toggle = () => { + if (!browser) return; + return this.#isMobile.current + ? (this.openMobile = !this.openMobile) + : this.setOpen(!this.open); + }; +} + +const SYMBOL_KEY = "scn-sidebar"; + +/** + * Instantiates a new `SidebarState` instance and sets it in the context. + * + * @param props The constructor props for the `SidebarState` class. + * @returns The `SidebarState` instance. + */ +export function setSidebar(props: SidebarStateProps): SidebarState { + return setContext(Symbol.for(SYMBOL_KEY), new SidebarState(props)); +} + +/** + * Retrieves the `SidebarState` instance from the context. This is a class instance, + * so you cannot destructure it. + * @returns The `SidebarState` instance. + */ +export function useSidebar(): SidebarState { + return getContext(Symbol.for(SYMBOL_KEY)); +} diff --git a/web/src/lib/components/ui/sidebar/index.ts b/web/src/lib/components/ui/sidebar/index.ts new file mode 100644 index 0000000..318a341 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/index.ts @@ -0,0 +1,75 @@ +import { useSidebar } from "./context.svelte.js"; +import Content from "./sidebar-content.svelte"; +import Footer from "./sidebar-footer.svelte"; +import GroupAction from "./sidebar-group-action.svelte"; +import GroupContent from "./sidebar-group-content.svelte"; +import GroupLabel from "./sidebar-group-label.svelte"; +import Group from "./sidebar-group.svelte"; +import Header from "./sidebar-header.svelte"; +import Input from "./sidebar-input.svelte"; +import Inset from "./sidebar-inset.svelte"; +import MenuAction from "./sidebar-menu-action.svelte"; +import MenuBadge from "./sidebar-menu-badge.svelte"; +import MenuButton from "./sidebar-menu-button.svelte"; +import MenuItem from "./sidebar-menu-item.svelte"; +import MenuSkeleton from "./sidebar-menu-skeleton.svelte"; +import MenuSubButton from "./sidebar-menu-sub-button.svelte"; +import MenuSubItem from "./sidebar-menu-sub-item.svelte"; +import MenuSub from "./sidebar-menu-sub.svelte"; +import Menu from "./sidebar-menu.svelte"; +import Provider from "./sidebar-provider.svelte"; +import Rail from "./sidebar-rail.svelte"; +import Separator from "./sidebar-separator.svelte"; +import Trigger from "./sidebar-trigger.svelte"; +import Root from "./sidebar.svelte"; + +export { + Content, + Footer, + Group, + GroupAction, + GroupContent, + GroupLabel, + Header, + Input, + Inset, + Menu, + MenuAction, + MenuBadge, + MenuButton, + MenuItem, + MenuSkeleton, + MenuSub, + MenuSubButton, + MenuSubItem, + Provider, + Rail, + Root, + Separator, + // + Root as Sidebar, + Content as SidebarContent, + Footer as SidebarFooter, + Group as SidebarGroup, + GroupAction as SidebarGroupAction, + GroupContent as SidebarGroupContent, + GroupLabel as SidebarGroupLabel, + Header as SidebarHeader, + Input as SidebarInput, + Inset as SidebarInset, + Menu as SidebarMenu, + MenuAction as SidebarMenuAction, + MenuBadge as SidebarMenuBadge, + MenuButton as SidebarMenuButton, + MenuItem as SidebarMenuItem, + MenuSkeleton as SidebarMenuSkeleton, + MenuSub as SidebarMenuSub, + MenuSubButton as SidebarMenuSubButton, + MenuSubItem as SidebarMenuSubItem, + Provider as SidebarProvider, + Rail as SidebarRail, + Separator as SidebarSeparator, + Trigger as SidebarTrigger, + Trigger, + useSidebar, +}; diff --git a/web/src/lib/components/ui/sidebar/sidebar-content.svelte b/web/src/lib/components/ui/sidebar/sidebar-content.svelte new file mode 100644 index 0000000..f121800 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-content.svelte @@ -0,0 +1,24 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-footer.svelte b/web/src/lib/components/ui/sidebar/sidebar-footer.svelte new file mode 100644 index 0000000..6259cb9 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-footer.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-group-action.svelte b/web/src/lib/components/ui/sidebar/sidebar-group-action.svelte new file mode 100644 index 0000000..a76dfe1 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-group-action.svelte @@ -0,0 +1,36 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} + +{/if} diff --git a/web/src/lib/components/ui/sidebar/sidebar-group-content.svelte b/web/src/lib/components/ui/sidebar/sidebar-group-content.svelte new file mode 100644 index 0000000..415255f --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-group-content.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-group-label.svelte b/web/src/lib/components/ui/sidebar/sidebar-group-label.svelte new file mode 100644 index 0000000..b2e72b6 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-group-label.svelte @@ -0,0 +1,34 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} +
+ {@render children?.()} +
+{/if} diff --git a/web/src/lib/components/ui/sidebar/sidebar-group.svelte b/web/src/lib/components/ui/sidebar/sidebar-group.svelte new file mode 100644 index 0000000..ec18a69 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-group.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-header.svelte b/web/src/lib/components/ui/sidebar/sidebar-header.svelte new file mode 100644 index 0000000..a1b2db1 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-header.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-input.svelte b/web/src/lib/components/ui/sidebar/sidebar-input.svelte new file mode 100644 index 0000000..19b3666 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-input.svelte @@ -0,0 +1,21 @@ + + + diff --git a/web/src/lib/components/ui/sidebar/sidebar-inset.svelte b/web/src/lib/components/ui/sidebar/sidebar-inset.svelte new file mode 100644 index 0000000..7d6d459 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-inset.svelte @@ -0,0 +1,24 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-action.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-action.svelte new file mode 100644 index 0000000..d3fe295 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-action.svelte @@ -0,0 +1,43 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} + +{/if} diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-badge.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-badge.svelte new file mode 100644 index 0000000..e8ecdb4 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-badge.svelte @@ -0,0 +1,29 @@ + + +
+ {@render children?.()} +
diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-button.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-button.svelte new file mode 100644 index 0000000..0acd1ec --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-button.svelte @@ -0,0 +1,103 @@ + + + + +{#snippet Button({ props }: { props?: Record })} + {@const mergedProps = mergeProps(buttonProps, props)} + {#if child} + {@render child({ props: mergedProps })} + {:else} + + {/if} +{/snippet} + +{#if !tooltipContent} + {@render Button({})} +{:else} + + + {#snippet child({ props })} + {@render Button({ props })} + {/snippet} + + + +{/if} diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-item.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-item.svelte new file mode 100644 index 0000000..4db4453 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-item.svelte @@ -0,0 +1,21 @@ + + +
  • + {@render children?.()} +
  • diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte new file mode 100644 index 0000000..68604e2 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte @@ -0,0 +1,36 @@ + + +
    + {#if showIcon} + + {/if} + + {@render children?.()} +
    diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte new file mode 100644 index 0000000..c8cd4ff --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte @@ -0,0 +1,43 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} + + {@render children?.()} + +{/if} diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte new file mode 100644 index 0000000..681d0f1 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte @@ -0,0 +1,21 @@ + + +
  • + {@render children?.()} +
  • diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu-sub.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu-sub.svelte new file mode 100644 index 0000000..76bd1d9 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu-sub.svelte @@ -0,0 +1,25 @@ + + +
      + {@render children?.()} +
    diff --git a/web/src/lib/components/ui/sidebar/sidebar-menu.svelte b/web/src/lib/components/ui/sidebar/sidebar-menu.svelte new file mode 100644 index 0000000..946ccce --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-menu.svelte @@ -0,0 +1,21 @@ + + +
      + {@render children?.()} +
    diff --git a/web/src/lib/components/ui/sidebar/sidebar-provider.svelte b/web/src/lib/components/ui/sidebar/sidebar-provider.svelte new file mode 100644 index 0000000..5b0d0aa --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-provider.svelte @@ -0,0 +1,53 @@ + + + + + +
    + {@render children?.()} +
    +
    diff --git a/web/src/lib/components/ui/sidebar/sidebar-rail.svelte b/web/src/lib/components/ui/sidebar/sidebar-rail.svelte new file mode 100644 index 0000000..704d54f --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-rail.svelte @@ -0,0 +1,36 @@ + + + diff --git a/web/src/lib/components/ui/sidebar/sidebar-separator.svelte b/web/src/lib/components/ui/sidebar/sidebar-separator.svelte new file mode 100644 index 0000000..5a7deda --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-separator.svelte @@ -0,0 +1,19 @@ + + + diff --git a/web/src/lib/components/ui/sidebar/sidebar-trigger.svelte b/web/src/lib/components/ui/sidebar/sidebar-trigger.svelte new file mode 100644 index 0000000..1825182 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar-trigger.svelte @@ -0,0 +1,35 @@ + + + diff --git a/web/src/lib/components/ui/sidebar/sidebar.svelte b/web/src/lib/components/ui/sidebar/sidebar.svelte new file mode 100644 index 0000000..bac55d8 --- /dev/null +++ b/web/src/lib/components/ui/sidebar/sidebar.svelte @@ -0,0 +1,104 @@ + + +{#if collapsible === "none"} +
    + {@render children?.()} +
    +{:else if sidebar.isMobile} + sidebar.openMobile, (v) => sidebar.setOpenMobile(v)} + {...restProps} + > + + + Sidebar + Displays the mobile sidebar. + +
    + {@render children?.()} +
    +
    +
    +{:else} + +{/if} diff --git a/web/src/lib/components/ui/skeleton/index.ts b/web/src/lib/components/ui/skeleton/index.ts new file mode 100644 index 0000000..186db21 --- /dev/null +++ b/web/src/lib/components/ui/skeleton/index.ts @@ -0,0 +1,7 @@ +import Root from "./skeleton.svelte"; + +export { + Root, + // + Root as Skeleton, +}; diff --git a/web/src/lib/components/ui/skeleton/skeleton.svelte b/web/src/lib/components/ui/skeleton/skeleton.svelte new file mode 100644 index 0000000..c7e3d26 --- /dev/null +++ b/web/src/lib/components/ui/skeleton/skeleton.svelte @@ -0,0 +1,17 @@ + + +
    diff --git a/web/src/lib/components/ui/tooltip/index.ts b/web/src/lib/components/ui/tooltip/index.ts new file mode 100644 index 0000000..1718604 --- /dev/null +++ b/web/src/lib/components/ui/tooltip/index.ts @@ -0,0 +1,19 @@ +import Root from "./tooltip.svelte"; +import Trigger from "./tooltip-trigger.svelte"; +import Content from "./tooltip-content.svelte"; +import Provider from "./tooltip-provider.svelte"; +import Portal from "./tooltip-portal.svelte"; + +export { + Root, + Trigger, + Content, + Provider, + Portal, + // + Root as Tooltip, + Content as TooltipContent, + Trigger as TooltipTrigger, + Provider as TooltipProvider, + Portal as TooltipPortal, +}; diff --git a/web/src/lib/components/ui/tooltip/tooltip-content.svelte b/web/src/lib/components/ui/tooltip/tooltip-content.svelte new file mode 100644 index 0000000..2662522 --- /dev/null +++ b/web/src/lib/components/ui/tooltip/tooltip-content.svelte @@ -0,0 +1,52 @@ + + + + + {@render children?.()} + + {#snippet child({ props })} +
    + {/snippet} +
    +
    +
    diff --git a/web/src/lib/components/ui/tooltip/tooltip-portal.svelte b/web/src/lib/components/ui/tooltip/tooltip-portal.svelte new file mode 100644 index 0000000..d234f7d --- /dev/null +++ b/web/src/lib/components/ui/tooltip/tooltip-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/tooltip/tooltip-provider.svelte b/web/src/lib/components/ui/tooltip/tooltip-provider.svelte new file mode 100644 index 0000000..8150bef --- /dev/null +++ b/web/src/lib/components/ui/tooltip/tooltip-provider.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/tooltip/tooltip-trigger.svelte b/web/src/lib/components/ui/tooltip/tooltip-trigger.svelte new file mode 100644 index 0000000..1acdaa4 --- /dev/null +++ b/web/src/lib/components/ui/tooltip/tooltip-trigger.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/components/ui/tooltip/tooltip.svelte b/web/src/lib/components/ui/tooltip/tooltip.svelte new file mode 100644 index 0000000..0b0f9ce --- /dev/null +++ b/web/src/lib/components/ui/tooltip/tooltip.svelte @@ -0,0 +1,7 @@ + + + diff --git a/web/src/lib/hooks/is-mobile.svelte.ts b/web/src/lib/hooks/is-mobile.svelte.ts new file mode 100644 index 0000000..4829c00 --- /dev/null +++ b/web/src/lib/hooks/is-mobile.svelte.ts @@ -0,0 +1,9 @@ +import { MediaQuery } from "svelte/reactivity"; + +const DEFAULT_MOBILE_BREAKPOINT = 768; + +export class IsMobile extends MediaQuery { + constructor(breakpoint: number = DEFAULT_MOBILE_BREAKPOINT) { + super(`max-width: ${breakpoint - 1}px`); + } +} diff --git a/web/src/lib/index.ts b/web/src/lib/index.ts new file mode 100644 index 0000000..856f2b6 --- /dev/null +++ b/web/src/lib/index.ts @@ -0,0 +1 @@ +// place files you want to import through the `$lib` alias in this folder. diff --git a/web/src/lib/utils.ts b/web/src/lib/utils.ts new file mode 100644 index 0000000..55b3a91 --- /dev/null +++ b/web/src/lib/utils.ts @@ -0,0 +1,13 @@ +import { clsx, type ClassValue } from "clsx"; +import { twMerge } from "tailwind-merge"; + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)); +} + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type WithoutChild = T extends { child?: any } ? Omit : T; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type WithoutChildren = T extends { children?: any } ? Omit : T; +export type WithoutChildrenOrChild = WithoutChildren>; +export type WithElementRef = T & { ref?: U | null }; diff --git a/web/src/routes/+layout.svelte b/web/src/routes/+layout.svelte new file mode 100644 index 0000000..d9aea73 --- /dev/null +++ b/web/src/routes/+layout.svelte @@ -0,0 +1,116 @@ + + + + +
    + + + + + + + + {#if sidebarOpen} + + {/if} + + +
    + {@render children()} +
    +
    diff --git a/web/src/routes/+layout.ts b/web/src/routes/+layout.ts new file mode 100644 index 0000000..05d87e2 --- /dev/null +++ b/web/src/routes/+layout.ts @@ -0,0 +1 @@ +export const prerender = true \ No newline at end of file diff --git a/web/src/routes/+page.svelte b/web/src/routes/+page.svelte new file mode 100644 index 0000000..1ae758f --- /dev/null +++ b/web/src/routes/+page.svelte @@ -0,0 +1,443 @@ + + +MoniGo Dashboard + +
    +
    +
    +
    System Monitor
    +
    Dashboard
    +
    + +
    + +
    + + {#if error} +
    +
    Error
    +
    {error}
    +
    + Ensure the MoniGo backend is running and the dashboard is served from it. +
    +
    + {/if} + + {#if loading} + +
    + {#each ['Service', 'Go Version', 'Process ID', 'Health'] as label} +
    +
    {label}
    +
    +
    + {/each} +
    + +
    + {#each ['Goroutines', 'Load', 'Cores', 'Memory', 'CPU Usage', 'Uptime'] as label} +
    +
    {label}
    +
    +
    + {/each} +
    + +
    + {#each Array(4) as _} +
    +
    +
    + {/each} +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + {:else if metrics} + +
    + {#if serviceInfo} +
    +
    Service
    +
    {serviceInfo.service_name}
    +
    +
    +
    Go Version
    +
    {serviceInfo.go_version}
    +
    +
    +
    Process ID
    +
    {serviceInfo.process_id}
    +
    + {/if} +
    +
    Health
    +
    + {metrics.health?.service_health?.percent ?? 0}% +
    +
    + {metrics.health?.service_health?.message ?? '-'} +
    +
    +
    + + +
    +
    +
    Goroutines
    +
    {metrics.core_statistics?.goroutines ?? '-'}
    +
    +
    +
    Load
    +
    {metrics.load_statistics?.overall_load_of_service ?? '-'}
    +
    +
    +
    Cores
    +
    + {metrics.cpu_statistics?.cores_used_by_service ?? '-'} / {metrics.cpu_statistics?.total_cores ?? '-'} +
    +
    +
    +
    Memory
    +
    {metrics.memory_statistics?.memory_used_by_service ?? '-'}
    +
    +
    +
    CPU Usage
    +
    {metrics.cpu_statistics?.cores_used_by_service_in_percent ?? '-'}
    +
    +
    +
    Uptime
    +
    {metrics.core_statistics?.uptime ?? '-'}
    +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    +
    History Statistics
    +
    + + +
    +
    + {#if historyLoading} +
    + {:else if historyError} +
    {historyError}
    + {:else if historyData.length > 0} +
    + {:else} +
    No history data available for this time range.
    + {/if} +
    + {/if} +
    diff --git a/web/src/routes/function-metrics/+page.svelte b/web/src/routes/function-metrics/+page.svelte new file mode 100644 index 0000000..4934af5 --- /dev/null +++ b/web/src/routes/function-metrics/+page.svelte @@ -0,0 +1,95 @@ + + +Function Metrics - MoniGo + +
    +
    +
    +
    Performance
    +
    Function Metrics
    +
    + +
    + +
    + + {#if error} +
    +
    Error
    +
    {error}
    +
    + {:else if loading} +
    +
    +
    + {:else if Object.keys(functions).length === 0} +
    +
    + No function metrics available. Instrument functions with monigo.TraceFunction() to see metrics. +
    +
    + {:else} +
    + Total Functions + {Object.keys(functions).length} +
    + +
    + {#each Object.entries(functions) as [name, data]} +
    +
    {name}
    +
    Last ran: {data.function_last_ran_at}
    + +
    + {/each} +
    + + {#if selectedFunc} +
    +
    +
    +
    Details
    +
    {selectedFunc}
    +
    + +
    + {#if detailsLoading} +
    + {:else if funcDetails} +
    {funcDetails}
    + {/if} +
    + {/if} + {/if} +
    diff --git a/web/src/routes/go-routines-stats/+page.svelte b/web/src/routes/go-routines-stats/+page.svelte new file mode 100644 index 0000000..6dcd9ce --- /dev/null +++ b/web/src/routes/go-routines-stats/+page.svelte @@ -0,0 +1,156 @@ + + +Go Routines Stats - MoniGo + +
    +
    +
    +
    Concurrency
    +
    Goroutines
    +
    + +
    + +
    + + {#if error} +
    +
    Error
    +
    {error}
    +
    + {:else if loading} +
    +
    +
    + {:else if stats} +
    +
    Active Goroutines
    +
    {stats.number_of_goroutines}
    +
    + +
    + {#if historyData.length > 0} +
    + {:else} +
    No history data available.
    + {/if} +
    + + {#if stats.stack_view?.length} +
    +
    Stack Traces
    +
    + {#each stats.stack_view as trace, i} +
    + Goroutine {i + 1} +
    {trace}
    +
    + {/each} +
    +
    + {/if} + {/if} +
    diff --git a/web/src/routes/layout.css b/web/src/routes/layout.css new file mode 100644 index 0000000..1922ac6 --- /dev/null +++ b/web/src/routes/layout.css @@ -0,0 +1,341 @@ +@import "tailwindcss"; + +@theme { + --color-hud-bg: var(--_hud-bg); + --color-hud-bg-panel: var(--_hud-bg-panel); + --color-hud-bg-hover: var(--_hud-bg-hover); + + --color-hud-primary: var(--_hud-primary); + --color-hud-dim: var(--_hud-dim); + --color-hud-line: var(--_hud-line); + --color-hud-border: var(--_hud-border); + + --color-hud-text: var(--_hud-text); + --color-hud-text-dim: var(--_hud-text-dim); + --color-hud-text-bright: var(--_hud-text-bright); + + --color-hud-success: var(--_hud-success); + --color-hud-warning: var(--_hud-warning); + --color-hud-error: var(--_hud-error); + --color-hud-purple: var(--_hud-purple); + --color-hud-cyan: var(--_hud-cyan); + --color-hud-blue: var(--_hud-blue); + + --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace; +} + +/* ── Dark mode tokens (default) ── */ +:root { + --_hud-bg: #0a0c0e; + --_hud-bg-panel: #0d1012; + --_hud-bg-hover: #131719; + --_hud-primary: #7a9ba8; + --_hud-dim: #3a4a52; + --_hud-line: rgba(122, 155, 168, 0.15); + --_hud-border: rgba(122, 155, 168, 0.2); + --_hud-text: #7a9ba8; + --_hud-text-dim: #4a5a62; + --_hud-text-bright: #c8dce4; + --_hud-success: #4a9868; + --_hud-warning: #b89848; + --_hud-error: #b84848; + --_hud-purple: #8a6ab8; + --_hud-cyan: #5a9ab8; + --_hud-blue: #5a7ab8; +} + +/* ── Light mode tokens ── */ +html.light { + --_hud-bg: #f5f6f8; + --_hud-bg-panel: #ffffff; + --_hud-bg-hover: #eef0f3; + --_hud-primary: #4a7a8a; + --_hud-dim: #c0c8cc; + --_hud-line: rgba(0, 0, 0, 0.08); + --_hud-border: rgba(0, 0, 0, 0.12); + --_hud-text: #5a6a72; + --_hud-text-dim: #8a9aa2; + --_hud-text-bright: #1a2a32; + --_hud-success: #2d7a4a; + --_hud-warning: #9a7a28; + --_hud-error: #c03030; + --_hud-purple: #6a4aa0; + --_hud-cyan: #2a7aa8; + --_hud-blue: #3a5a98; +} + +@layer base { + * { + box-sizing: border-box; + } + + html { + font-family: var(--font-mono); + font-size: 10px; + letter-spacing: 0.05em; + background-color: var(--_hud-bg); + color: var(--_hud-text); + transition: background-color 0.3s, color 0.3s; + } + + body { + margin: 0; + min-height: 100vh; + -webkit-font-smoothing: antialiased; + } + + ::-webkit-scrollbar { + width: 4px; + height: 4px; + } + + ::-webkit-scrollbar-track { + background: var(--_hud-bg); + } + + ::-webkit-scrollbar-thumb { + background: var(--_hud-dim); + border-radius: 2px; + } +} + +@layer components { + /* ── Panels ── */ + .hud-panel { + background: var(--_hud-bg-panel); + border: 0.5px solid var(--_hud-line); + border-radius: 8px; + transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; + } + + .hud-panel:hover { + border-color: var(--_hud-border); + box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); + } + + :global(html.light) .hud-panel:hover { + box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); + } + + .hud-error-panel { + background: var(--_hud-bg-panel); + border: 0.5px solid var(--_hud-error); + border-radius: 8px; + transition: background-color 0.2s; + } + + :global(html.light) .hud-error-panel { + background: #fef5f5; + } + + /* ── Typography ── */ + .hud-label { + font-size: 8px; + text-transform: uppercase; + letter-spacing: 0.15em; + color: var(--_hud-text-dim); + } + + .hud-value-xl { + font-size: 36px; + font-weight: 300; + letter-spacing: -0.02em; + line-height: 1; + color: var(--_hud-text-bright); + } + + .hud-value-lg { + font-size: 24px; + font-weight: 300; + letter-spacing: -0.01em; + line-height: 1; + color: var(--_hud-text-bright); + } + + .hud-value-md { + font-size: 14px; + font-weight: 400; + line-height: 1; + color: var(--_hud-text); + } + + .hud-value-sm { + font-size: 11px; + font-weight: 400; + line-height: 1; + color: var(--_hud-text); + } + + /* ── Controls ── */ + .hud-button { + background: transparent; + border: 0.5px solid var(--_hud-primary); + color: var(--_hud-primary); + font-family: var(--font-mono); + font-size: 10px; + text-transform: uppercase; + letter-spacing: 0.1em; + padding: 8px 16px; + cursor: pointer; + border-radius: 6px; + transition: all 0.2s; + } + + .hud-button:hover { + background: var(--_hud-primary); + color: var(--_hud-bg); + } + + :global(html.light) .hud-button:hover { + color: #ffffff; + } + + .hud-button:disabled { + opacity: 0.5; + cursor: not-allowed; + } + + .hud-select { + background: var(--_hud-bg); + border: 0.5px solid var(--_hud-line); + color: var(--_hud-text); + font-family: var(--font-mono); + font-size: 10px; + text-transform: uppercase; + letter-spacing: 0.1em; + padding: 6px 10px; + outline: none; + cursor: pointer; + border-radius: 6px; + transition: border-color 0.2s, background-color 0.2s; + -webkit-appearance: none; + appearance: none; + } + + .hud-select:hover { + border-color: var(--_hud-border); + } + + .hud-select:focus { + border-color: var(--_hud-primary); + } + + .hud-select option { + background: var(--_hud-bg-panel); + color: var(--_hud-text); + } + + /* ── Dividers ── */ + .hud-divider { + border: none; + border-top: 0.5px solid var(--_hud-line); + } + + /* ── Skeletons ── */ + .hud-skeleton { + border-radius: 6px; + background: linear-gradient(90deg, var(--_hud-bg-panel) 25%, var(--_hud-bg-hover) 50%, var(--_hud-bg-panel) 75%); + background-size: 200% 100%; + animation: hud-shimmer 1.5s infinite; + } + + @keyframes hud-shimmer { + 0% { background-position: 200% 0; } + 100% { background-position: -200% 0; } + } + + /* ── Navigation ── */ + .hud-nav-item { + display: flex; + align-items: center; + gap: 10px; + padding: 8px 16px; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 0.15em; + color: var(--_hud-text-dim); + text-decoration: none; + transition: all 0.2s; + border-left: 2px solid transparent; + } + + .hud-nav-item:hover { + color: var(--_hud-text-bright); + background: var(--_hud-bg-hover); + border-left-color: var(--_hud-primary); + } + + .hud-nav-item.active { + color: var(--_hud-text-bright); + border-left-color: var(--_hud-cyan); + } + + /* ── Theme toggle ── */ + .theme-toggle { + background: transparent; + border: 0.5px solid var(--_hud-line); + color: var(--_hud-text-dim); + font-family: var(--font-mono); + font-size: 10px; + padding: 6px; + cursor: pointer; + border-radius: 6px; + transition: all 0.2s; + display: flex; + align-items: center; + justify-content: center; + } + + .theme-toggle:hover { + color: var(--_hud-text-bright); + border-color: var(--_hud-primary); + background: var(--_hud-bg-hover); + } + + /* ── Code blocks ── */ + .hud-code { + background: var(--_hud-bg); + border: 0.5px solid var(--_hud-line); + color: var(--_hud-text); + border-radius: 6px; + font-size: 11px; + line-height: 1.6; + overflow: auto; + padding: 12px; + } + + /* ── Details/accordion ── */ + .hud-details { + border: 0.5px solid var(--_hud-line); + border-radius: 8px; + overflow: hidden; + transition: border-color 0.2s; + } + + .hud-details:hover { + border-color: var(--_hud-border); + } + + .hud-details summary { + cursor: pointer; + padding: 8px 12px; + font-size: 11px; + color: var(--_hud-text-bright); + transition: background-color 0.2s; + } + + .hud-details summary:hover { + background: var(--_hud-bg-hover); + } + + .hud-details pre { + padding: 8px 12px; + font-size: 10px; + line-height: 1.6; + overflow: auto; + white-space: pre-wrap; + color: var(--_hud-text-dim); + border-top: 0.5px solid var(--_hud-line); + background: var(--_hud-bg); + } +} diff --git a/web/src/routes/page.svelte.spec.ts b/web/src/routes/page.svelte.spec.ts new file mode 100644 index 0000000..d54f00a --- /dev/null +++ b/web/src/routes/page.svelte.spec.ts @@ -0,0 +1,13 @@ +import { page } from 'vitest/browser'; +import { describe, expect, it } from 'vitest'; +import { render } from 'vitest-browser-svelte'; +import Page from './+page.svelte'; + +describe('/+page.svelte', () => { + it('should render h1', async () => { + render(Page); + + const heading = page.getByRole('heading', { level: 1 }); + await expect.element(heading).toBeInTheDocument(); + }); +}); diff --git a/web/src/routes/reports/+page.svelte b/web/src/routes/reports/+page.svelte new file mode 100644 index 0000000..d6dd90a --- /dev/null +++ b/web/src/routes/reports/+page.svelte @@ -0,0 +1,155 @@ + + +Reports - MoniGo + +
    +
    +
    +
    Analytics
    +
    Reports
    +
    +
    + + +
    +
    + +
    + + {#if error} +
    +
    Error
    +
    {error}
    +
    + {:else} +
    +
    Load Metrics Over Time
    + {#if loading} +
    + {:else if reports.length > 0} +
    + {:else} +
    No report data available for this time range.
    + {/if} +
    + {/if} +
    diff --git a/web/static/robots.txt b/web/static/robots.txt new file mode 100644 index 0000000..b6dd667 --- /dev/null +++ b/web/static/robots.txt @@ -0,0 +1,3 @@ +# allow crawling everything by default +User-agent: * +Disallow: diff --git a/web/svelte.config.js b/web/svelte.config.js new file mode 100644 index 0000000..9d0a759 --- /dev/null +++ b/web/svelte.config.js @@ -0,0 +1,21 @@ +import adapter from '@sveltejs/adapter-static'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { + // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. + // If your environment is not supported, or you settled on a specific environment, switch out the adapter. + // See https://svelte.dev/docs/kit/adapters for more information about adapters. + adapter: adapter({ + // default options are shown. On some platforms + // these options are set automatically — see below + pages: 'build', + assets: 'build', + fallback: undefined, + precompress: false, + strict: true + }) + } +}; + +export default config; diff --git a/web/tsconfig.json b/web/tsconfig.json new file mode 100644 index 0000000..2c2ed3c --- /dev/null +++ b/web/tsconfig.json @@ -0,0 +1,20 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "rewriteRelativeImportExtensions": true, + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler" + } + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files + // + // To make changes to top-level options such as include and exclude, we recommend extending + // the generated config; see https://svelte.dev/docs/kit/configuration#typescript +} diff --git a/web/vite.config.ts b/web/vite.config.ts new file mode 100644 index 0000000..f22be4a --- /dev/null +++ b/web/vite.config.ts @@ -0,0 +1,36 @@ +import tailwindcss from '@tailwindcss/vite'; +import { defineConfig } from 'vitest/config'; +import { playwright } from '@vitest/browser-playwright'; +import { sveltekit } from '@sveltejs/kit/vite'; + +export default defineConfig({ + plugins: [tailwindcss(), sveltekit()], + test: { + expect: { requireAssertions: true }, + projects: [ + { + extends: './vite.config.ts', + test: { + name: 'client', + browser: { + enabled: true, + provider: playwright(), + instances: [{ browser: 'chromium', headless: true }] + }, + include: ['src/**/*.svelte.{test,spec}.{js,ts}'], + exclude: ['src/lib/server/**'] + } + }, + + { + extends: './vite.config.ts', + test: { + name: 'server', + environment: 'node', + include: ['src/**/*.{test,spec}.{js,ts}'], + exclude: ['src/**/*.svelte.{test,spec}.{js,ts}'] + } + } + ] + } +});